/* ============ HOME PAGE SPECIFIC STYLES ============ */

/* ============ HERO — split screen ============ */
#hero {
  position: relative;
  background: var(--page);
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  min-height: min(760px, 88vh);
  align-items: stretch;
}

/* left: copy on a warm block */
.hero-copy {
  background: linear-gradient(158deg, #FDF6EC 0%, #F8E6D4 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s10) var(--s8) var(--s10) max(var(--s5), calc((100vw - var(--max)) / 2 + var(--s5)));
  position: relative;
  overflow: hidden;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 8% 92%, rgba(194, 69, 47, 0.10), transparent 62%);
}
.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: none !important;
}

/* masked line-by-line reveal */
.hero-h1 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 1.02;
  margin: 0 0 var(--s4);
  color: var(--charcoal);
  max-width: 15ch;
}
.hero-h1 .ln {
  display: block;
  overflow: hidden;
}
.hero-h1 .ln > span {
  display: block;
  will-change: transform;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--terracotta-ink);
}
.hero-sub {
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--slate);
  max-width: 40ch;
  margin: 0 0 var(--s5);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 17px 30px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  box-shadow: 0 14px 32px rgba(184, 67, 26, 0.26);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, box-shadow 0.3s;
}
.hero-book svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-book:hover {
  background: var(--orange-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(217, 83, 28, 0.32);
}
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  padding: 17px 26px;
  border-radius: 999px;
  border: 1.6px solid rgba(63, 70, 80, 0.24);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.3s;
}
.hero-call:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.6);
}

/* right: photo bleeding off the edge */
.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(248, 230, 212, 0.55), transparent 34%);
}

/* ============ ECG TRANSITION BAND ============ */
.qf-ecg {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ecg-svg {
  width: 100%;
  height: 70px;
  display: block;
}
.ecg-base {
  fill: none;
  stroke: rgba(142, 68, 51, 0.16);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ecg-pulse {
  fill: none;
  stroke: url(#ecgGrad);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 206 1589;
  stroke-dashoffset: 1795;
  animation: ecgRun 3.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(217, 83, 28, 0.35));
}
@keyframes ecgRun {
  from { stroke-dashoffset: 1795; }
  to { stroke-dashoffset: 0; }
}

/* ============ QUICK FACTS (floating card) ============ */
#quickfacts {
  background: transparent;
  padding: var(--s8) 0 var(--s10);
  position: relative;
}
#quickfacts .wrap {
  position: relative;
  z-index: 1;
}
.qf-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(63, 70, 80, 0.14);
  border: 1px solid rgba(63, 70, 80, 0.06);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3) var(--s4);
  max-width: 1010px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.qf-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qf-item .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qf-item .ico svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qf-item:nth-child(1) .ico { background: #FCE3D6; } .qf-item:nth-child(1) .ico svg { stroke: #C2532B; }
.qf-item:nth-child(2) .ico { background: #FBECCB; } .qf-item:nth-child(2) .ico svg { stroke: #8F6210; }
.qf-item:nth-child(3) .ico { background: #D7EBE9; } .qf-item:nth-child(3) .ico svg { stroke: #1F6B6B; }
.qf-item:nth-child(4) .ico { background: #E4E2F3; } .qf-item:nth-child(4) .ico svg { stroke: #544484; }
.qf-item b {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.25;
  color: var(--charcoal);
}
.qf-item span {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.4;
}

/* ============ MEDICARE BULK BILLING (floating card scene) ============ */
.mc-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: var(--s8);
  align-items: center;
}
.mc-stage {
  perspective: 1100px;
  display: flex;
  justify-content: center;
  padding: var(--s3) 0;
}
.mc-card {
  position: relative;
  width: 100%;
  max-width: 330px;
  aspect-ratio: 1.586 / 1;
  border-radius: 16px;
  padding: 20px 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #0A8163 0%, #046A4F 46%, #02503B 100%);
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateY(-17deg) rotateX(9deg) rotateZ(-2deg);
  box-shadow: 0 2px 5px rgba(2, 58, 42, 0.28), 0 12px 22px rgba(2, 58, 42, 0.22),
              0 34px 60px rgba(2, 58, 42, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: mcFloat 7s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
}
@keyframes mcFloat {
  0%, 100% { transform: rotateY(-17deg) rotateX(9deg) rotateZ(-2deg) translateY(0); }
  50%      { transform: rotateY(-13deg) rotateX(6deg) rotateZ(-1deg) translateY(-12px); }
}
.mc-stage:hover .mc-card {
  animation-play-state: paused;
  transform: rotateY(-6deg) rotateX(3deg) translateY(-8px) scale(1.03);
  box-shadow: 0 4px 8px rgba(2, 58, 42, 0.3), 0 18px 30px rgba(2, 58, 42, 0.26),
              0 48px 80px rgba(2, 58, 42, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.mc-word {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #FFC93C;
  line-height: 1;
}
.mc-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 6px;
}
.mc-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFC93C;
  color: #02503B;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  padding: 11px 22px;
}
.mc-chip {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 34px;
  height: 26px;
  border-radius: 5px;
  background: linear-gradient(140deg, #F7DFA1, #C7A64F);
}
.mc-chip::after {
  content: "";
  position: absolute;
  inset: 5px 6px;
  border-left: 1px solid rgba(0, 0, 0, 0.18);
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}
.mc-sheen {
  position: absolute;
  top: -40%;
  left: -30%;
  width: 55%;
  height: 200%;
  pointer-events: none;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}
.mc-copy .eyebrow {
  margin-bottom: var(--s2);
}
.mc-copy h2 {
  margin: 0 0 var(--s3);
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
}
.mc-copy p {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0 0 var(--s4);
  max-width: 52ch;
}

/* ============ ABOUT / OUR STORY ============ */
#about {
  background: transparent;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin: var(--s6) 0;
}
.ctr .fig {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin: 0;
}
.ctr:nth-child(1) .fig { color: var(--orange-deep); }
.ctr:nth-child(2) .fig { color: var(--teal-ink); }
.ctr:nth-child(3) .fig { color: #4E7B5B; }
.ctr .fig .suffix { font-size: 0.5em; }
.ctr .lbl {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--slate);
  max-width: 18ch;
}
.collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ctile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.ctile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctile.t1 { aspect-ratio: 3/4; background: #D9531C; }
.ctile.t2 { aspect-ratio: 1/1; margin-top: var(--s6); }
.ctile.t3 { aspect-ratio: 1/1; }
.ctile.t4 { aspect-ratio: 3/4; margin-top: calc(var(--s3) * -1); }
.collage-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 16px;
  padding: 14px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 4;
}
.collage-badge b {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.collage-badge span {
  font-size: 0.78rem;
  color: var(--slate);
}
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s10); }
}
@media (max-width: 520px) {
  .counters { grid-template-columns: 1fr; gap: var(--s4); }
}

/* ============ TRIAGE PICKER ============ */
#triage {
  background: transparent;
}
.tz-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid rgba(63, 70, 80, 0.1);
  margin-bottom: var(--s6);
  overflow-x: auto;
  padding-bottom: 4px;
}
.tz-tab {
  background: none;
  border: 0;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 12px 18px;
  color: var(--slate);
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
  transition: color 0.3s, background 0.3s;
}
.tz-tab:hover {
  color: var(--terracotta-ink);
  background: rgba(160, 80, 60, 0.06);
}
.tz-tab[aria-selected="true"] {
  color: var(--terracotta-ink);
  font-weight: 700;
  border-bottom: 3px solid var(--terracotta);
  margin-bottom: -2px;
}
.tz-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.tz-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--s4);
  border: 1px solid rgba(63, 70, 80, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.tz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tz-card h4 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 var(--s2);
  color: var(--charcoal);
}
.tz-card p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0 0 var(--s3);
  flex: 1;
}
.tz-link {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--terracotta-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ TEAM SECTION WITH ZOOM ============ */
#team {
  background: transparent;
  position: relative;
}
.tm-shell {
  position: relative;
}
.tm-big {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  letter-spacing: -0.04em;
  color: var(--charcoal);
  text-align: center;
  margin: 0 auto;
  pointer-events: none;
  transform-origin: center center;
}
.tm-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: var(--s2);
}
.tm-body {
  position: relative;
  z-index: 2;
}
.gp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.gp-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(63, 70, 80, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.gp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.gp-media {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: var(--sand);
}
.gp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  will-change: transform;
}
.gp-info {
  padding: 22px 24px;
}
.gp-info h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 4px;
  color: var(--charcoal);
}
.gp-role {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--terracotta-ink);
  margin-bottom: 12px;
  display: block;
}
.gp-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 16px;
}
.gp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gp-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid rgba(63, 70, 80, 0.1);
}

/* ============ FIRST VISIT ============ */
#first-visit {
  background: #7A2E1E;
  color: #FBEADF;
}
#first-visit.tint::before {
  display: none;
}
#first-visit.sec {
  padding-top: var(--s10);
  padding-bottom: var(--s10);
}
.fv-title {
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  line-height: 1.04;
  margin: 0 0 var(--s5);
  color: #FBEADF;
}
.fv-title em {
  font-style: italic;
  color: #F2C79B;
}
.fv-track {
  position: relative;
  height: 3px;
  border-radius: 3px;
  background: rgba(251, 234, 223, 0.22);
  margin-bottom: var(--s6);
}
.fv-fill {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #F5C266, #EE8B3D 45%, #D9531C);
  will-change: transform;
}
.fv-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5) var(--s4);
}
.fv-step {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fv-step:hover {
  transform: translateY(-4px);
}
.fv-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--s3);
  background: rgba(251, 234, 223, 0.14);
  color: rgba(251, 234, 223, 0.6);
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fv-step.on .fv-num {
  color: #5A1E11;
  transform: scale(1.06);
}
.fv-step:nth-child(1).on .fv-num { background: #F5C266; }
.fv-step:nth-child(2).on .fv-num { background: #EFA556; }
.fv-step:nth-child(3).on .fv-num { background: #E8813C; }
.fv-step:nth-child(4).on .fv-num { background: #DE6A2E; }
.fv-step h3 {
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #FBEADF;
}
.fv-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(251, 234, 223, 0.78);
  margin: 0 0 12px;
  max-width: none;
}
.fv-step p:last-child { margin-bottom: 0; }
.fv-step.on p { color: rgba(251, 234, 223, 0.9); }
.fv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--s8);
}
.fv-go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  background: #EE8B3D;
  color: #4A1C0E;
  border: 1.6px solid #EE8B3D;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, gap 0.3s;
}
.fv-go svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fv-go:hover {
  background: #F09B52;
  transform: translateY(-2px);
  gap: 14px;
}
.fv-alt {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  background: transparent;
  color: #FBEADF;
  border: 1.6px solid rgba(251, 234, 223, 0.5);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}
.fv-alt:hover {
  transform: translateY(-2px);
  border-color: #FBEADF;
  background: rgba(251, 234, 223, 0.1);
}

/* ============ SOCIAL / REVIEWS ============ */
#social {
  background: transparent;
}
#social.sec {
  padding-top: var(--s8);
  padding-bottom: var(--s10);
}
.soc-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: var(--s6);
  align-items: end;
  margin-bottom: var(--s5);
}
.soc-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--charcoal);
}
.soc-intro {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0 0 6px;
  max-width: 46ch;
}
.soc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.soc {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
}
.soc:hover {
  transform: translateY(-4px);
}
.soc-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex: none;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.soc-ico svg {
  width: 28px;
  height: 28px;
}
.soc b {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 5px;
}
.soc-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}
.soc-arrow {
  width: 26px;
  height: 26px;
  flex: none;
}
.soc-arrow svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.soc:hover .soc-arrow svg {
  transform: translateX(6px);
}
.soc.fb {
  background: #1877F2;
  box-shadow: 0 14px 34px rgba(24, 119, 242, 0.28);
}
.soc.fb:hover {
  box-shadow: 0 20px 44px rgba(24, 119, 242, 0.36);
}
.soc.fb .soc-ico svg {
  fill: #fff;
}
.soc.gr {
  background: #1E4A4A;
  box-shadow: 0 14px 34px rgba(30, 74, 74, 0.3);
}
.soc.gr:hover {
  box-shadow: 0 20px 44px rgba(30, 74, 74, 0.4);
}
.soc.gr .soc-ico {
  background: #fff;
}
.soc-stars {
  display: inline-flex;
  gap: 2px;
  vertical-align: -1px;
  margin-right: 7px;
}
.soc-stars svg {
  width: 13px;
  height: 13px;
  fill: #FBBC05;
}

/* ============ LOCAL SEO ============ */
#local {
  background: transparent;
}
#local.sec {
  padding-top: var(--s10);
  padding-bottom: var(--s10);
}
.loc {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: var(--s8);
  align-items: start;
}
.loc-l h2 {
  margin-bottom: var(--s3);
}
.loc-l p {
  font-size: 0.94rem;
  color: var(--slate);
  margin: 0 0 var(--s4);
  max-width: 38ch;
}
.loc-pin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(63, 70, 80, 0.1);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.loc-pin:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}
.loc-pin .ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex: none;
  background: #C2452F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-pin .ico svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.loc-pin b {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--charcoal);
}
.loc-pin span {
  font-size: 0.8rem;
  color: var(--slate);
}
.loc-bands {
  display: grid;
  gap: var(--s5);
}
.loc-band h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-ink);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(142, 68, 51, 0.22);
}
.loc-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px var(--s6);
}
.loc-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  font-size: 0.94rem;
}
.loc-row .nm {
  color: var(--charcoal);
  white-space: nowrap;
}
.loc-row .pc {
  font-size: 0.78rem;
  color: var(--slate);
}
.loc-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(63, 70, 80, 0.32);
  transform: translateY(-4px);
}
.loc-row .tm {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--terracotta-ink);
  white-space: nowrap;
}
.loc-row.home .nm { font-weight: 600; }
.loc-row.home .tm { color: #8E4433; }
.loc-note {
  font-size: 0.8rem;
  color: var(--slate);
  margin: var(--s4) 0 0;
}

/* ============ CLOSING CTA BAND ============ */
#book-cta {
  position: relative;
  overflow: hidden;
  padding: var(--s8) 0;
  background: linear-gradient(150deg, #6E2F22 0%, #9E4B35 58%, #7C3826 100%);
}
#book-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(46% 80% at 88% 10%, rgba(245, 194, 102, 0.22), transparent 62%);
}
#book-cta .wrap {
  position: relative;
  z-index: 1;
}
.bk {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: var(--s6);
  align-items: center;
}
.bk-title {
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  margin: 0 0 10px;
  max-width: 26ch;
  color: #fff;
}
.bk-title em {
  font-style: italic;
  font-weight: 700;
  color: #F7CFA8;
}
.bk-lead {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin: 0;
}
.bk-foot {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 14px 0 0;
  max-width: 56ch;
}
.bk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.bk-go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
  padding: 15px 26px;
  border-radius: 999px;
  background: #F5C266;
  color: #4A1C0E;
  border: 1.6px solid #F5C266;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, box-shadow 0.3s;
}
.bk-go svg {
  width: 17px;
  height: 17px;
  stroke: #4A1C0E;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bk-go:hover {
  background: #F8D28A;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}
.bk-alt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
  padding: 15px 24px;
  border-radius: 999px;
  background: transparent;
  color: #FBEADF;
  border: 1.6px solid rgba(251, 234, 223, 0.38);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}
.bk-alt:hover {
  transform: translateY(-3px);
  background: rgba(251, 234, 223, 0.12);
  border-color: #FBEADF;
}

/* ============ FAQ ACCORDIONS (Home) ============ */
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
details.qa {
  background: #FFF;
  border: 1px solid rgba(63, 70, 80, 0.1);
  border-radius: 14px;
  overflow: hidden;
}
details.qa summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 18px 22px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}
details.qa summary::-webkit-details-marker {
  display: none;
}
details.qa summary span {
  flex: 1;
}
details.qa summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--terracotta-ink);
  transition: transform 0.3s;
}
details.qa[open] summary::after {
  transform: rotate(45deg);
}
details.qa .qa-body {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--slate);
}

/* ============ RESPONSIVE (Home) ============ */
@media (max-width: 1000px) {
  .qf-card { grid-template-columns: repeat(2, 1fr); }
  .qf-ecg { display: none; }
  .fv-steps { grid-template-columns: repeat(2, 1fr); }
  .bk { grid-template-columns: 1fr; gap: var(--s4); }
  .bk-actions { justify-content: flex-start; }
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: var(--s10) var(--s5) var(--s8); order: 2; }
  .hero-media { order: 1; min-height: 52vh; }
  .hero-h1 { max-width: 20ch; }
  .about-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .loc { grid-template-columns: 1fr; gap: var(--s5); }
}
@media (max-width: 900px) {
  .soc-head { grid-template-columns: 1fr; gap: var(--s3); align-items: start; }
  .soc-grid { grid-template-columns: 1fr; }
  .gp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .mc-band { grid-template-columns: 1fr; gap: var(--s5); }
  .mc-stage { order: 2; justify-content: flex-start; }
  .mc-card { max-width: 300px; }
}
@media (max-width: 600px) {
  .gp-grid { grid-template-columns: 1fr; }
  .tz-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .fv-steps { grid-template-columns: 1fr; gap: var(--s4); }
  .fv-step { display: grid; grid-template-columns: auto 1fr; gap: var(--s3); align-items: start; }
  .fv-num { margin-bottom: 0; }
  .fv-track { display: none; }
  .loc-rows { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-media { min-height: 42vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-book, .hero-call { justify-content: center; }
  .qf-card { grid-template-columns: 1fr; padding: 20px; }
  .bk-actions { flex-direction: column; align-items: stretch; }
  .bk-go, .bk-alt { justify-content: center; }
}
@media (max-width: 480px) {
  .soc { grid-template-columns: auto minmax(0, 1fr); padding: 20px; }
  .soc-arrow { display: none; }
  .soc-ico { width: 50px; height: 50px; }
  .soc-ico svg { width: 23px; height: 23px; }
}
