:root {
  --green-900: #183f35;
  --green-800: #245345;
  --green-700: #315f4f;
  --green-100: #e8f1eb;
  --berry-700: #8f1732;
  --berry-600: #a51d3c;
  --gold-600: #b18422;
  --gold-500: #c79a34;
  --ink: #242624;
  --muted: #5e625e;
  --line: #e3e5df;
  --paper: #ffffff;
  --soft: #f4f8f4;
  --warm: #faf7f0;
  --shadow: 0 18px 45px rgba(24, 63, 53, 0.12);
  --radius: 8px;
  --header-height: 78px;
  --font-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-subheading: Helvetica, "Helvetica Neue", Arial, sans-serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
.home-hero h1,
.page-hero h1,
.section-header h2,
.cta-band h2,
.profile-hero h1,
.content-panel h2,
.profile-block h2 {
  font-family: var(--font-heading);
}

h3,
h4,
h5,
h6,
.kicker,
.eyebrow,
.site-nav,
.btn,
.pill,
.site-footer h2 {
  font-family: var(--font-subheading);
}

:focus-visible {
  outline: 3px solid rgba(165, 29, 60, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--berry-700);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(227, 229, 223, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
}

.site-nav > a,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: var(--radius);
  color: var(--green-900);
  padding: 8px 10px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav > a:hover,
.nav-dropdown > summary:hover,
.site-nav > a[aria-current="page"] {
  background: var(--green-100);
  color: var(--green-800);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 290px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow);
}

.dropdown-panel a {
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--soft);
  color: var(--berry-700);
}

.nav-dropdown:not([open]) .dropdown-panel {
  display: none;
}

.header-cta {
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--berry-700);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--green-800);
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--berry-700);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-secondary {
  background: var(--green-800);
  color: #fff;
}

.btn-outline {
  border-color: rgba(49, 95, 79, 0.35);
  color: var(--green-800);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--berry-700);
  color: var(--berry-700);
}

.btn-light {
  background: #fff;
  color: var(--green-900);
}

.btn-dark {
  background: var(--green-900);
  color: #fff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--green-900);
}

.home-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(24, 63, 53, 0.88), rgba(24, 63, 53, 0.52) 48%, rgba(143, 23, 50, 0.22)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero {
  min-height: calc(78vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: none;
  background-color: var(--green-900);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(10px);
  opacity: 0.78;
  transform: scale(1.04);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 63, 53, 0.9), rgba(24, 63, 53, 0.68) 52%, rgba(143, 23, 50, 0.32)),
    linear-gradient(0deg, rgba(24, 63, 53, 0.32), rgba(24, 63, 53, 0.06));
}

.home-hero .hero-shade {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.hero-content {
  width: min(760px, 100%);
  padding: clamp(24px, 4vw, 40px) 0;
}

.hero-logo {
  width: clamp(88px, 10vw, 112px);
  height: clamp(88px, 10vw, 112px);
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.kicker,
.eyebrow {
  margin: 0 0 9px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.home-hero p,
.page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: end;
}

.page-hero-compact {
  min-height: 290px;
}

.page-hero-content {
  padding: 72px 0 58px;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-header h2,
.cta-band h2,
.profile-hero h1,
.content-panel h2,
.profile-block h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-header p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.lead-text {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat-strip div {
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
}

.stat-strip strong {
  display: block;
  color: var(--berry-700);
  font-size: 1.55rem;
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.intro-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.team-card,
.reason-item,
.value-card,
.review-card,
.contact-card,
.profile-block,
.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 63, 53, 0.07);
}

.service-card,
.team-card {
  overflow: hidden;
}

.card-image,
.team-image {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.card-image {
  aspect-ratio: 4 / 3;
}

.card-image img,
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card:hover img,
.team-card:hover img,
.gallery-item:hover img {
  transform: scale(1.025);
}

.card-body,
.team-copy {
  padding: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.service-card h3,
.team-card h3,
.reason-item h3,
.value-card h3,
.contact-card h2 {
  margin: 12px 0 8px;
  color: var(--green-900);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card p,
.team-card p,
.contact-card p,
.content-panel p {
  color: var(--muted);
}

.reason-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-item,
.value-card {
  min-height: 138px;
  padding: 20px;
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--berry-700);
  color: #fff;
  font-weight: 900;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.team-image {
  aspect-ratio: 1 / 1;
}

.gallery-preview-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--green-900);
  color: #fff;
  padding: 0;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(24, 63, 53, 0.82), rgba(24, 63, 53, 0));
}

.gallery-item span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
}

.gallery-item strong,
.gallery-item small {
  display: block;
}

.gallery-item small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.category-tabs button {
  min-height: 42px;
  border: 1px solid rgba(49, 95, 79, 0.25);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.category-tabs button[aria-pressed="true"] {
  background: var(--green-800);
  color: #fff;
}

.review-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 460px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  width: 100%;
  min-height: 168px;
  overflow: hidden;
  padding: 12px;
  cursor: pointer;
  scroll-snap-align: start;
}

.review-card img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: contain;
}

.cta-band {
  padding: clamp(54px, 8vw, 82px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 63, 53, 0.96), rgba(49, 95, 79, 0.92)),
    url("gallery/ofis-03.webp") center / cover;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 680px;
  margin: 10px 0 0;
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-panel {
  padding: 26px;
}

.content-panel h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.value-card {
  min-height: 96px;
}

.certificate-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.certificate-button {
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.certificate-button img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.service-main-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-main-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  line-height: 1.15;
}

.detail-meta {
  display: grid;
  gap: 10px;
}

.detail-meta div {
  display: grid;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.detail-meta div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-meta strong {
  color: var(--green-900);
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
}

.faq-list summary {
  color: var(--green-900);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.todo-note {
  border-left: 4px solid var(--gold-600);
  border-radius: var(--radius);
  background: #fff8e6;
  color: #5b4420;
  padding: 13px 14px;
}

.profile-hero {
  padding: clamp(54px, 8vw, 92px) 0;
  background: var(--soft);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.profile-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.profile-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 24px;
  align-items: start;
}

.profile-copy {
  display: grid;
  gap: 18px;
}

.profile-copy p {
  color: var(--muted);
}

.profile-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.profile-block {
  padding: 22px;
}

.profile-block h2 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
}

.contact-card address {
  display: grid;
  gap: 8px;
  margin: 0;
  font-style: normal;
}

.contact-card a {
  color: var(--green-800);
  font-weight: 800;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.hours-list span {
  border-radius: var(--radius);
  background: var(--soft);
  padding: 8px 10px;
  color: var(--green-900);
  font-weight: 700;
}

.map-frame {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(0, 0.8fr));
  gap: 32px;
  padding: 56px 0 34px;
}

.footer-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 10px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.footer-links,
.site-footer address,
.footer-hours {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-links a,
.site-footer address a,
.footer-bottom a,
.social-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.site-footer address a:hover,
.footer-bottom a:hover,
.social-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  font-weight: 800;
}

.icon-link,
.icon-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.icon-link span:not(.footer-icon),
.icon-line span:not(.footer-icon) {
  min-width: 0;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold-500);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-icon svg path,
.footer-icon svg rect,
.footer-icon svg circle {
  vector-effect: non-scaling-stroke;
}

.social-links .icon-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 8px 10px;
}

.social-links .footer-icon {
  margin-top: 0;
}

.footer-hours span {
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0 26px;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  border-radius: var(--radius);
  background: #1f8f5f;
  color: #fff;
  padding: 13px 16px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(31, 143, 95, 0.32);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--berry-700);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(10, 18, 15, 0.88);
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(1060px, 88vw);
  max-height: 86vh;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox img {
  width: 100%;
  max-height: calc(86vh - 70px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 1100px) {
  .site-nav > a,
  .nav-dropdown > summary {
    font-size: 0.88rem;
    padding-inline: 8px;
  }

  .service-grid,
  .reason-grid,
  .values-grid,
  .gallery-preview-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--green-900);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-dropdown > summary {
    justify-content: space-between;
    width: 100%;
    font-size: 1rem;
    padding: 10px 12px;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    min-height: calc(74vh - var(--header-height));
  }

  .intro-grid,
  .content-grid,
  .certificate-layout,
  .service-detail-grid,
  .profile-hero-grid,
  .profile-layout,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-content {
    padding: 44px 0 60px;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .stat-strip,
  .service-grid,
  .reason-grid,
  .values-grid,
  .team-grid,
  .gallery-preview-grid,
  .gallery-grid,
  .review-grid,
  .footer-grid,
  .hours-list {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 235px;
  }

  .review-strip {
    grid-auto-columns: minmax(280px, 88vw);
  }

  .review-card {
    min-height: 138px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 11px 13px;
    font-size: 0.94rem;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox figure {
    width: 94vw;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 46px;
    height: 48px;
    font-size: 2.5rem;
  }
}
