/* ==========================================================================
   Callinan Acupuncture & Wellness
   Palette: black / white / metallic gold  •  Font: Arial
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-800: #1c1c1c;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --grey: #8b8b8b;
  --grey-light: #d8d6d0;

  /* Metallic gold */
  --gold: #c6a15b;
  --gold-deep: #a67c2e;
  --gold-light: #e8d9a8;
  --gold-gradient: linear-gradient(135deg, #b8862b 0%, #e6c667 25%, #fbf1c0 50%, #d4a949 75%, #a3701f 100%);

  --maxw: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, .12);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
p  { font-size: 1.05rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(64px, 9vw, 130px) 0; }

/* ---- Utility text ---- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #4a4a4a; max-width: 60ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons  (large, square)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: 2px solid transparent;
  border-radius: 0;                 /* square */
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  text-align: center;
}
.btn svg { width: 20px; height: 20px; }
.btn-gold {
  background: var(--gold-gradient);
  color: #1a1400;
  box-shadow: 0 12px 30px rgba(166, 124, 46, .35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(166, 124, 46, .5); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); background: #000; box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-3px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-lg { padding: 24px 46px; font-size: 1.1rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(10,10,10,.0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.header.solid {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(198,161,91,.25);
  padding: 12px 0;
}
.header .container { max-width: 1340px; }
.nav { display: flex; align-items: center; justify-content: space-between; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand .mark {
  width: 40px; height: 40px; border: 2px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(198,161,91,.25), transparent);
}
.brand img.mark {
  width: auto; height: 56px; border: 0; border-radius: 0;
  background: none; object-fit: contain;
}
.brand .name { font-size: 1rem; font-weight: 700; letter-spacing: .04em; line-height: 1.1; white-space: nowrap; }
.brand .name span { display: block; font-size: .6rem; letter-spacing: .14em; color: var(--gold); font-weight: 400; white-space: nowrap; }
.header .brand .name { font-size: 1.05rem; letter-spacing: .05em; }
.header .brand .name span { font-size: .58rem; letter-spacing: .12em; }

.nav-links { display: flex; align-items: center; gap: 30px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links::before { display: none; }
.nav-links a {
  color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 700; letter-spacing: .02em;
  padding: 6px 0; position: relative; transition: color .25s; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold-gradient); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 26px; position: relative; }
.nav-cta::before { content: ""; position: absolute; left: -13px; top: 50%; transform: translateY(-50%); width: 1px; height: 26px; background: rgba(255,255,255,.22); }
.nav-cta .btn { padding: 13px 24px; font-size: .9rem; }
/* Refined "Book Now" call button */
.nav-book {
  gap: 9px;
  background: linear-gradient(135deg, #e2c579 0%, #c6a15b 52%, #a97f34 100%);
  color: #211a06;
  border: 0;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(166,124,46,.30);
  letter-spacing: .015em;
  white-space: nowrap;
}
.nav-book span { white-space: nowrap; }
.nav-book svg { width: 16px; height: 16px; flex: none; }
.nav-book:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(166,124,46,.45); }
.header.solid .nav-book { box-shadow: 0 4px 14px rgba(0,0,0,.35); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: auto; display: flex; align-items: center;
  color: var(--white); background: var(--black); overflow: hidden;
  padding: 150px 0 84px;
}
.hero .bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1200px 600px at 78% -5%, rgba(198,161,91,.22), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(198,161,91,.12), transparent 60%),
    linear-gradient(180deg, #000 0%, #0e0e0e 100%);
}
.hero .bg::after {   /* subtle grain / vignette */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, transparent 55%, rgba(0,0,0,.55) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .gold-text { display: inline; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 46ch; margin-bottom: 34px; }

.specialties { margin: 30px 0 40px; }
.specialties .label { font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.chips { display: flex; flex-wrap: nowrap; gap: 10px; }
.chip {
  border: 1px solid rgba(198,161,91,.5); padding: 10px 14px; font-size: .82rem; font-weight: 700;
  background: rgba(198,161,91,.06); color: #f3e9cf; white-space: nowrap;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-media { position: relative; }
.hero-media .photo { aspect-ratio: 4/5; }
.hero-badge {
  position: absolute; left: -26px; bottom: 34px; background: var(--white); color: var(--black);
  padding: 18px 24px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold);
}
.hero-badge strong { font-size: 1.9rem; display: block; }
.hero-badge span { font-size: .82rem; color: #666; letter-spacing: .04em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; text-align: center;
}
.scroll-cue .dot { width: 2px; height: 46px; margin: 10px auto 0; background: linear-gradient(var(--gold), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* Hero — full-bleed background (ready for a faded video) */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .bg { position: absolute; inset: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; z-index: 1; }
.hero-scrim { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.30) 42%, rgba(8,8,10,.80) 100%); }
.hero-inner { position: relative; z-index: 3; }
.hero-inner .hero-copy { max-width: 1080px; }
@media (max-width: 1024px) {
  .chips { flex-wrap: wrap; }
  .hero-inner .hero-copy { max-width: 780px; }
}

/* ==========================================================================
   Photo placeholder (swap for real <img>)
   ========================================================================== */
.photo {
  position: relative; overflow: hidden; background: linear-gradient(135deg, #101010, #1e1e1e 60%, #262015);
  border: 1px solid rgba(198,161,91,.28); aspect-ratio: 4/3; width: 100%;
  display: grid; place-items: center; color: rgba(230,214,168,.9);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo .ph-inner { text-align: center; padding: 24px; z-index: 2; }
.photo .ph-inner svg { width: 44px; height: 44px; margin: 0 auto 14px; stroke: var(--gold); opacity: .85; }
.photo .ph-inner .cap { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(230,214,168,.75); }
.photo::before {   /* metallic shimmer sweep */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(251,241,192,.10) 48%, transparent 66%);
  transform: translateX(-100%); animation: shimmer 4.5s var(--ease) infinite;
}
@keyframes shimmer { 0%,60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.photo.light { background: linear-gradient(135deg, #efece4, #f7f5ef); border-color: rgba(166,124,46,.3); color: var(--gold-deep); }
.photo.light .ph-inner .cap { color: var(--gold-deep); }
/* Video fill (muted background clips) */
.photo.has-video { background: #000; }
.photo.has-video::before { display: none; }
.photo video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* photos containing a real image: no frame/shimmer */
.photo:has(img) { border: 0; background: transparent; }
.photo:has(img)::before { display: none; }

/* Full-bleed service with panning photo behind the text */
.service-hero { position: relative; overflow: hidden; color: #fff; padding: clamp(90px, 13vw, 170px) 0; }
.service-hero .sh-media { position: absolute; inset: -4%; z-index: 0; }
.service-hero .sh-media img { width: 100%; height: 100%; object-fit: cover; animation: shpan 24s ease-in-out infinite alternate; }
.service-hero .sh-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.4) 42%, rgba(8,8,10,.08) 100%); }
.service-hero.right .sh-scrim { background: linear-gradient(270deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.4) 42%, rgba(8,8,10,.08) 100%); }
.service-hero::before, .service-hero::after { content: ""; position: absolute; left: 0; right: 0; height: 70px; z-index: 1; pointer-events: none; }
.service-hero::before { top: 0; background: linear-gradient(rgba(8,8,10,.7), transparent); }
.service-hero::after { bottom: 0; background: linear-gradient(transparent, rgba(8,8,10,.7)); }
.service-hero h3, .service-hero .desc { text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.service-hero .container { position: relative; z-index: 2; }
.service-hero .sh-inner { max-width: 600px; text-align: left; }
.service-hero .svc-cols { margin: 26px 0 0; }
.service-hero h3 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.service-hero .desc { color: rgba(255,255,255,.85); margin-bottom: 26px; font-size: 1.05rem; }
.service-hero .svc-cols h4 { color: var(--gold); }
.service-hero .svc-cols li { color: rgba(255,255,255,.9); }
.service-hero.right .sh-inner { margin-left: auto; }
/* section seams smoothed by the top/bottom edge fades above */
@media (max-width: 860px) { .service-hero.right .sh-inner { margin-left: 0; } }
/* Our Story as a full-bleed hero */
.story-hero .sh-inner { max-width: 480px; }
.story-hero .sh-media { transform: none; }
.story-hero .sh-media img { animation: none; transform: scale(1.4) translateX(-18%); }  /* zoom + slide so Jeffrey sits left, empty wall fills the right for the text */
.story-hero .sh-scrim { background: linear-gradient(270deg, rgba(8,8,10,.9) 0%, rgba(8,8,10,.6) 42%, rgba(8,8,10,.12) 74%, rgba(8,8,10,0) 100%); }
.story-hero .eyebrow { color: var(--gold); }
.story-hero .lead { color: rgba(255,255,255,.85); max-width: none; }
.story-hero .creds li { color: rgba(255,255,255,.9); }
.story-hero .creds li::before { color: var(--gold); }
.story-hero .story-quote { color: rgba(255,255,255,.92); border-left-color: var(--gold); }
@keyframes shpan { from { transform: scale(1.02) translate(0, 0); } to { transform: scale(1.07) translate(-2%, -1.5%); } }
@media (prefers-reduced-motion: reduce) { .service-hero .sh-media img { animation: none; } }
@media (max-width: 560px) { .service-hero .sh-scrim, .service-hero.right .sh-scrim { background: linear-gradient(rgba(8,8,10,.6), rgba(8,8,10,.5)); } }

/* ==========================================================================
   Journey (Recover / Restore / Perform / Maintain)
   ========================================================================== */
.journey { background: var(--off-white); }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.journey-card {
  background: var(--white); border: 1px solid #ece9e1; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.journey-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.journey-card .photo { aspect-ratio: 1/1; border: 0; border-bottom: 3px solid var(--gold); }
.journey-card .body { padding: 26px 24px 30px; }
.journey-card .step { font-size: .74rem; letter-spacing: .28em; color: var(--gold-deep); font-weight: 700; }
.journey-card h3 { margin: 8px 0 10px; }
.journey-card p { color: #5a5a5a; font-size: 1rem; }
.journey-arrow { display: grid; place-items: center; color: var(--gold); }

/* ==========================================================================
   Our Story
   ========================================================================== */
.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media .photo { aspect-ratio: 4/5; border: 0; background: transparent; }
.story-media .photo::before { display: none; }
.story-badge {
  position: absolute; right: -22px; bottom: 30px; background: var(--black); color: var(--white);
  padding: 16px 22px; border-left: 3px solid var(--gold); box-shadow: var(--shadow-lg); max-width: 250px;
}
.story-badge strong { display: block; font-size: 1.5rem; letter-spacing: .1em; color: var(--gold-light); line-height: 1.1; }
.story-badge span { font-size: .8rem; color: rgba(255,255,255,.75); }
.story-body h2 { margin-bottom: 20px; }
.story-body .lead { margin-bottom: 26px; color: #4a4a4a; }
.creds { list-style: none; margin: 0 0 28px; display: grid; gap: 13px; }
.creds li { position: relative; padding-left: 22px; color: #333; font-size: 1.02rem; }
.creds li::before { content: "•"; position: absolute; left: 2px; top: -1px; color: var(--gold-deep); font-weight: 700; font-size: 1.2rem; line-height: 1; }
.story-quote { border-left: 3px solid var(--gold); padding: 4px 0 4px 22px; margin: 0 0 30px; font-style: italic; color: #2a2a2a; font-size: 1.12rem; }
.story-actions { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } .story-badge { right: 16px; } }

/* ==========================================================================
   Services (alternating feature rows)
   ========================================================================== */
.service {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid #ececec;
}
.service:last-child { border-bottom: 0; }
.service.reverse .service-media { order: 2; }
.service .photo { aspect-ratio: 5/4; }
.service-body .num { font-size: 3rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--gold); line-height: 1; margin-bottom: 12px; }
.service-body h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.service-body .desc { color: #555; margin-bottom: 24px; }
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }
.svc-cols h4 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.svc-cols ul { list-style: none; }
.svc-cols li { position: relative; padding-left: 22px; margin-bottom: 8px; font-size: .98rem; color: #333; }
.svc-cols li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--gold-gradient); }
/* tighten gap before first service */
#services .section-head { margin-bottom: 38px; }
#services .service:first-of-type { padding-top: 28px; }

/* ==========================================================================
   Why choose (cards)
   ========================================================================== */
.why { background: var(--white); color: var(--black); }
.why .section-head p { color: #555; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-card {
  border: 1px solid #1a1a1a; padding: 36px 32px; background: var(--black);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(198,161,91,.7); box-shadow: var(--shadow); }
.why-card .ico { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--gold); margin-bottom: 20px; }
.why-card .ico svg { width: 26px; height: 26px; stroke: var(--gold-deep); }
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--white); }
.why-card p { color: rgba(255,255,255,.72); font-size: .98rem; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { background: var(--gold-gradient); color: #1a1400; padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat strong { font-size: clamp(2.2rem, 4vw, 3.2rem); display: block; line-height: 1; }
.stat span { font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--off-white); }
.rating-row { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 12px; }
.stars { color: var(--gold-deep); letter-spacing: 3px; font-size: 1.3rem; }
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 50px; }
.t-card { background: var(--white); padding: 38px 34px; border-top: 3px solid var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,.05); position: relative; }
.t-card .quote-mark { font-size: 4rem; line-height: .6; color: rgba(198,161,91,.35); font-family: Georgia, serif; }
.t-card p { color: #333; font-size: 1.02rem; margin: 8px 0 22px; }
.t-card .who { display: flex; align-items: center; gap: 14px; }
.t-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-gradient); display: grid; place-items: center; font-weight: 700; color: #1a1400; }
.t-card .who .name { font-weight: 700; }
.t-card .who .src { font-size: .8rem; color: var(--grey); }
.t-card .t-stars { color: var(--gold-deep); letter-spacing: 2px; margin-bottom: 6px; }

/* ==========================================================================
   Conditions treated
   ========================================================================== */
.conditions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cond {
  border: 1px solid #e7e4dc; padding: 20px; min-height: 92px; display: flex; align-items: center;
  font-weight: 700; background: var(--white);
}
.cond .dot { display: none; }

/* Instagram feed page */
.ig-embed { max-width: 1040px; margin: 0 auto; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ig-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: block; background: #f2f0ea; border: 1px solid #e7e4dc; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile .ig-ph { position: absolute; inset: 0; background:
  linear-gradient(135deg, rgba(166,124,46,.10), rgba(0,0,0,.04));
  background-size: 200% 200%; animation: igshimmer 3.5s ease-in-out infinite; }
.ig-tile .ig-ph::after { content: ""; position: absolute; top: 50%; left: 50%; width: 30px; height: 30px; transform: translate(-50%,-50%);
  border: 2px solid rgba(166,124,46,.55); border-radius: 8px; }
@keyframes igshimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
behold-widget { display: block; }
@media (max-width: 600px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Final CTA block (shared across pages)
   ========================================================================== */
.cta-final { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.cta-final .bg { position: absolute; inset: 0; background: radial-gradient(800px 400px at 80% 0%, rgba(198,161,91,.22), transparent 60%); }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner .lead { color: rgba(255,255,255,.75); margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.cta-meta { display: grid; gap: 14px; }
.cta-meta .row { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.85); font-size: .98rem; }
.cta-meta .row svg { width: 20px; height: 20px; stroke: var(--gold); flex: none; }
.cta-card { border: 1px solid rgba(198,161,91,.3); padding: 34px; background: rgba(255,255,255,.02); }
.cta-card h3 { color: var(--gold-light); margin-bottom: 18px; font-size: 1.2rem; letter-spacing: .04em; }
.cta-card .hours { display: grid; gap: 10px; }
.cta-card .hours .h { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.cta-card .hours .h span:last-child { color: var(--gold-light); font-weight: 700; }

/* map */
.map-wrap { border: 1px solid rgba(198,161,91,.3); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; filter: grayscale(.3) contrast(1.05); display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #060606; color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: var(--white); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { display: block; color: rgba(255,255,255,.62); font-size: .95rem; margin-bottom: 11px; transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer .brand { color: var(--white); margin-bottom: 18px; }
.footer .about { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 34ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.4); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--black); color: var(--white); padding: 190px 0 90px; position: relative; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background: radial-gradient(900px 500px at 85% -10%, rgba(198,161,91,.22), transparent 60%); }
.page-hero .inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .crumb { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,.75); margin-top: 20px; font-size: 1.15rem; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card .photo { aspect-ratio: 3/4; }
.team-card .body { padding: 22px 4px; }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--gold-deep); font-weight: 700; font-size: .9rem; letter-spacing: .04em; margin-bottom: 12px; }
.team-card p { color: #555; font-size: .98rem; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.price-card { border: 1px solid #e7e4dc; padding: 40px 32px; transition: .35s var(--ease); background: var(--white); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--black); color: var(--white); border-color: var(--black); }
.price-card.featured .price { color: var(--gold-light); }
.price-card .tier { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.price-card.featured .tier { color: var(--gold); }
.price-card .price { font-size: 3rem; font-weight: 700; margin: 14px 0 6px; }
.price-card .price small { font-size: 1rem; color: var(--grey); font-weight: 400; }
.price-card ul { list-style: none; margin: 24px 0 30px; }
.price-card li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .96rem; }
.price-card.featured li { border-color: rgba(255,255,255,.1); }
.price-card li::before { content: "✔"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.price-note { text-align: center; color: var(--grey); margin-top: 30px; font-size: .92rem; }
/* Per-service pricing layout */
.price-grid.four { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }
.price-grid.five { display: flex; flex-wrap: wrap; justify-content: center; max-width: 1180px; margin-left: auto; margin-right: auto; }
.price-grid.five .price-card { flex: 0 1 336px; }
.price-card .ptitle { font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.price-lines { list-style: none; margin: 18px 0 24px; }
.price-lines li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.08); font-size: 1rem; color: #333; }
.price-lines li::before { content: none; }
.price-lines li:last-child { border-bottom: 0; }
.price-lines .amt { font-weight: 700; font-size: 1.3rem; color: var(--gold-deep); white-space: nowrap; }
@media (max-width: 700px) { .price-grid.four { grid-template-columns: 1fr; } .price-grid.five .price-card { flex-basis: 100%; } }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border: 1px solid #ece9e1; background: var(--white); transition: .35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card .photo { aspect-ratio: 16/10; border: 0; }
.blog-card .body { padding: 24px 24px 30px; }
.blog-card .tag { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.blog-card h3 { font-size: 1.25rem; margin: 10px 0; }
.blog-card p { color: #5a5a5a; font-size: .96rem; }
.blog-card .more { color: var(--gold-deep); font-weight: 700; font-size: .9rem; margin-top: 14px; display: inline-block; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #ececec; }
.contact-info .row svg { width: 24px; height: 24px; stroke: var(--gold-deep); flex: none; margin-top: 3px; }
.contact-info .row h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info .row p, .contact-info .row a { color: #555; font-size: .98rem; }
.form { background: var(--off-white); padding: 40px; border: 1px solid #ece9e1; }
.form label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin: 18px 0 8px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 15px 16px; border: 1px solid #d8d5cc; background: var(--white);
  font-family: inherit; font-size: 1rem; border-radius: 0;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 26px; }

/* ==========================================================================
   Scroll-reveal animation
   ========================================================================== */
html.js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .photo::before, .scroll-cue .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid, .price-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Collapse the nav to a menu button before it can overflow */
@media (max-width: 1200px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start;
    background: rgba(10,10,10,.98); padding: 110px 34px 40px; gap: 22px; transform: translateX(100%); margin: 0;
    transition: transform .4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.5); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.05rem; }
  .nav-links::before, .nav-cta::before { display: none; }
  .nav-cta { margin-left: auto; margin-right: 20px; }
  .menu-toggle { display: block; z-index: 120; }
}
@media (max-width: 860px) {
  .cta-inner, .contact-grid { grid-template-columns: 1fr; }
  .service, .service.reverse .service-media { grid-template-columns: 1fr; }
  .service.reverse .service-media { order: 0; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .journey-grid, .why-grid, .team-grid, .price-grid, .blog-grid, .stats-grid, .svc-cols { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Phones: compact header (logo + Book Now + menu, no overlap) */
@media (max-width: 600px) {
  .header .brand .name { display: none; }
  .header .brand img.mark { height: 46px; }
  .header .nav-cta .btn { width: auto; padding: 11px 15px; font-size: .85rem; gap: 7px; }
  .header .nav-cta .btn svg { width: 15px; height: 15px; }
  .nav-cta { margin-right: 12px; }
  .hero { padding: 116px 0 68px; }
  .container { padding: 0 20px; }
}

/* ==========================================================================
   Click-to-call popup (desktop fallback)
   ========================================================================== */
.call-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center;
  background: rgba(6,6,8,.72); backdrop-filter: blur(4px); padding: 24px; }
.call-modal.open { display: flex; }
.call-box { position: relative; background: #0f0f10; color: #fff; border: 1px solid rgba(198,161,91,.4);
  max-width: 420px; width: 100%; padding: 44px 34px 34px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.call-close { position: absolute; top: 10px; right: 16px; background: none; border: 0; color: rgba(255,255,255,.6);
  font-size: 1.9rem; line-height: 1; cursor: pointer; }
.call-close:hover { color: #fff; }
.call-eyebrow { font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 700; }
.call-number { display: block; font-size: 2.1rem; font-weight: 700; color: #fff; letter-spacing: .02em; margin-bottom: 12px; }
.call-number:hover { color: var(--gold-light); }
.call-hint { color: rgba(255,255,255,.62); font-size: .92rem; margin-bottom: 26px; }
.call-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.call-actions .btn { padding: 14px 26px; }
.call-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.call-actions .btn-outline:hover { background: #fff; color: #111; }
