/* ============================================
   MAITRI LIVERPOOL — Shared Stylesheet
   Brand palette: deep navy, gold, soft ivory
   (matched to Maitri leaflet / lotus branding)
   ============================================ */

:root {
  --navy: #16264c;
  --navy-mid: #1f3560;
  --navy-soft: #2c4a7c;
  --gold: #c9a13b;
  --gold-dark: #a8822a;
  --gold-light: #e3cd8f;
  --ivory: #f9f7f1;
  --ivory-dark: #f0ebdd;
  --ink: #22304e;
  --ink-soft: #56617c;
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(22, 38, 76, 0.12);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.45rem; }

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

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.88rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar .social-links { display: flex; gap: 14px; align-items: center; }
.topbar .social-links svg { width: 16px; height: 16px; fill: var(--gold-light); vertical-align: middle; }
.topbar .social-links a:hover svg { fill: var(--white); }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--ivory);
  border-bottom: 1px solid rgba(22,38,76,0.12);
  position: sticky; top: 0; z-index: 100;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-name {
  font-family: 'Jost', sans-serif; /* matches the logo's geometric lettering */
  font-size: 1.55rem; font-weight: 400; color: var(--navy);
  letter-spacing: 0.38em;
}
.brand .brand-tag {
  font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-dark);
}

nav.main-nav { display: flex; align-items: center; gap: 26px; }
nav.main-nav > ul { display: flex; gap: 26px; list-style: none; align-items: center; }
nav.main-nav a {
  color: var(--ink); font-weight: 500; font-size: 0.98rem;
  padding: 6px 0; position: relative;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--navy-soft); }
nav.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -14px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  padding: 10px 0; min-width: 230px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.22s ease;
  list-style: none;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 9px 22px; font-size: 0.95rem; color: var(--ink);
}
.dropdown-menu li a:hover { background: var(--ivory-dark); color: var(--navy); }

.btn {
  display: inline-block; padding: 12px 28px; border-radius: 40px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
  transition: all 0.2s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy) !important; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy) !important;
  border: 2px solid var(--navy-soft);
}
.btn-outline:hover { background: var(--navy-soft); color: var(--white) !important; }
.btn-light { background: var(--white); color: var(--navy) !important; }
.btn-light:hover { background: var(--ivory-dark); }
.btn-navy { background: var(--navy); color: var(--gold-light) !important; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.mobile-book { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px; background: var(--navy); border-radius: 2px;
  transition: 0.25s;
}

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

/* ---------- Hero ---------- */
.hero {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cg fill='none' stroke='%23c9a13b' stroke-opacity='.35' stroke-width='1.3'%3E%3Cpath d='M100 15 C 88 45 88 75 100 105 C 112 75 112 45 100 15'/%3E%3Cpath d='M60 30 C 62 60 75 85 100 105 C 95 75 82 48 60 30'/%3E%3Cpath d='M140 30 C 138 60 125 85 100 105 C 105 75 118 48 140 30'/%3E%3Cpath d='M25 60 C 40 85 65 100 100 105 C 78 88 55 72 25 60'/%3E%3Cpath d='M175 60 C 160 85 135 100 100 105 C 122 88 145 72 175 60'/%3E%3C/g%3E%3C/svg%3E"), linear-gradient(140deg, #0f1c3d 0%, var(--navy) 45%, var(--navy-soft) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right -60px bottom -40px, center;
  background-size: 560px auto, cover;
  color: var(--white);
  padding: 96px 0 110px;
  position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,25,57,0.92) 0%, rgba(10,25,57,0.75) 48%, rgba(10,25,57,0.38) 100%);
  pointer-events: none;
}
.hero .hero-content { position: relative; z-index: 3; }
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,59,0.18), transparent 70%);
  z-index: 2;
}
.hero::before {
  content: ""; position: absolute; left: -80px; bottom: -160px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,59,0.10), transparent 70%);
  z-index: 2;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em.accent, .cta-band h2 em.accent {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  color: var(--gold-light); font-weight: 600;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero::after { animation: floaty 7s ease-in-out infinite; }
.hero::before { animation: floaty 9s ease-in-out infinite reverse; }
.hero .lede {
  font-size: 1.15rem; max-width: 640px; color: #dfe5f0; margin-bottom: 34px;
}
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.8rem;
  color: var(--gold-light); margin-bottom: 14px; display: block;
}
.hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 820px) {
  .hero-video { object-position: center center; }
  .hero-video-overlay {
    background: linear-gradient(90deg, rgba(10,25,57,0.9), rgba(10,25,57,0.66));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Page hero (inner pages) */
.page-hero {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cg fill='none' stroke='%23c9a13b' stroke-opacity='.35' stroke-width='1.3'%3E%3Cpath d='M100 15 C 88 45 88 75 100 105 C 112 75 112 45 100 15'/%3E%3Cpath d='M60 30 C 62 60 75 85 100 105 C 95 75 82 48 60 30'/%3E%3Cpath d='M140 30 C 138 60 125 85 100 105 C 105 75 118 48 140 30'/%3E%3Cpath d='M25 60 C 40 85 65 100 100 105 C 78 88 55 72 25 60'/%3E%3Cpath d='M175 60 C 160 85 135 100 100 105 C 122 88 145 72 175 60'/%3E%3C/g%3E%3C/svg%3E"), linear-gradient(140deg, #0f1c3d, var(--navy-mid));
  background-repeat: no-repeat, no-repeat;
  background-position: right -40px bottom -30px, center;
  background-size: 380px auto, cover;
  color: var(--white); padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,59,0.16), transparent 70%);
}
.page-hero h1 { color: var(--white); }
.page-hero p { max-width: 640px; margin: 12px auto 0; color: #dfe5f0; }
.page-hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem;
  color: var(--gold-light); display: block; margin-bottom: 10px;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--ivory-dark); }
.section-navy { background: var(--navy); color: #dfe5f0; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .eyebrow {
  text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.78rem;
  color: var(--gold-dark); display: block; margin-bottom: 10px; font-weight: 600;
}
.section-navy .section-head .eyebrow { color: var(--gold-light); }
.section-head h2::after {
  content: ""; display: block; width: 64px; height: 2px; margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-head p { color: var(--ink-soft); margin-top: 12px; }
.section-navy .section-head p { color: #c4cede; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex; flex-direction: column;
  border-top: 3px solid var(--gold);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(22,38,76,0.18); }
.card .card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
  transition: all .35s ease;
}
.card .card-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; }
.card:hover .card-icon { background: var(--gold); color: var(--navy); transform: rotate(-8deg) scale(1.08); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; flex-grow: 1; }
.card .card-link {
  margin-top: 18px; font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; color: var(--gold-dark);
}
.card .card-link:hover { color: var(--navy); }

/* ---------- Treatment list ---------- */
.treatment-list { list-style: none; margin: 26px 0; }
.treatment-list li {
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  padding: 22px 26px; margin-bottom: 16px;
  border-left: 4px solid var(--gold);
}
.treatment-list li strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; color: var(--navy); display: block; margin-bottom: 4px;
}
.treatment-list li span { color: var(--ink-soft); font-size: 0.97rem; }

/* Two-column layout */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.two-col .col-visual {
  background: linear-gradient(150deg, var(--navy-soft) 0%, var(--navy) 100%);
  border-radius: var(--radius); min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 4rem;
  box-shadow: var(--shadow);
}
.two-col .col-visual.warm {
  background: linear-gradient(150deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
}

.maitri-meaning-image {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  justify-self: start;
}

@media (max-width: 900px) {
  .maitri-meaning-image {
    width: min(100%, 280px);
    justify-self: center;
    margin-inline: auto;
  }
}

/* ---------- Benefits / checklist ---------- */
.check-list { list-style: none; margin: 20px 0; }
.check-list li {
  padding-left: 32px; position: relative; margin-bottom: 12px; color: var(--ink-soft);
}
.check-list li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 1rem;
}
.section-navy .check-list li { color: #c4cede; }

/* ---------- CTA band ---------- */
.cta-band {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cg fill='none' stroke='%23c9a13b' stroke-opacity='.35' stroke-width='1.3'%3E%3Cpath d='M100 15 C 88 45 88 75 100 105 C 112 75 112 45 100 15'/%3E%3Cpath d='M60 30 C 62 60 75 85 100 105 C 95 75 82 48 60 30'/%3E%3Cpath d='M140 30 C 138 60 125 85 100 105 C 105 75 118 48 140 30'/%3E%3Cpath d='M25 60 C 40 85 65 100 100 105 C 78 88 55 72 25 60'/%3E%3Cpath d='M175 60 C 160 85 135 100 100 105 C 122 88 145 72 175 60'/%3E%3C/g%3E%3C/svg%3E"), linear-gradient(120deg, var(--navy), var(--navy-mid));
  background-repeat: no-repeat, no-repeat;
  background-position: left -70px center, center;
  background-size: 420px auto, cover;
  color: var(--white); text-align: center; padding: 64px 0;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; left: 50%; top: -140px; transform: translateX(-50%);
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,59,0.14), transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: #dfe5f0; max-width: 560px; margin: 0 auto 28px; }
.cta-band .container { position: relative; z-index: 1; }

/* ---------- Info strip ---------- */
.info-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; text-align: center;
}
.info-strip .info-item {
  padding: 26px 18px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
}
.info-strip .info-item h4 { font-size: 1.15rem; margin-bottom: 6px; }
.info-strip .info-item p, .info-strip .info-item a { font-size: 0.95rem; color: var(--ink-soft); }
.info-strip .info-item a { color: var(--gold-dark); font-weight: 600; }

/* ---------- Stat badge ---------- */
.stat-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold-light);
  border: 2px solid var(--gold); border-radius: 50%;
  width: 160px; height: 160px; text-align: center; padding: 12px;
  box-shadow: var(--shadow);
}
.stat-badge .stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-badge .stat-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy); color: #c4cede; padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 48px;
}
footer h4 {
  color: var(--gold-light); font-family: 'Jost', sans-serif; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: #c4cede; font-size: 0.95rem; }
footer a:hover { color: var(--white); }
footer .footer-brand {
  font-family: 'Jost', sans-serif; font-size: 1.4rem;
  color: var(--white); font-weight: 400; letter-spacing: 0.38em; margin-bottom: 10px;
}
footer .footer-about { font-size: 0.93rem; max-width: 300px; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 17px; height: 17px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0; text-align: center; font-size: 0.85rem; color: #8e9cb8;
}

/* ---------- Voucher card ---------- */
.voucher-card {
  background: linear-gradient(135deg, #0f1c3d, var(--navy-mid));
  color: var(--white); border-radius: var(--radius); padding: 44px 40px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  border: 1px solid var(--gold);
}
.voucher-card::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,59,0.22), transparent 70%);
}
.voucher-card h3 { color: var(--gold-light); font-size: 1.8rem; }
.voucher-card .voucher-amounts { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.voucher-card .voucher-amounts span {
  background: rgba(201,161,59,0.18); border: 1px solid var(--gold);
  border-radius: 30px; padding: 8px 22px; font-weight: 600; color: var(--gold-light);
}

/* ---------- Pills (insurance providers etc.) ---------- */
.pill {
  background: var(--white); border: 1px solid var(--gold);
  border-radius: 30px; padding: 10px 26px; font-weight: 600;
  color: var(--navy); box-shadow: var(--shadow); display: inline-block;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 28px; }
.muted { color: var(--ink-soft); }
.notice {
  background: #f6f0df; border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 18px 22px; font-size: 0.95rem; color: var(--ink-soft);
}

/* ---------- Travel directions ---------- */
.find-us-heading { margin-top: 64px; }
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.travel-card {
  background: var(--white);
  border-radius: 12px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 26px;
}
.travel-card h3 { margin-bottom: 14px; color: var(--navy); }
.travel-card p { color: var(--ink-soft); margin-top: 12px; }
.travel-card ul { margin: 12px 0 0 20px; color: var(--ink-soft); }
.travel-card li + li { margin-top: 9px; }
.travel-planner-link { margin-top: 28px; }

@media (max-width: 900px) {
  .travel-grid { grid-template-columns: 1fr; }
}
.lotus-divider {
  text-align: center; color: var(--gold); font-size: 1.4rem; margin: 8px 0 20px;
  letter-spacing: 0.5em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col .col-visual { min-height: 220px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .mobile-book {
    display: inline-block; padding: 9px 20px; font-size: 0.85rem;
    margin-left: auto; margin-right: 14px;
  }
  nav.main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid rgba(22,38,76,0.15);
    box-shadow: var(--shadow); padding: 18px 24px 26px;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav > ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  nav.main-nav > ul > li { width: 100%; }
  nav.main-nav a { display: block; padding: 10px 0; font-size: 1.05rem; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; padding: 0 0 0 18px; min-width: 0;
  }
  .dropdown-menu li a 

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::after, .hero::before { animation: none; }
}

/* ---------- Photos ---------- */
.brand-logo { height: 74px !important; }
.photo {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.photo-banner {
  width: 100%; height: 300px; object-fit: cover; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.photo-banner.acupuncture-feature-image {
  height: 340px;
  object-position: center;
}
.photo-banner.therapy-feature-image {
  height: 320px;
  object-position: center;
}
.therapy-image-wrap { margin-top: 34px; }
@media (max-width: 820px) {
  .brand-logo { height: 56px !important; }
  .photo { min-height: 220px; }
  .photo-banner { height: 200px; }
  .photo-banner.acupuncture-feature-image { height: 220px; }
  .photo-banner.therapy-feature-image { height: 220px; }
}
