/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:     #0A3535;
  --teal-mid: #0f4a4a;
  --cream:    #FDFAF6;
  --coral:    #C85A3E;
  --coral-dk: #b04d34;
  --gold:     #C8943A;
  --blush:    #F5EBE8;
  --sage:     #EAF0EA;
  --border:   #E5E0D8;
  --gray:     #666;
  --dark:     #1A2B2B;
  --shadow-sm: 0 2px 8px rgba(10,53,53,0.08);
  --shadow-md: 0 6px 24px rgba(10,53,53,0.12);
  --shadow-lg: 0 12px 40px rgba(10,53,53,0.16);
  --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   SKIP LINK
========================================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--coral);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(10,53,53,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1rem;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--coral); }

.btn-book-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-book-header:hover { background: var(--coral-dk); transform: translateY(-1px); }
.btn-book-teal { background: var(--teal) !important; }
.btn-book-teal:hover { background: var(--teal-mid) !important; }

/* Book dropdown */
.book-dropdown-wrap {
  position: relative;
}
.book-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  z-index: 200;
}
.book-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.book-dropdown-item:last-child { border-bottom: none; }
.book-dropdown-item:hover { background: var(--cream); }
.book-dropdown-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.book-dropdown-sub {
  font-size: 0.78rem;
  color: var(--gray);
}

/* Mobile booking options */
.mobile-book-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}
.mobile-nav a:hover { color: var(--coral); }
.mobile-nav .btn-book-header { align-self: flex-start; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-coral:hover { background: var(--coral-dk); border-color: var(--coral-dk); box-shadow: 0 4px 16px rgba(200,90,62,0.35); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-mid); border-color: var(--teal-mid); box-shadow: 0 4px 16px rgba(10,53,53,0.3); }

.btn-ghost-teal {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-teal:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* =========================================================
   LABELS / TAGS
========================================================= */
.section-label {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.label-coral { color: var(--coral); }
.label-gold  { color: var(--gold); }
.label-teal  { color: var(--teal); }
.label-white { color: rgba(255,255,255,0.75); }

/* =========================================================
   SECTION HEADINGS
========================================================= */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.15;
  color: var(--dark);
}
.section-heading.white  { color: #fff; }
.section-heading.teal   { color: var(--teal); }

/* =========================================================
   HERO
========================================================= */
#hero {
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  width: 100%;
  align-items: stretch;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5vw;
  max-width: 680px;
  margin-left: auto;
}
.hero-location-tag {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-line { display: block; }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-rule {
  border: none;
  border-top: 1px solid rgba(200, 148, 58, 0.45);
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-stat-value {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,53,53,0.35) 0%, transparent 40%);
  pointer-events: none;
}
.hero-mobile-img {
  display: none;
}

/* =========================================================
   HOW IT WORKS
========================================================= */
#how-it-works {
  background: #fff;
  padding: 6rem 0;
}
.section-centered-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-centered-header .section-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  background: #fff;
  border: 1px solid #E8E3DC;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: #F0EBE3;
  font-weight: 700;
  margin-bottom: 0.5rem;
  user-select: none;
}
.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================================================
   SERVICES GRID
========================================================= */
#services {
  background: var(--teal);
  padding: 6rem 0;
}
#services .section-centered-header .section-heading { color: #fff; }
.services-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: #444;
  line-height: 1.45;
}
.service-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.38em;
  flex-shrink: 0;
}
.service-card-link {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 0.6rem; }

.service-card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.25rem;
}
.service-card-actions .btn {
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
}
.btn-ghost-card {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost-card:hover {
  background: var(--teal);
  color: #fff;
}

/* =========================================================
   SPOTLIGHT SHARED
========================================================= */
.spotlight {
  padding: 6rem 0;
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 4rem;
  align-items: center;
}
.spotlight-inner.reverse {
  grid-template-columns: 55fr 45fr;
}
.spotlight-img-wrap {
  position: relative;
}
.spotlight-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(10,53,53,0.18);
  max-height: 480px;
}
.spotlight-content { display: flex; flex-direction: column; gap: 1rem; }
.spotlight-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
}
.spotlight-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}
.spotlight-text.white { color: rgba(255,255,255,0.8); }
.spotlight-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.spotlight-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.spotlight-bullets li.white-text { color: rgba(255,255,255,0.9); }
.spotlight-bullets li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

/* =========================================================
   MENTAL HEALTH SPOTLIGHT
========================================================= */
#mental-health { background: var(--blush); }
#mental-health .spotlight-heading { color: var(--teal); }

/* =========================================================
   ABOUT
========================================================= */
#about {
  background: #fff;
  padding: 6rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}
.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--teal);
  line-height: 1.15;
}
.credential-pill {
  display: inline-block;
  background: rgba(200,148,58,0.12);
  color: var(--gold);
  border: 1px solid rgba(200,148,58,0.35);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.about-para {
  font-size: 0.975rem;
  color: var(--gray);
  line-height: 1.72;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.about-badge {
  background: #fff;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  max-height: 520px;
  box-shadow: var(--shadow-lg);
}
.about-degrees {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 0.25rem 0;
}
.about-degree-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.about-degree-title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal);
}
.about-degree-school {
  font-size: 0.8rem;
  color: var(--gray);
}

.about-photo-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--teal);
  border-radius: 12px;
  opacity: 0.15;
  z-index: -1;
}

/* =========================================================
   MEDSPA SPOTLIGHT
========================================================= */
#medspa {
  background: var(--teal);
}
#medspa .spotlight-heading { color: #fff; }

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  background: rgba(255,255,255,0.95);
  color: var(--teal);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
#testimonials {
  background: var(--sage);
  padding: 6rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--coral);
  margin-bottom: -0.25rem;
  user-select: none;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--dark);
  line-height: 1.65;
  flex: 1;
}
.testimonial-author {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--teal);
}
.testimonial-type {
  font-size: 0.8rem;
  color: var(--coral);
  font-weight: 600;
}

/* =========================================================
   FAQ
========================================================= */
#faq {
  background: #fff;
  padding: 6rem 0;
}
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
}
.faq-question {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer a {
  color: var(--coral);
  font-weight: 600;
}
.faq-answer a:hover { text-decoration: underline; }

/* =========================================================
   BOOKING
========================================================= */
#booking {
  background: var(--blush);
  padding: 6rem 0;
}
.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}
.booking-header .section-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
}
.booking-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.booking-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.booking-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.booking-card-bar {
  display: block;
  height: 4px;
  border-radius: 4px 4px 0 0;
  margin: -2.5rem -2.5rem 0;
  margin-bottom: 1rem;
}
.bar-coral { background: var(--coral); }
.bar-gold  { background: var(--gold); }
.booking-card-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.label-booking-coral { color: var(--coral); }
.label-booking-gold  { color: var(--gold); }
.booking-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1.2;
}
.booking-card-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

/* =========================================================
   CONTACT
========================================================= */
#contact {
  background: #fff;
  padding: 6rem 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--teal);
  margin-bottom: 2rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-icon {
  width: 20px;
  height: 20px;
  margin-top: 0.15em;
  flex-shrink: 0;
  color: var(--coral);
}
.contact-item-body {}
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.15rem;
}
.contact-item-value {
  font-size: 0.975rem;
  color: var(--dark);
  font-weight: 600;
}
.contact-item-value a {
  color: var(--coral);
}
.contact-item-value a:hover { text-decoration: underline; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--teal);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-logo img {
  height: 36px;
  width: auto;
  display: inline-block;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero-left { padding: 5rem 3rem 5rem 4vw; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .btn-book-header.desktop-only { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-left {
    padding: 2rem 1.5rem 3rem;
    max-width: 100%;
    margin-left: 0;
  }
  .hero-right {
    display: none;
  }
  .hero-mobile-img {
    display: block;
    margin: 1.75rem 0;
  }
  .hero-mobile-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 16px;
    display: block;
  }
  .hero-headline { font-size: 3rem; }
  .hero-stats { gap: 1.25rem; }

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

  .spotlight-inner,
  .spotlight-inner.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .spotlight-inner .spotlight-img-wrap { order: 0; }
  .spotlight-inner .spotlight-content { order: 1; }
  .spotlight-inner.reverse .spotlight-img-wrap { order: 1; }
  .spotlight-inner.reverse .spotlight-content { order: 0; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { order: -1; }

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

  .booking-cards { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .instagram-photos img { width: 130px; height: 130px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .container { padding: 0 1.25rem; }
}
