:root {
  --ink: #14312c;
  --ink-soft: #48615a;
  --ink-faint: #71857f;
  --teal-950: #071c18;
  --teal-900: #0b3d34;
  --teal-800: #0d5a4a;
  --teal-700: #0f6b57;
  --teal-500: #17a184;
  --teal-200: #bfe8dc;
  --teal-100: #ddf4ec;
  --teal-50: #f0faf6;
  --coral-700: #d94a2a;
  --coral-600: #c7431f;
  --coral-800: #a8391a;
  --coral-500: #ff6b4a;
  --coral-200: #ffd2c6;
  --coral-100: #ffe9e2;
  --sun-400: #ffc145;
  --sun-100: #fff2d4;
  --cream: #fbf7f0;
  --paper: #ffffff;
  --border: #e8e0d2;
  --border-strong: #d8cdb9;
  --shadow-sm: 0 1px 2px rgba(20, 49, 44, 0.06), 0 4px 14px rgba(20, 49, 44, 0.05);
  --shadow-md: 0 2px 6px rgba(20, 49, 44, 0.07), 0 14px 34px rgba(20, 49, 44, 0.1);
  --shadow-lg: 0 6px 18px rgba(20, 49, 44, 0.09), 0 30px 60px rgba(20, 49, 44, 0.14);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 74rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-900);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  color: var(--teal-950);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.15rem);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.9rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--coral-200);
  color: var(--ink);
}

.container {
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

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

.section--teal {
  background: var(--teal-50);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 2px;
  border-radius: 2px;
  background: var(--coral-500);
}

.eyebrow--light {
  color: var(--teal-200);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 40rem;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .lead {
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--teal-900);
  color: #fff;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

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

.btn--primary:hover {
  background: var(--teal-900);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--coral-600);
  color: #fff;
}

.btn--accent:hover {
  background: var(--coral-800);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(168, 57, 26, 0.35);
}

.btn--ghost {
  border-color: var(--border-strong);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--paper);
  color: var(--teal-900);
}

.btn--light:hover {
  background: var(--sun-100);
  color: var(--teal-950);
  transform: translateY(-2px);
}

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

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--teal-700);
  text-decoration: none;
}

.link-arrow svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.18s ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.topbar {
  background: var(--teal-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0.5rem 0;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar__item svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--sun-400);
  flex: none;
}

.topbar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--sun-100);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(20, 49, 44, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: 3.3rem;
  width: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav a:hover {
  background: var(--teal-100);
  color: var(--teal-900);
}

.site-nav a[aria-current="page"] {
  background: var(--teal-700);
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.header-cta .btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 0.85rem;
  background: var(--paper);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: background-color 0.15s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 6rem);
  background:
    radial-gradient(38rem 30rem at 88% -6%, var(--teal-100) 0%, rgba(221, 244, 236, 0) 62%),
    radial-gradient(30rem 26rem at -8% 42%, var(--sun-100) 0%, rgba(255, 242, 212, 0) 60%),
    var(--cream);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -11rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  border: 2px dashed var(--coral-200);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal-700);
}

.squiggle {
  display: block;
  width: min(13rem, 55%);
  height: 0.85rem;
  margin-top: 0.5rem;
  color: var(--coral-500);
}

.hero__lede {
  margin-top: 1.2rem;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero .btn-row {
  margin-top: 1.7rem;
}

.hero__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero__note span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__note svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-700);
  flex: none;
}

.hero__media {
  position: relative;
  justify-self: center;
  width: min(100%, 28rem);
}

.hero__sun {
  position: absolute;
  top: -1.6rem;
  right: -0.4rem;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: var(--sun-400);
  opacity: 0.9;
}

.hero__dots {
  position: absolute;
  left: -1.6rem;
  bottom: 2.5rem;
  width: 6.5rem;
  height: 6.5rem;
  color: var(--teal-200);
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 46% 54% 58% 42% / 46% 42% 58% 54%;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-lg);
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}

.float-card__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  flex: none;
}

.float-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.float-card b {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--teal-950);
}

.float-card small {
  font-size: 0.76rem;
  color: var(--ink-faint);
}

.float-card--one {
  left: -1.1rem;
  top: 14%;
}

.float-card--one .float-card__icon {
  background: var(--teal-100);
  color: var(--teal-700);
}

.float-card--two {
  right: -1.2rem;
  bottom: 9%;
  animation-delay: 1.6s;
}

.float-card--two .float-card__icon {
  background: var(--coral-100);
  color: var(--coral-700);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--paper);
  padding: 1.4rem 1.5rem;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--teal-700);
}

.stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.7rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--sun-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1rem;
  background: var(--teal-100);
  color: var(--teal-700);
}

.service-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.service-card:nth-child(3n + 2) .service-card__icon {
  background: var(--coral-100);
  color: var(--coral-700);
}

.service-card:nth-child(3n) .service-card__icon {
  background: var(--sun-100);
  color: #a2730a;
}

.service-card h3 {
  margin: 0;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.service-card .link-arrow {
  margin-top: auto;
  padding-top: 0.4rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.section--paper .chip {
  background: var(--teal-50);
  border-color: var(--teal-100);
}

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

.chip a:hover {
  color: var(--teal-900);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker {
  overflow: hidden;
  padding: 0.95rem 0;
  background: var(--teal-900);
  color: var(--teal-100);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ticker__group span {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
}

.ticker__group span::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral-500);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.6rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step__num {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--coral-700);
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.photo-frame {
  position: relative;
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--teal-100);
  z-index: 0;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-md);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  margin-top: 0.15rem;
  color: var(--teal-700);
}

.check-list b {
  color: var(--ink);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.visit-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
}

.visit-card h3 {
  color: #fff;
  margin-bottom: 0.3rem;
}

.visit-card p {
  margin: 0;
  font-size: 0.95rem;
}

.visit-card a {
  color: #fff;
  font-weight: 600;
}

.visit-card .btn--light {
  color: var(--teal-900);
}

.visit-card .btn--accent {
  color: #fff;
}

.visit-block {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.visit-block svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: none;
  margin-top: 0.2rem;
  color: var(--sun-400);
}

.visit-block b {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.hours {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.95rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt {
  color: rgba(255, 255, 255, 0.72);
}

.hours dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.map-frame {
  position: relative;
  min-height: 26rem;
  border: 6px solid var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--teal-100);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq {
  display: grid;
  gap: 0;
  max-width: 46rem;
}

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq details:first-child {
  border-top: 1px solid var(--border);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0.2rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--teal-950);
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 0.2rem 1.2rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 42rem;
}

.cta {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  color: #fff;
  overflow: hidden;
  background: var(--teal-950);
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7, 28, 24, 0.95) 25%, rgba(11, 61, 52, 0.72) 100%);
}

.cta__inner {
  position: relative;
  max-width: 46rem;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

.site-footer {
  background: var(--teal-950);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer h3 {
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sun-100);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand__plate {
  display: inline-flex;
  padding: 0.7rem 0.95rem;
  background: var(--paper);
  border-radius: 0.9rem;
}

.footer-brand__logo {
  height: 2.9rem;
  width: auto;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: #157a3e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15, 90, 46, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-float svg {
  width: 1.3rem;
  height: 1.3rem;
}

.wa-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 90, 46, 0.42);
}

.page-hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(32rem 22rem at 92% 0%, var(--teal-100) 0%, rgba(221, 244, 236, 0) 65%),
    var(--cream);
}

.page-hero .lead {
  margin-top: 0.9rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--border-strong);
}

.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--teal-700);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--border);
}

.service-detail:first-of-type {
  border-top: 0;
}

.service-detail__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.service-detail__head .service-card__icon {
  flex: none;
}

.service-detail h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0;
}

.service-detail aside {
  padding: 1.4rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-self: start;
}

.service-detail aside h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.9rem;
}

.schematic {
  margin: 0 0 1.3rem;
  padding: 0.95rem 0.95rem 0.8rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
}

.schematic img {
  width: 100%;
  height: auto;
}

.schematic figcaption {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.body-map {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  margin: 0 0 clamp(2rem, 4vw, 3.2rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-lg);
}

.body-map img {
  width: 100%;
  height: auto;
}

.body-map h3 {
  margin-bottom: 0.4rem;
}

.body-map p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.body-map .chip-list {
  margin-top: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-card {
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-card__icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: var(--sun-100);
  color: #a2730a;
}

.value-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.value-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.9rem;
  background: var(--teal-100);
  color: var(--teal-700);
}

.contact-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.contact-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

.contact-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.contact-card .link-arrow {
  margin-top: auto;
}

.notice {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--sun-100);
  border: 1px solid #f2dfae;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #6b5310;
}

.notice svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  margin-top: 0.15rem;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 68vh;
  text-align: center;
  padding: 4rem 0;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 600;
  line-height: 1;
  color: var(--teal-200);
}

.error-page p {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 62rem) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .visit-grid,
  .split,
  .service-detail,
  .body-map {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 22rem;
  }
}

@media (max-width: 52rem) {
  .topbar__inner {
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    z-index: 120;
    display: grid;
    padding: 5.5rem 1.5rem 2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    background: var(--paper);
    border: 1px solid var(--border);
  }

  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 130;
  }

  .header-cta .btn {
    display: none;
  }

  .brand__logo {
    height: 2.6rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    width: min(100%, 23rem);
    margin-top: 1rem;
  }

  .float-card--one {
    left: -0.4rem;
  }

  .float-card--two {
    right: -0.4rem;
  }

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

  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 36rem) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .float-card,
  .ticker__track {
    animation: none;
  }

  .ticker__track {
    transform: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .service-card,
  .wa-float,
  .link-arrow svg {
    transition: none;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}

.lang-switch button:hover {
  color: var(--teal-900);
}

.lang-switch button[aria-pressed="true"] {
  background: var(--teal-700);
  color: #fff;
}

html[lang="hi"] {
  --font-display: "Tiro Devanagari Hindi", "Fraunces", Georgia, serif;
  --font-body: "Mukta", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html[lang="gu"] {
  --font-display: "Tiro Gujarati", "Fraunces", Georgia, serif;
  --font-body: "Mukta Vaani", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html[lang="hi"] .eyebrow,
html[lang="gu"] .eyebrow,
html[lang="hi"] .site-footer h3,
html[lang="gu"] .site-footer h3,
html[lang="hi"] .service-detail aside h3,
html[lang="gu"] .service-detail aside h3,
html[lang="hi"] .ticker__group,
html[lang="gu"] .ticker__group {
  letter-spacing: 0;
}

.i18n-pending body {
  visibility: hidden;
}

@media (max-width: 52rem) {
  .lang-switch button {
    padding: 0.45rem 0.5rem;
    font-size: 0.75rem;
  }
}
