:root {
  --bg: #f7f2e6;
  --white: #ffffff;
  --ink: #2b2f26;
  --ink-soft: #6b7062;
  --olive: #7c8a63;
  --olive-deep: #545d4e;
  --sage: #c9d2ac;
  --sage-soft: #e7ebd9;
  --sand: #cbb99c;
  --sand-deep: #4a423a;
  --ochre: #b9793e;
  --shadow: 0 30px 60px -30px rgba(43, 47, 38, 0.28);
  --radius-lg: 40px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

em {
  font-style: italic;
  color: var(--olive-deep);
}

.eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

.btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--olive-deep);
  color: var(--bg);
  box-shadow: 0 14px 28px -14px rgba(84, 93, 78, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--olive-deep);
  border: 1.4px solid var(--olive-deep);
}

.btn-outline:hover {
  background: var(--olive-deep);
  color: var(--bg);
}

.btn-ochre {
  background: var(--ochre);
  color: var(--bg);
  box-shadow: 0 14px 28px -14px rgba(185, 121, 62, 0.6);
}

.btn-ochre:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* URGENCY STRIP */
.urgency-strip {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 20px;
}

.urgency-strip strong {
  color: var(--sage);
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  padding: 20px 0;
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 18px -10px rgba(43, 47, 38, 0.2);
  padding: 13px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.logo img {
  display: block;
  width: auto;
  height: 60px;
  /*No image deformation*/
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  text-align: center;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-soft);
  color: var(--olive-deep);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* HERO */
.hero {
  padding: 44px 0 0;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero .eyebrow {
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  margin-bottom: 26px;
}

.hero p.lede {
  color: var(--ink-soft);
  max-width: 80%;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex-direction: column;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
}

.hero-visual .frame {
  border-radius: 220px 40px 40px 40px;
  overflow: hidden;
  aspect-ratio: 3/3.6;
  box-shadow: var(--shadow);
}

.hero-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 22%;
}

.hero-tag {
  position: absolute;
  left: -26px;
  bottom: 36px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.hero-tag .num {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--ochre);
}

.hero-tag span.label {
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* TRUST BAR */
.trust-bar {
  padding: 56px 0 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(43, 47, 38, 0.14);
  border-bottom: 1px solid rgba(43, 47, 38, 0.14);
  padding: 34px 0;
}

.trust-cell {
  text-align: center;
}

.trust-cell .val {
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  color: var(--olive-deep);
}

.trust-cell .lab {
  font-size: 0.76rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.curve-cap {
  height: 60px;
  margin-top: -1px;
  background: var(--bg);
}

/* INTRO */
.intro {
  padding: 80px 0 10px;
  text-align: center;
}

.intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 760px;
  margin: 0 auto 20px;
}

.intro p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

/* BOOKING (moved up, primary conversion point) */
.booking {
  padding: 70px 0 100px;
}

.booking-shell {
  background: var(--olive-deep);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  color: var(--bg);
}

.booking .eyebrow {
  color: var(--sage);
}

.booking .section-head h2 {
  color: var(--bg);
}

.booking .section-head p {
  color: rgba(247, 242, 230, 0.78);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.trust {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(247, 242, 230, 0.88);
}

.trust-item .ic {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.stars {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 26px;
  font-size: 0.85rem;
  color: rgba(247, 242, 230, 0.85);
}

.stars .icons {
  color: var(--ochre);
  letter-spacing: 2px;
}

.card-shell {
  background: var(--bg);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 5px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.4px solid rgba(43, 47, 38, 0.16);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--ochre);
}

.pill-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.4px solid rgba(43, 47, 38, 0.16);
  font-size: 0.82rem;
  cursor: pointer;
  background: var(--white);
  transition: 0.2s ease;
}

.pill input {
  display: none;
}

.pill:has(input:checked) {
  background: var(--olive-deep);
  color: var(--bg);
  border-color: var(--olive-deep);
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  flex-wrap: wrap;
}

.form-foot small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 17px;
}

.pass {
  display: none;
}

.pass.show {
  display: block;
}

.pass-card {
  background: var(--bg);
  border-radius: 26px;
  box-shadow: var(--shadow);
  color: var(--ink);
  overflow: hidden;
}

.pass-top {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
}

.pass-top .tag {
  font-family: "Jost", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  background: var(--ochre);
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pass-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 10px;
}

.pass-route .code {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.pass-route .sub {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.pass-route .plane {
  color: var(--ochre);
}

.pass-route .to {
  text-align: right;
}

.perf {
  position: relative;
  border-top: 2px dashed rgba(43, 47, 38, 0.18);
  margin: 18px 0 0;
}

.perf::before,
.perf::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--olive-deep);
}

.perf::before {
  left: -12px;
}

.perf::after {
  right: -12px;
}

.pass-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 26px 30px;
}

.pass-details .d-label {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pass-details .d-value {
  font-family: "Fraunces", serif;
  font-size: 1.04rem;
  margin-top: 4px;
}

.pass-status {
  margin: 0 30px 26px;
  padding: 16px 18px;
  background: var(--sage-soft);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
}

.pass-status .ic {
  color: var(--olive-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.pass-again {
  margin: 0 30px 30px;
}

/* ALTERNATING BLOCKS */
.alt-block {
  padding: 20px 0 90px;
}

.alt-block a.btn {
  width: fit-content;
}

.alt-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.alt-grid.flip {
  grid-template-columns: 1.15fr 0.85fr;
}

.alt-photo {
  min-height: 380px;
}

.alt-photo svg,
.alt-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.alt-panel {
  background: var(--olive);
  color: var(--bg);
  padding: 56px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-panel.light {
  background: var(--white);
  color: var(--ink);
}

.alt-panel .eyebrow {
  color: rgba(247, 242, 230, 0.75);
}

.alt-panel.light .eyebrow {
  color: var(--ink-soft);
}

.alt-panel h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--bg);
  margin: 14px 0 22px;
}

.alt-panel.light h3 {
  color: var(--ink);
}

.arrow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arrow-list li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(247, 242, 230, 0.92);
}

.alt-panel.light .arrow-list li {
  color: var(--ink-soft);
}

.arrow-list li .arrow {
  flex-shrink: 0;
  color: var(--sage);
}

.alt-panel.light .arrow-list li .arrow {
  color: var(--ochre);
}

.alt-panel p.body-copy {
  font-size: 0.98rem;
  color: rgba(247, 242, 230, 0.88);
  margin-bottom: 26px;
}

.alt-panel.light p.body-copy {
  color: var(--ink-soft);
}

/* HOW WE CAN HELP - carousel */
.help {
  background: var(--sand-deep);
  color: var(--bg);
  padding: 100px 0;
}

.help .eyebrow {
  color: var(--sage);
}

.help-head {
  text-align: center;
  margin-bottom: 56px;
}

.help-head h2 {
  color: var(--bg);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-top: 14px;
}

.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.care-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.care-card.image-bg {
  position: relative;
  overflow: hidden;
  color: var(--bg);
  background:
    linear-gradient(rgba(43, 47, 38, 0.52), rgba(43, 47, 38, 0.52)),
    url("assets/hero04.jpeg") center/cover no-repeat;
}

.care-card.image-bg .num,
.care-card.image-bg h4,
.care-card.image-bg p,
.care-card.image-bg a {
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.care-card.image-bg a {
  border-bottom-color: rgba(247, 242, 230, 0.82);
}

.care-card.image-bg-gray {
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

.care-card.image-bg-gray::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero05.jpg") center/cover no-repeat;
  filter: grayscale(100%);
  transform: scale(1.03);
}

.care-card.image-bg-gray::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 47, 38, 0.52),
      rgba(43, 47, 38, 0.52));
}

.care-card.image-bg-gray>* {
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.care-card.image-bg-gray .num {
  color: var(--bg);
}

.care-card.image-bg-gray a {
  border-bottom-color: rgba(247, 242, 230, 0.82);
}

.care-card.image-bg-gray-alt {
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

.care-card.image-bg-gray-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero6.jpg") center/cover no-repeat;
  filter: grayscale(100%);
  transform: scale(1.03);
}

.care-card.image-bg-gray-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 47, 38, 0.52),
      rgba(43, 47, 38, 0.52));
}

.care-card.image-bg-gray-alt>* {
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.care-card.image-bg-gray-alt .num {
  color: var(--bg);
}

.care-card.image-bg-gray-alt a {
  border-bottom-color: rgba(247, 242, 230, 0.82);
}

.care-card.image-bg-gray-clean {
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

.care-card.image-bg-gray-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero07.jpeg") center/cover no-repeat;
  filter: grayscale(100%);
  transform: scale(1.03);
}

.care-card.image-bg-gray-clean::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 47, 38, 0.52),
      rgba(43, 47, 38, 0.52));
}

.care-card.image-bg-gray-clean>* {
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.care-card.image-bg-gray-clean .num {
  color: var(--bg);
}

.care-card.image-bg-gray-clean a {
  border-bottom-color: rgba(247, 242, 230, 0.82);
}

.care-card.image-bg-gray-implants {
  position: relative;
  overflow: hidden;
  color: var(--bg);
}

.care-card.image-bg-gray-implants::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero08.jpg") center/cover no-repeat;
  filter: grayscale(100%);
  transform: scale(1.03);
}

.care-card.image-bg-gray-implants::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 47, 38, 0.52),
      rgba(43, 47, 38, 0.52));
}

.care-card.image-bg-gray-implants>* {
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.care-card.image-bg-gray-implants .num {
  color: var(--bg);
}

.care-card.image-bg-gray-implants a {
  border-bottom-color: rgba(247, 242, 230, 0.82);
}

.care-card .num {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--ochre);
  font-size: 1rem;
}

.care-card h4 {
  font-size: 1.15rem;
  font-weight: 500;
}

.care-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex-grow: 1;
}

.care-card a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive-deep);
  border-bottom: 1px solid var(--olive-deep);
  padding-bottom: 2px;
  align-self: flex-start;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 230, 0.35);
  background: transparent;
  color: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.carousel-nav button:hover {
  background: rgba(247, 242, 230, 0.14);
}

/* PROCESS */
.process {
  padding: 100px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 14px;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step h4 {
  font-size: 0.98rem;
  margin: 12px 0 8px;
  font-weight: 500;
}

.step p {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.step .step-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ochre);
}

/* TESTIMONIALS */
.testimonials {
  padding: 20px 0 100px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border: 1px solid rgba(43, 47, 38, 0.1);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-card .icons {
  color: var(--ochre);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testi-card p.quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  flex-grow: 1;
}

.testi-card .who {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ */
.faq {
  padding: 20px 0 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(43, 47, 38, 0.1);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}

.faq-q .plus {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--ochre);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 14px;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 65ch;
}

/* LOCATION */
.location {
  padding: 20px 0 100px;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--sage-soft);
  border-radius: var(--radius-lg);
  padding: 60px;
}

.loc-list {
  list-style: none;
  margin: 24px 0 30px;
}

.loc-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(43, 47, 38, 0.12);
  font-size: 0.94rem;
}

.loc-list li .ic {
  color: var(--ochre);
  flex-shrink: 0;
}

.loc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.map-card {
  background: var(--olive-deep);
  border-radius: 28px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card svg {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--ochre);
}

/* FINAL CTA BANNER */
.final-cta {
  padding: 0 0 100px;
}

.final-cta .inner {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
}

.final-cta h2 {
  color: var(--bg);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(247, 242, 230, 0.78);
  max-width: 52ch;
  margin: 0 auto 30px;
}

.final-cta .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(247, 242, 230, 0.8);
  padding: 70px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(247, 242, 230, 0.14);
}

.foot-logo {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--bg);
  margin-bottom: 14px;
}

.foot-logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.foot-grid h5 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.foot-grid ul {
  list-style: none;
}

.foot-grid li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.foot-grid a {
  text-decoration: none;
}

.foot-grid a:hover {
  color: var(--bg);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(247, 242, 230, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.foot-social {
  display: flex;
  gap: 12px;
}

.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247, 242, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.foot-social a:hover {
  background: var(--ochre);
}

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.4);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.4);
  }

  50% {
    box-shadow:
      0 16px 32px -10px rgba(0, 0, 0, 0.4),
      0 0 0 10px rgba(84, 93, 78, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-shell {
    padding: 44px 30px;
  }

  .alt-grid,
  .alt-grid.flip {
    grid-template-columns: 1fr;
  }

  .alt-photo {
    min-height: 260px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .loc-grid {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .final-cta .inner {
    padding: 44px 30px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 22%;
    top: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 50;
    display: none;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.05rem;
  }


  .nav-cta a {
    font-size: 0.65em;
    padding: .75em 1.5em;
  }

  .menu-toggle {
    display: none;
  }

  .alt-panel {
    padding: 38px 26px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pass-details {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .care-card {
    flex: 0 0 240px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}