/* ==========================================================================
   Nirvana Physio & Rehab - main stylesheet (design v2)
   Built on Bootstrap 4.6 (grid + utilities). All visual styling lives here.
   Fonts: Fraunces (display) + Manrope (text)
   Author: Viraj | Last updated: 2026-07
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --green-950: #0e211a;
  --green-900: #142b21;
  --green-800: #1b3a2c;
  --green-700: #245039;
  --green-tint: #eef2ec;
  --gold: #c8a24e;
  --gold-deep: #a8853a;
  --gold-soft: #d9bc7a;
  --gold-tint: #f6efdd;
  --cream: #f7f4ec;
  --paper: #fdfcf9;
  --ink: #22302a;
  --muted: #66716a;
  --line: #e5e1d5;
  --wa-green: #1fa855;

  --ff-serif: "Fraunces", Georgia, serif;
  --ff-sans: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --shadow-sm: 0 2px 10px rgba(14, 33, 26, 0.07);
  --shadow-md: 0 14px 40px rgba(14, 33, 26, 0.14);
  --radius: 14px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-top: 76px; /* fixed navbar offset */
  overflow-x: hidden;
}

::selection {
  background: var(--gold-soft);
  color: var(--green-950);
}

a {
  color: var(--green-700);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-deep);
  text-decoration: none;
}

img {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--green-950);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  color: #fff;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, .display-serif {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.3rem;
}

.accent-i {
  font-style: italic;
  color: var(--gold);
}

h2 .accent-i, .on-light .accent-i {
  color: var(--gold-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}

.lede {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 46em;
}

.measure {
  max-width: 42em;
}

.divider-gold {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 1.4rem 0 1.8rem;
}

.text-gold { color: var(--gold-deep); }
.bg-cream { background: var(--cream); }
.bg-green-deep { background: var(--green-900); }

/* Scroll-reveal (JS adds .in-view) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 50rem;
  padding: 0.72rem 1.7rem;
  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:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--green-950);
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-green {
  border: 1.5px solid var(--green-800);
  color: var(--green-800);
  background: transparent;
}

.btn-outline-green:hover {
  background: var(--green-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-cream {
  border: 1.5px solid rgba(247, 244, 236, 0.5);
  color: var(--cream);
  background: transparent;
}

.btn-outline-cream:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   5. Navbar
   -------------------------------------------------------------------------- */
.navbar-nirvana {
  background: var(--green-950);
  min-height: 76px; /* matches body padding-top - prevents seam under header */
  padding: 0.85rem 0;
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar-nirvana.is-scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  height: 48px;
  width: auto;
  transition: height 0.25s ease;
}

.navbar-nirvana.is-scrolled .navbar-brand img {
  height: 40px;
}

.navbar-nirvana .nav-link {
  color: rgba(247, 244, 236, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  position: relative;
}

.navbar-nirvana .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar-nirvana .nav-link:hover::after,
.navbar-nirvana .nav-item.active > .nav-link::after {
  transform: scaleX(1);
}

.navbar-nirvana .nav-link:hover,
.navbar-nirvana .nav-link:focus {
  color: var(--gold-soft);
}

.navbar-nirvana .nav-item.active > .nav-link {
  color: var(--gold);
}

.navbar-nirvana .dropdown-menu {
  background: var(--green-900);
  border: 1px solid rgba(200, 162, 78, 0.25);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.4rem;
  box-shadow: var(--shadow-md);
}

/* Invisible bridge over the 0.4rem gap so hover isn't lost
   while moving from the nav item down into the menu */
.navbar-nirvana .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.6rem;
  height: 0.6rem;
}

.navbar-nirvana .dropdown-item {
  color: rgba(247, 244, 236, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1.3rem;
}

.navbar-nirvana .dropdown-item:hover,
.navbar-nirvana .dropdown-item:focus {
  background: var(--green-800);
  color: var(--gold-soft);
}

.navbar-nirvana .navbar-toggler {
  border-color: rgba(247, 244, 236, 0.35);
}

.navbar-nirvana .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(247,244,236,.85)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta {
  margin-left: 0.75rem;
}

/* Mobile nav panel */
@media (max-width: 991.98px) {
  .navbar-nirvana .navbar-toggler {
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
  }

  .navbar-nirvana .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.35rem 0.25rem 1.35rem;
    border-top: 1px solid rgba(200, 162, 78, 0.25);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .navbar-nirvana .nav-item + .nav-item {
    border-top: 1px solid rgba(247, 244, 236, 0.08);
  }

  .navbar-nirvana .nav-link {
    padding: 0.9rem 0.35rem;
    font-size: 1rem;
  }

  /* underline animation is a desktop affordance - use color for active state */
  .navbar-nirvana .nav-link::after {
    display: none;
  }

  /* dropdowns become inline, indented sub-lists instead of floating cards */
  .navbar-nirvana .dropdown-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: -0.25rem 0 0.5rem;
    padding: 0 0 0 1.1rem;
  }

  .navbar-nirvana .dropdown-menu::before {
    display: none;
  }

  .navbar-nirvana .dropdown-item {
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    color: rgba(247, 244, 236, 0.68);
    white-space: normal;
  }

  .navbar-nirvana .nav-item:last-child {
    border-top: 0;
  }

  .nav-cta {
    display: block;
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .nav-cta {
    margin: 0.75rem 0 0.25rem;
    display: inline-block;
  }
}

/* --------------------------------------------------------------------------
   6. Photo placeholder system
   Elegant "photo pending" blocks with exact size specs for the client.
   Swap for <img> tags when real photos arrive.
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, #1c3d2d 0%, #10271d 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ph::before {
  /* faint monogram texture */
  content: "N";
  position: absolute;
  right: -8%;
  bottom: -28%;
  font-family: var(--ff-serif);
  font-size: 14rem;
  line-height: 1;
  color: rgba(200, 162, 78, 0.07);
  pointer-events: none;
}

.ph-inner {
  text-align: center;
  color: rgba(247, 244, 236, 0.55);
  padding: 1rem;
  z-index: 1;
}

.ph-inner svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.7rem;
  opacity: 0.7;
}

.ph-inner .ph-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ph-inner .ph-size {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.25rem;
}

.ph-light {
  background: linear-gradient(150deg, #ece7d9 0%, #f5f1e6 70%);
}

.ph-light::before {
  color: rgba(168, 133, 58, 0.1);
}

.ph-light .ph-inner {
  color: #9a9482;
}

/* aspect ratios */
.r-1x1 { aspect-ratio: 1 / 1; }
.r-4x3 { aspect-ratio: 4 / 3; }
.r-3x4 { aspect-ratio: 3 / 4; }
.r-4x5 { aspect-ratio: 4 / 5; }
.r-16x9 { aspect-ratio: 16 / 9; }
.r-21x9 { aspect-ratio: 21 / 9; }

/* --------------------------------------------------------------------------
   7. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  background: var(--green-950);
  color: var(--cream);
  padding: 104px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -220px;
  top: -220px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 162, 78, 0.14);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 162, 78, 0.1);
  pointer-events: none;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.4rem;
}

.hero .lede {
  color: rgba(247, 244, 236, 0.75);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.7rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247, 244, 236, 0.14);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(247, 244, 236, 0.72);
}

.hero-trust span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 0.55rem;
  vertical-align: 2px;
}

/* layered media composition */
.hero-media {
  position: relative;
  padding-bottom: 64px;
  padding-left: 42px;
}

.hero-media .ph {
  box-shadow: var(--shadow-md);
}

.hero-media-sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  border-radius: var(--radius);
  border: 4px solid var(--green-950);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  top: 26px;
  right: -14px;
  z-index: 3;
  background: var(--gold);
  color: var(--green-950);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   8. Marquee strip
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--green-900);
  border-top: 1px solid rgba(200, 162, 78, 0.25);
  border-bottom: 1px solid rgba(200, 162, 78, 0.25);
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247, 244, 236, 0.85);
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.8rem;
}

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

/* --------------------------------------------------------------------------
   9. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--green-950);
  color: var(--cream);
  padding: 76px 0 68px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 162, 78, 0.13);
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 0.9rem;
}

.page-hero .lede {
  color: rgba(247, 244, 236, 0.72);
  margin-bottom: 0;
}

.page-hero .ph {
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   10. Sections, stats & cards
   -------------------------------------------------------------------------- */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.2rem;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  height: 100%;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}

.svc-card h3 {
  font-size: 1.24rem;
  margin: 1.05rem 0 0.5rem;
}

.svc-card p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--green-tint);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-icon svg {
  width: 24px;
  height: 24px;
}

.svc-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-700);
}

.svc-link:hover {
  color: var(--gold-deep);
}

.svc-link .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.svc-card:hover .svc-link .arrow,
.svc-feature:hover .svc-link .arrow {
  transform: translateX(5px);
}

.badge-soon {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 50rem;
  padding: 0.28rem 0.75rem;
}

.svc-card.is-soon {
  background: var(--cream);
}

/* featured service panel */
.svc-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-feature:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}

.svc-feature .ph {
  border-radius: 0;
  height: 100%;
  min-height: 300px;
}

.svc-feature-body {
  padding: 2.6rem 2.4rem;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.8rem 1.6rem;
}

/* Equal heights only when a card sits alone in its column (3-up grids).
   Stacked sidebar cards (e.g. physiotherapy page) must size to content -
   height:100% there makes each card as tall as the whole column. */
[class*="col"] > .step-card:only-child {
  height: 100%;
}

.step-num {
  font-family: var(--ff-serif);
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

/* numbered "why us" list */
.num-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.num-item:last-child {
  border-bottom: 0;
}

.num-item .n {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-deep);
  min-width: 2.4rem;
  line-height: 1.3;
}

.num-item h3 {
  font-family: var(--ff-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.15rem;
}

.num-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. Checklists & condition pills
   -------------------------------------------------------------------------- */
.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.05rem;
  height: 1.05rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8853a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 12.5l5 5L20 6.5'/%3e%3c/svg%3e") center / contain no-repeat;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-cloud span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.pill-cloud span:hover {
  border-color: var(--gold-soft);
  background: var(--gold-tint);
  transform: translateY(-2px);
}

/* dark section variant */
.section-dark {
  background: var(--green-900);
  color: var(--cream);
}

.section-dark h2 {
  color: var(--cream);
}

.section-dark .lede {
  color: rgba(247, 244, 236, 0.7);
}

.section-dark .pill-cloud span {
  background: rgba(247, 244, 236, 0.06);
  border-color: rgba(247, 244, 236, 0.18);
  color: rgba(247, 244, 236, 0.88);
}

.section-dark .pill-cloud span:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 78, 0.14);
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

/* --------------------------------------------------------------------------
   12. Quote band / CTA band
   -------------------------------------------------------------------------- */
.quote-band {
  background: var(--green-900);
  color: var(--cream);
  padding: 92px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 162, 78, 0.12);
}

.quote-band blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto;
}

.quote-band .quote-mark {
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  line-height: 0.4;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}

.quote-band cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.cta-band {
  background: var(--green-950);
  color: var(--cream);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 162, 78, 0.12);
}

.cta-band h2 {
  color: var(--cream);
}

.cta-band p {
  color: rgba(247, 244, 236, 0.72);
}

.strip-gold {
  background: var(--gold-tint);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 36px 0;
}

/* --------------------------------------------------------------------------
   13. Profile
   -------------------------------------------------------------------------- */
.cred-line {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.portrait-wrap {
  position: relative;
  display: block;
  padding: 0 22px 22px 0;
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 0;
  left: 22px;
  border: 1.5px solid var(--gold-soft);
  border-radius: var(--radius);
  z-index: 0;
}

.portrait-wrap .ph,
.portrait-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   14. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--gold-soft);
}

.faq-item .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.2rem 3.2rem 1.2rem 1.5rem;
  font-family: var(--ff-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900);
  position: relative;
  cursor: pointer;
}

.faq-item .faq-q::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: -0.4rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8853a' stroke-width='2.4' stroke-linecap='round'%3e%3cpath d='M5 9l7 7 7-7'/%3e%3c/svg%3e") center / contain no-repeat;
  transition: transform 0.25s ease;
}

.faq-item .faq-q[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-item .faq-a {
  padding: 0 1.5rem 1.3rem;
  color: var(--muted);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   15. Contact page
   -------------------------------------------------------------------------- */
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.6rem 1.5rem;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.contact-card .label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact-card .value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.hours-table {
  font-size: 0.95rem;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-950);
  color: rgba(247, 244, 236, 0.7);
  font-size: 0.92rem;
}

.footer-main {
  background: var(--green-900);
  border-top: 1px solid rgba(200, 162, 78, 0.28);
  padding: 56px 0 48px;
}

.footer-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.site-footer h5 {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.site-footer a {
  color: rgba(247, 244, 236, 0.7);
  display: inline-block;
  padding: 0.18rem 0;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.site-footer .footer-logo {
  height: 76px;
  margin-bottom: 1rem;
}

.footer-bottom {
  background: var(--green-950);
  border-top: 1px solid rgba(247, 244, 236, 0.12);
  padding: 1.1rem 0;
  font-size: 0.8rem;
  color: rgba(247, 244, 236, 0.45);
}

/* --------------------------------------------------------------------------
   Legal pages (privacy policy, terms of use)
   -------------------------------------------------------------------------- */
.legal-body h2 {
  font-size: 1.35rem;
  margin: 2.4rem 0 0.8rem;
}

.legal-body h2:first-of-type {
  margin-top: 1.6rem;
}

.legal-body p {
  margin-bottom: 1rem;
}

.legal-body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   17. Floating WhatsApp button
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14, 33, 26, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 33, 26, 0.45);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* --------------------------------------------------------------------------
   18. Misc & responsive
   -------------------------------------------------------------------------- */
.notice-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3.2rem 2rem;
  text-align: center;
}

.notice-panel .display-serif {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.insurer-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 1.15rem 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-800);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.insurer-tile:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .hero-media {
    margin-top: 3rem;
    max-width: 480px;
    /* center the layered composition so it doesn't sit off to the right */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 68px;
  }

  .navbar-nirvana {
    min-height: 68px;
  }

  .navbar-brand img {
    height: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 60px;
  }

  .hero-media {
    /* no left offset on phones - photo aligns with the text edge,
       the sub-image overlaps inside the bottom-left corner instead */
    padding-left: 0;
    padding-bottom: 44px;
  }

  .hero-media-sub {
    left: 12px;
  }

  .hero-badge {
    right: 0;
  }

  .quote-band,
  .cta-band {
    padding: 60px 0;
  }

  .svc-feature-body {
    padding: 1.9rem 1.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
  }

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