/* ═══════════════════════════════════════════════════════
   ABC KIDS ACADEMY — MAIN STYLESHEET v2.0
   Design tokens · Reset · Global · Components · Pages
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* ══ DESIGN TOKENS ══ */
:root {
  --forest:      #102D23;
  --forest-mid:  #152B1E;
  --moss:        #193E39;
  --fern:        #2E5E4E;
  --sage:        #4A7C6A;
  --mist:        #A8D5BA;
  --amber:       #E8A838;
  --amber-deep:  #C8881A;
  --amber-light: #F5C96A;
  --ink:         #0A1A12;
  --text:        #1C2E24;
  --text-mid:    #3A5644;
  --text-soft:   #637A6B;
  --parchment:   #F4EFE6;
  --cream:       #FAF7F2;
  --white:       #FEFCF9;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --header-h:    90px;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1rem; line-height: 1.7;
  background: var(--white); color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .016;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ══ SCROLL REVEAL ══ */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .85s var(--ease),transform .85s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.rd1 { transition-delay:.08s; } .rd2 { transition-delay:.18s; } .rd3 { transition-delay:.3s; } .rd4 { transition-delay:.44s; }

/* ══ LAYOUT ══ */
.abc-inner { max-width:1320px; margin:0 auto; padding:clamp(72px,10vw,128px) clamp(24px,6vw,80px); }

/* ══ TYPOGRAPHY PRIMITIVES ══ */
.abc-eyebrow { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.abc-eyebrow-line { width:26px; height:2px; background:var(--amber); border-radius:2px; flex-shrink:0; }
.abc-eyebrow-text { font-size:.78rem; font-weight:600; letter-spacing:1.8px; text-transform:uppercase; color:var(--amber); }
.abc-title { font-family:"Cormorant Garamond",serif; font-size:clamp(2.6rem,3.8vw,3.9rem); font-weight:300; line-height:1.07; letter-spacing:-1px; color:var(--forest); margin-bottom:20px; }
.abc-title em { font-style:italic; color:var(--fern); }
.abc-body { font-size:clamp(1.05rem,1.2vw,1.1rem); line-height:1.85; color:var(--text-mid); }

/* ══ BUTTONS ══ */
.abc-btn-amber { padding:16px 36px; border-radius:50px; background:var(--amber); color:var(--ink); font-weight:600; font-size:1rem; letter-spacing:.3px; text-decoration:none; display:inline-flex; align-items:center; gap:9px; box-shadow:0 8px 28px rgba(232,168,56,.38); transition:background .25s,transform .2s,box-shadow .25s; border:none; }
.abc-btn-amber:hover { background:var(--amber-light); transform:translateY(-2px); box-shadow:0 14px 36px rgba(232,168,56,.48); color:var(--ink); }
.abc-btn-ghost { padding:15px 30px; border-radius:50px; border:1px solid rgba(255,255,255,.22); color:rgba(255,255,255,.85); background:transparent; font-weight:500; font-size:1rem; text-decoration:none; display:inline-flex; align-items:center; gap:9px; transition:border-color .25s,background .25s,color .25s; }
.abc-btn-ghost:hover { border-color:rgba(255,255,255,.55); background:rgba(255,255,255,.06); color:#fff; }
.abc-btn-outline-forest { padding:15px 30px; border-radius:50px; border:1px solid rgba(46,94,78,.35); color:var(--fern); background:transparent; font-weight:500; font-size:1rem; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; gap:9px; transition:border-color .25s,background .25s,color .25s; }
.abc-btn-outline-forest:hover { border-color:var(--fern); background:rgba(46,94,78,.07); color:var(--forest); }

/* ══ KEYFRAMES ══ */
@keyframes aUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes imgReveal { from{opacity:0;transform:scale(1.06)} to{opacity:1;transform:scale(1)} }
@keyframes mScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.abc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
}
.abc-header.scrolled {
  background: rgba(10,26,18,.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(168,213,186,.1);
}
.abc-header-inner {
  max-width: 1750px; margin: 0 auto;
  height: var(--header-h);
  padding: 0 clamp(20px,5vw,60px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
/* Logo */
.abc-logo { display:flex; align-items:center; gap:11px; text-decoration:none; flex-shrink:0; }
.abc-logo img { height:42px; width:auto; }
.abc-logo-text { display:flex; flex-direction:column; gap:2px; line-height:1; }
.abc-logo-name { font-family:"Cormorant Garamond",serif; font-size:1.08rem; font-weight:600; color:rgba(255,255,255,.92); letter-spacing:.05px; }
.abc-logo-sub { font-size:.6rem; font-weight:600; letter-spacing:1.8px; text-transform:uppercase; color:var(--amber); }
/* Nav */
.abc-nav { display:flex; align-items:center; gap:4px; }
.abc-nav a { font-size:.875rem; font-weight:500; color:rgba(255,255,255,.72); padding:8px 14px; border-radius:6px; transition:color .25s,background .25s; }
.abc-nav a:hover, .abc-nav a.active { color:rgba(255,255,255,.96); background:rgba(255,255,255,.07); }
.abc-nav-dropdown { position:relative; }
.abc-nav-dropdown > a::after { content:"▾"; font-size:.65rem; margin-left:4px; opacity:.5; }
.abc-nav-dropdown-menu {
  position:absolute; top:calc(100% + 8px); left:50%;
  transform:translateX(-50%) translateY(-6px);
  background:rgba(10,26,18,.97); backdrop-filter:blur(20px);
  border:1px solid rgba(168,213,186,.12); border-radius:14px;
  padding:10px; min-width:200px;
  opacity:0; pointer-events:none;
  transition:opacity .25s, transform .25s;
  display:flex; flex-direction:column; gap:2px;
}
.abc-nav-dropdown:hover .abc-nav-dropdown-menu { opacity:1; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.abc-nav-dropdown-menu a { font-size:.85rem; color:rgba(255,255,255,.65); padding:9px 14px; border-radius:8px; display:block; transition:background .2s,color .2s; }
.abc-nav-dropdown-menu a:hover { background:rgba(255,255,255,.07); color:rgba(255,255,255,.9); }
/* CTA */
.abc-header-cta { font-family:"Instrument Sans",sans-serif; font-size:.82rem; font-weight:600; letter-spacing:.4px; padding:11px 22px; border-radius:50px; background:var(--amber); color:var(--ink); border:none; box-shadow:0 6px 20px rgba(232,168,56,.35); transition:background .25s,transform .2s,box-shadow .25s; white-space:nowrap; text-decoration:none; }
.abc-header-cta:hover { background:var(--amber-light); color:var(--ink); transform:translateY(-1px); box-shadow:0 10px 28px rgba(232,168,56,.45); }
/* Hamburger */
.abc-hamburger { display:none; width:42px; height:42px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); border-radius:50%; align-items:center; justify-content:center; flex-direction:column; gap:5px; flex-shrink:0; }
.abc-hamburger span { width:18px; height:1.5px; background:rgba(255,255,255,.85); border-radius:2px; transition:transform .3s,opacity .3s; display:block; }
.abc-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.abc-hamburger.open span:nth-child(2) { opacity:0; }
.abc-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
/* Mobile menu */
.abc-mobile-menu {
  position:fixed; top:var(--header-h); left:0; right:0; bottom:0; z-index:8900;
  background:rgba(10,26,18,.97); backdrop-filter:blur(20px);
  padding:40px clamp(24px,6vw,60px);
  display:flex; flex-direction:column; gap:8px;
  transform:translateX(100%); transition:transform .4s var(--ease);
}
.abc-mobile-menu.open { transform:translateX(0); }
.abc-mobile-menu a { font-size:1.5rem; font-family:"Cormorant Garamond",serif; font-weight:300; color:rgba(255,255,255,.75); padding:14px 0; border-bottom:1px solid rgba(255,255,255,.06); display:block; transition:color .2s; }
.abc-mobile-menu a:hover { color:var(--amber-light); }
.abc-mobile-menu .abc-btn-amber { margin-top:20px; width:100%; text-align:center; justify-content:center; font-family:"Instrument Sans",sans-serif; }
@media(max-width:900px) {
  .abc-nav, .abc-header-cta { display:none; }
  .abc-hamburger { display:flex; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.abc-footer { background:var(--ink); padding:clamp(60px,8vw,96px) clamp(24px,6vw,80px) clamp(32px,4vw,48px); }
.abc-footer-inner { max-width:1320px; margin:0 auto; }
.abc-footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:clamp(28px,4vw,60px); padding-bottom:clamp(40px,5vw,60px); border-bottom:1px solid rgba(255,255,255,.06); margin-bottom:32px; }
.abc-footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.abc-footer-brand img { height:38px; width:auto; }
.abc-footer-brand-name { font-family:"Cormorant Garamond",serif; font-size:1.15rem; color:var(--white); }
.abc-footer-tagline { font-size:.92rem; color:rgba(255,255,255,.3); line-height:1.78; max-width:230px; }
.abc-footer-col h4 { font-size:.72rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--amber); margin-bottom:18px; }
.abc-footer-col a { display:block; font-size:.92rem; color:rgba(255,255,255,.4); margin-bottom:10px; transition:color .2s; }
.abc-footer-col a:hover { color:rgba(255,255,255,.78); }
.abc-footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.abc-footer-copy { font-size:.82rem; color:rgba(255,255,255,.2); }
.abc-footer-legal { display:flex; gap:20px; }
.abc-footer-legal a { font-size:.82rem; color:rgba(255,255,255,.2); transition:color .2s; }
.abc-footer-legal a:hover { color:rgba(255,255,255,.48); }
@media(max-width:860px) { .abc-footer-grid { grid-template-columns:1fr 1fr; gap:36px; } }
@media(max-width:500px) { .abc-footer-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.abc-marquee { background:var(--parchment); border-top:1px solid rgba(16,45,35,.1); border-bottom:1px solid rgba(16,45,35,.1); padding:18px 0; overflow:hidden; white-space:nowrap; }
.abc-marquee-track { display:inline-flex; animation:mScroll 32s linear infinite; }
.abc-marquee-item { display:inline-flex; align-items:center; gap:14px; padding:0 44px; font-size:.82rem; font-weight:600; letter-spacing:1.6px; text-transform:uppercase; color:var(--fern); }
.abc-marquee-dot { width:5px; height:5px; border-radius:50%; background:var(--amber); flex-shrink:0; }

/* ══════════════════════════════════════════
   HERO (Homepage)
══════════════════════════════════════════ */
.abc-hero { position:relative; min-height:100svh; display:grid; grid-template-columns:1fr 1fr; background:var(--forest); overflow:hidden; }
.abc-hero::before { content:""; position:absolute; inset:0; z-index:1; background:radial-gradient(ellipse 75% 65% at 28% 58%,rgba(46,94,78,.5) 0%,transparent 65%),radial-gradient(ellipse 45% 55% at 88% 18%,rgba(232,168,56,.05) 0%,transparent 55%); pointer-events:none; }
.abc-hero-ring { position:absolute; top:-60px; right:-60px; z-index:1; width:520px; height:520px; pointer-events:none; opacity:.05; }
.abc-hero-left { position:relative; z-index:3; padding:clamp(110px,15vh,175px) clamp(28px,6vw,80px) clamp(60px,8vh,100px); display:flex; flex-direction:column; justify-content:center; }
.abc-hero-eyebrow { display:inline-flex; align-items:center; gap:12px; margin-bottom:36px; opacity:0; animation:aUp .8s var(--ease) .3s forwards; }
.abc-hero-eyebrow-line { width:36px; height:1px; background:var(--amber); }
.abc-hero-eyebrow-text { font-size:.78rem; font-weight:600; letter-spacing:2.2px; text-transform:uppercase; color:var(--amber); }
.abc-hero-title { font-family:"Cormorant Garamond",serif; font-weight:300; font-size:clamp(3.4rem,5.5vw,6.2rem); line-height:.92; letter-spacing:-2px; color:var(--white); margin-bottom:28px; opacity:0; animation:aUp .95s var(--ease) .5s forwards; }
.abc-hero-title em { font-style:italic; color:var(--amber-light); display:block; }
.abc-hero-body { font-size:clamp(1.05rem,1.4vw,1.15rem); line-height:1.82; color:rgba(255,255,255,.62); max-width:440px; margin-bottom:44px; opacity:0; animation:aUp .95s var(--ease) .68s forwards; }
.abc-hero-actions { display:flex; align-items:center; gap:14px; flex-wrap:wrap; opacity:0; animation:aUp .9s var(--ease) .82s forwards; }
.abc-hero-trust { margin-top:52px; padding-top:28px; border-top:1px solid rgba(255,255,255,.07); display:flex; gap:clamp(20px,3.5vw,44px); flex-wrap:wrap; opacity:0; animation:aUp .8s var(--ease) 1s forwards; }
.abc-hero-trust-num { font-family:"Cormorant Garamond",serif; font-size:clamp(1.6rem,2.2vw,2rem); font-weight:300; color:var(--amber-light); display:block; line-height:1; }
.abc-hero-trust-label { font-size:.78rem; color:rgba(255,255,255,.38); letter-spacing:1px; text-transform:uppercase; margin-top:5px; display:block; }
.abc-hero-scroll { position:absolute; bottom:36px; left:clamp(28px,6vw,80px); z-index:3; display:flex; align-items:center; gap:10px; opacity:0; animation:aUp .8s var(--ease) 1.3s forwards; }
.abc-hero-scroll-line { width:1px; height:36px; background:linear-gradient(to bottom,transparent,rgba(255,255,255,.28)); }
.abc-hero-scroll-text { font-size:.68rem; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,.25); }
.abc-hero-right { position:relative; z-index:2; overflow:hidden; }
.abc-hero-img { width:100%; height:100%; object-fit:cover; display:block; opacity:0; animation:imgReveal 1.3s var(--ease) .35s forwards; }
.abc-hero-img-fade { position:absolute; inset:0; background:linear-gradient(to right,var(--forest) 0%,rgba(16,45,35,.5) 20%,transparent 52%); }
.abc-hero-badge { position:absolute; bottom:56px; left:-18px; z-index:4; background:rgba(10,26,18,.9); border:1px solid rgba(232,168,56,.22); border-radius:14px; padding:16px 20px; backdrop-filter:blur(12px); opacity:0; animation:aUp .8s var(--ease) 1.1s forwards; }
.abc-hero-badge-label { font-size:.68rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--amber); display:block; margin-bottom:4px; }
.abc-hero-badge-val { font-family:"Cormorant Garamond",serif; font-size:1.6rem; font-weight:300; color:#fff; display:block; line-height:1; }
.abc-hero-badge-sub { font-size:.75rem; color:rgba(255,255,255,.42); }
@media(max-width:860px) {
  .abc-hero { grid-template-columns:1fr; min-height:auto; }
  .abc-hero-left { padding:clamp(96px,14vh,140px) 28px 56px; order:1; }
  .abc-hero-right { order:2; height:clamp(240px,58vw,380px); }
  .abc-hero-badge { left:14px; bottom:18px; }
  .abc-hero-scroll { display:none; }
  .abc-hero-ring { width:260px; height:260px; top:-30px; right:-30px; }
}

/* ══════════════════════════════════════════
   WHY FAMILIES
══════════════════════════════════════════ */
.abc-why { background:var(--white); }
.abc-why-grid { display:grid; grid-template-columns:360px 1fr; gap:clamp(40px,7vw,100px); align-items:start; }
.abc-why-sticky { position:sticky; top:96px; }
.abc-why-sig { display:flex; align-items:center; gap:14px; margin-top:28px; padding-top:24px; border-top:1px solid rgba(16,45,35,.1); }
.abc-why-sig-av { width:46px; height:46px; border-radius:50%; background:#EBF3EC; border:2px solid var(--mist); display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.abc-why-sig-name { font-family:"Cormorant Garamond",serif; font-size:1.08rem; color:var(--forest); display:block; }
.abc-why-sig-role { font-size:.82rem; color:var(--text-soft); }
.abc-why-cards { display:flex; flex-direction:column; gap:4px; }
.abc-why-card { border-radius:18px; padding:clamp(24px,3vw,36px) clamp(24px,3vw,40px); border:1px solid transparent; transition:background .3s,border-color .3s,transform .3s; }
.abc-why-card:hover { background:#EBF3EC; border-color:rgba(16,45,35,.08); transform:translateX(6px); }
.abc-why-card-num { font-family:"Cormorant Garamond",serif; font-size:2rem; color:var(--amber-deep); letter-spacing:1px; margin-bottom:10px; display:block; }
.abc-why-card h3 { font-family:"Cormorant Garamond",serif; font-size:clamp(1.35rem,1.8vw,1.6rem); font-weight:400; color:var(--forest); margin-bottom:10px; line-height:1.25; }
.abc-why-card p { font-size:clamp(1rem,1.1vw,1.05rem); color:var(--text-mid); line-height:1.8; }
@media(max-width:900px) { .abc-why-grid { grid-template-columns:1fr; gap:48px; } .abc-why-sticky { position:static; } }

/* ══════════════════════════════════════════
   PROGRAMS MOSAIC (Homepage)
══════════════════════════════════════════ */
.abc-programs { background:var(--parchment); }
.abc-programs-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:clamp(36px,5vw,60px); gap:20px; flex-wrap:wrap; }
.abc-mosaic { display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:460px 300px; gap:14px; }
.abc-pc { border-radius:28px; overflow:hidden; position:relative; cursor:pointer; }
.abc-pc:nth-child(1) { grid-row:1/3; }
.abc-pc:nth-child(4) { grid-column:2/4; }
.abc-pc img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s var(--ease); }
.abc-pc:hover img { transform:scale(1.04); }
.abc-pc-grad { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,26,18,.92) 0%,rgba(10,26,18,.12) 55%,transparent 100%); }
.abc-pc-body { position:absolute; bottom:0; left:0; right:0; padding:clamp(20px,3vw,32px); }
.abc-pc-age { font-size:.75rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--amber-light); display:block; margin-bottom:7px; }
.abc-pc-title { font-family:"Cormorant Garamond",serif; font-size:clamp(1.3rem,1.9vw,1.75rem); font-weight:300; color:#fff; display:block; margin-bottom:14px; line-height:1.15; }
.abc-pc:nth-child(1) .abc-pc-title { font-size:clamp(1.7rem,2.5vw,2.3rem); }
.abc-pc-link { display:inline-flex; align-items:center; gap:7px; font-size:.78rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.55); transition:color .25s,gap .25s; }
.abc-pc-link:hover { color:var(--amber-light); gap:12px; }
@media(max-width:900px) { .abc-mosaic { grid-template-columns:1fr 1fr; grid-template-rows:auto; } .abc-pc:nth-child(1) { grid-row:auto; grid-column:1/3; aspect-ratio:1.6; } .abc-pc:nth-child(4) { grid-column:1/3; } .abc-pc { aspect-ratio:1; } }
@media(max-width:540px) { .abc-mosaic { grid-template-columns:1fr; } .abc-pc:nth-child(1),.abc-pc:nth-child(4) { grid-column:auto; } .abc-pc { aspect-ratio:1.2; } }

/* ══════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════ */
.abc-philo { background:var(--ink); position:relative; overflow:hidden; }
.abc-philo::before { content:""; position:absolute; inset:0; background:radial-gradient(ellipse 65% 80% at 0% 50%,rgba(46,94,78,.22) 0%,transparent 60%),radial-gradient(ellipse 40% 55% at 100% 80%,rgba(232,168,56,.05) 0%,transparent 55%); pointer-events:none; }
.abc-philo-grid { display:grid; grid-template-columns:1fr 1px 1fr; gap:clamp(40px,5vw,80px); align-items:center; }
.abc-philo-div { background:linear-gradient(to bottom,transparent,rgba(168,213,186,.12),transparent); align-self:stretch; }
.abc-philo-eyebrow { font-size:.78rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--amber); display:block; margin-bottom:20px; }
.abc-philo-quote { font-family:"Cormorant Garamond",serif; font-size:clamp(1.9rem,2.8vw,2.9rem); font-weight:300; font-style:italic; color:var(--white); line-height:1.32; letter-spacing:-.3px; margin-bottom:32px; }
.abc-philo-attr { font-size:.82rem; color:rgba(255,255,255,.32); letter-spacing:1px; }
.abc-philo-stats { display:grid; grid-template-columns:repeat(3,1fr); margin-top:48px; border-top:1px solid rgba(255,255,255,.06); padding-top:36px; }
.abc-philo-stat { padding:0 clamp(10px,2vw,24px); border-right:1px solid rgba(255,255,255,.06); }
.abc-philo-stat:first-child { padding-left:0; } .abc-philo-stat:last-child { border-right:none; }
.abc-philo-stat-num { font-family:"Cormorant Garamond",serif; font-size:clamp(2.1rem,3vw,3rem); font-weight:300; color:var(--amber-light); display:block; line-height:1; margin-bottom:6px; }
.abc-philo-stat-label { font-size:.75rem; color:rgba(255,255,255,.32); letter-spacing:1px; text-transform:uppercase; }
.abc-philo-r-eyebrow { font-size:.75rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.28); display:block; margin-bottom:20px; }
.abc-philo-heading { font-family:"Cormorant Garamond",serif; font-size:clamp(1.9rem,2.6vw,2.7rem); font-weight:300; color:var(--white); line-height:1.15; margin-bottom:6px; }
.abc-philo-heading em { font-style:italic; color:var(--amber-light); }
.abc-philo-list { margin-top:26px; }
.abc-philo-item { display:grid; grid-template-columns:22px 1fr; gap:16px; align-items:start; padding:20px 0; border-bottom:1px solid rgba(255,255,255,.05); }
.abc-philo-item:last-child { border-bottom:none; }
.abc-philo-ico { width:22px; height:22px; border-radius:50%; border:1px solid rgba(232,168,56,.32); display:flex; align-items:center; justify-content:center; margin-top:2px; flex-shrink:0; }
.abc-philo-item-title { font-family:"Cormorant Garamond",serif; font-size:1.18rem; color:var(--white); display:block; margin-bottom:4px; }
.abc-philo-item-desc { font-size:.95rem; color:rgba(255,255,255,.42); line-height:1.75; }
@media(max-width:900px) { .abc-philo-grid { grid-template-columns:1fr; gap:44px; } .abc-philo-div { display:none; } }

/* ══════════════════════════════════════════
   EXCELLENCE
══════════════════════════════════════════ */
.abc-ex { background:var(--cream); }
.abc-ex-grid { display:grid; grid-template-columns:54% 1fr; gap:clamp(40px,6vw,80px); align-items:center; }
.abc-ex-imgs { position:relative; }
.abc-ex-main { width:100%; aspect-ratio:.88; object-fit:cover; border-radius:28px; display:block; box-shadow:0 40px 80px rgba(10,26,18,.12); }
.abc-ex-inset { position:absolute; bottom:-26px; right:-26px; width:46%; aspect-ratio:1; object-fit:cover; border-radius:18px; border:5px solid var(--cream); box-shadow:0 20px 48px rgba(10,26,18,.14); }
.abc-ex-chip { position:absolute; top:26px; right:-14px; background:var(--amber); border-radius:14px; padding:14px 18px; }
.abc-ex-chip-num { font-family:"Cormorant Garamond",serif; font-size:2.1rem; font-weight:300; color:var(--ink); display:block; line-height:1; }
.abc-ex-chip-label { font-size:.68rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:rgba(10,26,18,.65); display:block; margin-top:2px; }
.abc-ex-content { padding-bottom:36px; }
.abc-ex-pillars { margin-top:32px; }
.abc-ex-pillar { display:flex; gap:18px; align-items:flex-start; padding:18px 0; border-bottom:1px solid rgba(16,45,35,.09); }
.abc-ex-pillar:last-child { border-bottom:none; }
.abc-ep-n { font-family:"Cormorant Garamond",serif; font-size:1.5rem; color:var(--amber-deep); flex-shrink:0; min-width:22px; letter-spacing:1px; }
.abc-ep-t { font-family:"Cormorant Garamond",serif; font-size:1.2rem; color:var(--forest); display:block; margin-bottom:4px; }
.abc-ep-d { font-size:.95rem; color:var(--text-soft); line-height:1.72; }
@media(max-width:900px) { .abc-ex-grid { grid-template-columns:1fr; gap:72px; } .abc-ex-inset { right:-12px; bottom:-12px; } .abc-ex-chip { right:10px; } .abc-ex-content { padding-bottom:0; } }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.abc-faq { background:var(--white); }
.abc-faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(16px,2vw,24px); margin-top:clamp(32px,4vw,52px); }
.abc-faq-item { background:var(--parchment); border-radius:18px; padding:clamp(24px,3vw,36px); border:1px solid rgba(16,45,35,.07); transition:box-shadow .3s,transform .3s; cursor:pointer; }
.abc-faq-item:hover { box-shadow:0 12px 40px rgba(10,26,18,.08); transform:translateY(-2px); }
.abc-faq-q { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
.abc-faq-q-text { font-family:"Cormorant Garamond",serif; font-size:clamp(1.15rem,1.6vw,1.35rem); font-weight:400; color:var(--forest); line-height:1.3; }
.abc-faq-icon { width:28px; height:28px; border-radius:50%; background:var(--amber); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; transition:transform .3s; }
.abc-faq-item.open .abc-faq-icon { transform:rotate(45deg); }
.abc-faq-a { font-size:clamp(1rem,1.1vw,1.05rem); color:var(--text-mid); line-height:1.82; margin-top:16px; display:none; }
.abc-faq-item.open .abc-faq-a { display:block; }
@media(max-width:700px) { .abc-faq-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.abc-testi { background:var(--forest); }
.abc-testi-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:clamp(36px,5vw,60px); gap:20px; flex-wrap:wrap; }
.abc-testi-title { font-family:"Cormorant Garamond",serif; font-size:clamp(2.6rem,3.8vw,3.9rem); font-weight:300; line-height:1.07; letter-spacing:-1px; color:var(--white); margin-bottom:0; }
.abc-testi-title em { font-style:italic; color:var(--amber-light); }
.abc-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.abc-tq { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:28px; padding:clamp(28px,3vw,46px) clamp(24px,3vw,36px); position:relative; overflow:hidden; transition:background .3s; }
.abc-tq:hover { background:rgba(255,255,255,.07); }
.abc-tq-glyph { font-family:"Cormorant Garamond",serif; font-size:6rem; line-height:.8; color:rgba(232,168,56,.09); position:absolute; top:14px; right:22px; pointer-events:none; user-select:none; }
.abc-tq-stars { display:flex; gap:3px; margin-bottom:20px; }
.abc-tq-star { width:13px; height:13px; background:var(--amber); clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.abc-tq-text { font-family:"Cormorant Garamond",serif; font-size:clamp(1.1rem,1.4vw,1.25rem); font-weight:300; font-style:italic; line-height:1.72; color:rgba(255,255,255,.8); margin-bottom:30px; }
.abc-tq-author { display:flex; align-items:center; gap:12px; }
.abc-tq-av { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:1.05rem; flex-shrink:0; }
.abc-tq-name { font-size:.95rem; font-weight:600; color:rgba(255,255,255,.84); display:block; }
.abc-tq-role { font-size:.78rem; color:rgba(255,255,255,.35); }
@media(max-width:900px) { .abc-testi-grid { grid-template-columns:1fr; gap:14px; } .abc-testi-head { flex-direction:column; align-items:flex-start; } }

/* ══════════════════════════════════════════
   LOCATIONS
══════════════════════════════════════════ */
.abc-locs { background:var(--parchment); }
.abc-locs-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:clamp(32px,4vw,52px); }
.abc-loc { background:var(--white); border-radius:28px; padding:clamp(32px,4vw,46px); border:1px solid rgba(16,45,35,.08); display:flex; flex-direction:column; gap:18px; transition:box-shadow .3s,transform .3s; }
.abc-loc:hover { box-shadow:0 20px 56px rgba(10,26,18,.08); transform:translateY(-4px); }
.abc-loc-tag { display:flex; align-items:center; gap:8px; }
.abc-loc-dot { width:7px; height:7px; border-radius:50%; background:var(--fern); }
.abc-loc-tag-label { font-size:.75rem; font-weight:600; letter-spacing:1.8px; text-transform:uppercase; color:var(--fern); }
.abc-loc h3 { font-family:"Cormorant Garamond",serif; font-size:clamp(1.7rem,2.2vw,2.3rem); font-weight:300; color:var(--forest); line-height:1.12; }
.abc-loc p { font-size:clamp(1rem,1.1vw,1.05rem); color:var(--text-mid); line-height:1.8; }
.abc-loc-hours { display:flex; gap:clamp(16px,3vw,28px); flex-wrap:wrap; padding-top:16px; border-top:1px solid rgba(16,45,35,.08); }
.abc-lh-label { font-size:.7rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--amber-deep); display:block; margin-bottom:3px; }
.abc-lh-val { font-size:.95rem; color:var(--text-mid); }
.abc-loc-cta { margin-top:auto; display:inline-flex; align-items:center; gap:8px; font-size:.82rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--fern); transition:gap .25s,color .25s; }
.abc-loc-cta:hover { gap:13px; color:var(--forest); }
@media(max-width:680px) { .abc-locs-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.abc-cta-wrap { background:var(--white); padding:clamp(40px,5vw,72px) clamp(24px,6vw,80px); }
.abc-cta-box { max-width:1320px; margin:0 auto; background:var(--forest); border-radius:36px; overflow:hidden; display:grid; grid-template-columns:1fr 1fr; min-height:440px; position:relative; }
.abc-cta-box::before { content:""; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 12% 50%,rgba(46,94,78,.35) 0%,transparent 60%); pointer-events:none; }
.abc-cta-left { padding:clamp(48px,5vw,80px); display:flex; flex-direction:column; justify-content:center; position:relative; z-index:1; }
.abc-cta-title { font-family:"Cormorant Garamond",serif; font-size:clamp(2.3rem,3.2vw,3.7rem); font-weight:300; line-height:1.1; letter-spacing:-.5px; color:var(--white); margin:14px 0 14px; }
.abc-cta-title em { font-style:italic; color:var(--amber-light); }
.abc-cta-body { font-size:clamp(1.05rem,1.2vw,1.1rem); line-height:1.82; color:rgba(255,255,255,.52); margin-bottom:36px; max-width:340px; }
.abc-cta-btns { display:flex; gap:12px; flex-wrap:wrap; }
.abc-cta-right { position:relative; overflow:hidden; }
.abc-cta-right img { width:100%; height:100%; object-fit:cover; display:block; opacity:.6; }
.abc-cta-grad { position:absolute; inset:0; background:linear-gradient(to right,var(--forest) 0%,transparent 45%); }
@media(max-width:860px) { .abc-cta-box { grid-template-columns:1fr; } .abc-cta-left { padding:clamp(40px,5vw,56px) clamp(24px,5vw,44px); } .abc-cta-right { height:220px; } }

/* ══════════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════════ */
.abc-inner-hero { background:var(--forest); position:relative; overflow:hidden; min-height:58vh; display:flex; align-items:center; }
.abc-inner-hero .abc-inner { padding-top:clamp(120px,16vh,180px); padding-bottom:clamp(72px,10vh,120px); position:relative; z-index:2; }
.abc-inner-hero-bg { position:absolute; inset:0; }
.abc-inner-hero-bg img { width:100%; height:100%; object-fit:cover; opacity:.2; }
.abc-inner-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,var(--forest) 0%,rgba(16,45,35,.82) 55%,rgba(16,45,35,.68) 100%); }
.abc-page-title { font-family:"Cormorant Garamond",serif; font-weight:300; font-size:clamp(3.2rem,5.5vw,6rem); line-height:.92; letter-spacing:-2px; color:var(--white); margin-bottom:28px; max-width:700px; opacity:0; animation:aUp .95s var(--ease) .5s forwards; }
.abc-page-title em { font-style:italic; color:var(--amber-light); }
.abc-page-intro { font-size:clamp(1.05rem,1.4vw,1.15rem); line-height:1.82; color:rgba(255,255,255,.6); max-width:520px; opacity:0; animation:aUp .9s var(--ease) .68s forwards; }

/* ══════════════════════════════════════════
   PROGRAMS PAGE — STICKY NAV
══════════════════════════════════════════ */
.abc-prog-subnav { position:sticky; top:var(--header-h); z-index:800; background:rgba(250,247,242,.96); backdrop-filter:blur(16px); border-bottom:1px solid rgba(16,45,35,.1); transform:translateY(-100%); opacity:0; transition:transform .45s var(--ease),opacity .4s; pointer-events:none; }
.abc-prog-subnav--visible { transform:translateY(0); opacity:1; pointer-events:auto; }
.abc-prog-subnav-inner { max-width:1320px; margin:0 auto; padding:0 clamp(24px,6vw,80px); display:flex; align-items:center; gap:4px; overflow-x:auto; scrollbar-width:none; }
.abc-prog-subnav-inner::-webkit-scrollbar { display:none; }
.abc-psn-link { padding:16px; font-size:.82rem; font-weight:500; color:var(--text-mid); white-space:nowrap; border-bottom:2px solid transparent; transition:color .25s,border-color .25s; flex-shrink:0; }
.abc-psn-link:hover,.abc-psn-link--active { color:var(--forest); border-bottom-color:var(--amber); }
.abc-psn-cta { margin-left:auto; flex-shrink:0; padding:9px 22px; border-radius:50px; background:var(--amber); color:var(--ink); font-size:.82rem; font-weight:600; transition:background .25s; }
.abc-psn-cta:hover { background:var(--amber-light); }

/* Program sections */
.abc-prog-sec { overflow:hidden; }
.abc-prog-sec--light { background:var(--white); }
.abc-prog-sec--parch { background:var(--parchment); }
.abc-prog-sec--dark { background:var(--forest); }
.abc-prog-layout { display:grid; grid-template-columns:1fr 1fr; gap:clamp(44px,7vw,96px); align-items:center; }
.abc-prog-layout--flip .abc-prog-body { order:2; } .abc-prog-layout--flip .abc-prog-visual { order:1; }
.abc-prog-label { display:inline-flex; align-items:center; gap:9px; font-size:.78rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--fern); border:1px solid rgba(46,94,78,.18); background:rgba(46,94,78,.05); padding:7px 14px; border-radius:50px; margin-bottom:20px; }
.abc-prog-dot { width:6px; height:6px; border-radius:50%; background:var(--fern); flex-shrink:0; }
.abc-prog-dot--amber { background:var(--amber); }
.abc-prog-img-frame { position:relative; border-radius:28px; overflow:visible; }
.abc-prog-img-frame img { width:100%; aspect-ratio:.85; object-fit:cover; border-radius:28px; display:block; box-shadow:0 32px 72px rgba(10,26,18,.14); }
.abc-prog-badge { position:absolute; bottom:24px; left:-16px; background:var(--forest); border:1px solid rgba(168,213,186,.2); border-radius:14px; padding:14px 18px; backdrop-filter:blur(10px); min-width:80px; text-align:center; }
.abc-prog-badge--amber { background:var(--amber); }
.abc-prog-badge-num { font-family:"Cormorant Garamond",serif; font-size:1.55rem; font-weight:300; color:var(--white); display:block; line-height:1; }
.abc-prog-badge--amber .abc-prog-badge-num { color:var(--ink); }
.abc-prog-badge-lbl { font-size:.66rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.48); margin-top:3px; display:block; }
.abc-prog-badge--amber .abc-prog-badge-lbl { color:rgba(10,26,18,.6); }
.abc-prog-features { margin:24px 0 32px; display:flex; flex-direction:column; gap:14px; }
.abc-pf-item { display:grid; grid-template-columns:22px 1fr; gap:14px; align-items:flex-start; font-size:.97rem; color:var(--text-mid); line-height:1.72; }
.abc-pf-check { width:20px; height:20px; border-radius:50%; background:rgba(46,94,78,.12); border:1px solid rgba(46,94,78,.25); flex-shrink:0; margin-top:3px; background-image:url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%232E5E4E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:center; }
.abc-pf-check--amber { border-color:rgba(232,168,56,.3); background-color:rgba(232,168,56,.1); background-image:url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23E8A838' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.abc-prog-actions { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.abc-bac-hours { display:flex; flex-wrap:wrap; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:18px; padding:24px 28px; margin-bottom:28px; align-items:center; }
.abc-bac-time { display:flex; flex-direction:column; gap:4px; flex:1; min-width:120px; }
.abc-bac-label { font-size:.7rem; font-weight:600; letter-spacing:1.8px; text-transform:uppercase; color:var(--amber); }
.abc-bac-val { font-family:"Cormorant Garamond",serif; font-size:1.35rem; font-weight:300; color:var(--white); }
.abc-bac-div { width:1px; height:44px; background:rgba(255,255,255,.1); margin:0 20px; flex-shrink:0; }
.abc-prog-stats-row { display:flex; gap:24px; flex-wrap:wrap; margin-bottom:28px; }
.abc-ps-stat { display:flex; flex-direction:column; gap:4px; }
.abc-ps-num { font-family:"Cormorant Garamond",serif; font-size:2rem; font-weight:300; color:var(--amber-deep); line-height:1; }
.abc-ps-lbl { font-size:.72rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-soft); }
.abc-camp-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.abc-camp-pill { padding:7px 14px; border-radius:50px; font-size:.82rem; font-weight:500; background:rgba(16,45,35,.06); color:var(--fern); border:1px solid rgba(46,94,78,.15); }
.abc-prog-note { font-size:.88rem; color:var(--text-soft); font-style:italic; margin-top:4px; }
/* Pricing cards (programs page) */
.abc-pricing-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; }
.abc-price-card { background:var(--parchment); border:1px solid rgba(16,45,35,.1); border-radius:22px; padding:28px 24px; display:flex; flex-direction:column; gap:14px; position:relative; overflow:hidden; }
.abc-price-card--featured { background:var(--forest); border-color:transparent; }
.abc-price-badge { position:absolute; top:0; right:0; background:var(--amber); color:var(--ink); font-size:.7rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:6px 14px; border-bottom-left-radius:14px; }
.abc-price-card-label { font-size:.72rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--text-soft); }
.abc-price-card--featured .abc-price-card-label { color:rgba(255,255,255,.45); }
.abc-price-card-price { font-family:"Cormorant Garamond",serif; font-size:2.6rem; font-weight:300; color:var(--forest); line-height:1; }
.abc-price-card-price span { font-size:1rem; color:var(--text-soft); }
.abc-price-card--featured .abc-price-card-price { color:var(--amber-light); }
.abc-price-card--featured .abc-price-card-price span { color:rgba(255,255,255,.38); }
.abc-price-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.abc-price-list li { font-size:.9rem; color:var(--text-mid); padding-left:18px; position:relative; line-height:1.5; }
.abc-price-list li::before { content:"✓"; position:absolute; left:0; color:var(--fern); font-size:.8rem; font-weight:700; }
.abc-price-card--featured .abc-price-list li { color:rgba(255,255,255,.6); }
.abc-price-card--featured .abc-price-list li::before { color:var(--amber); }
.abc-price-btn { display:flex; text-align:center; justify-content:center; margin-top:auto; }
.abc-spring-alert { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; background:var(--parchment); border:1px solid rgba(232,168,56,.35); border-radius:18px; padding:20px 24px; margin-top:8px; }
.abc-spring-alert-inner { display:flex; flex-direction:column; gap:4px; }
.abc-spring-alert-label { font-size:.72rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--amber-deep); }
.abc-spring-alert-val { font-size:.97rem; font-weight:600; color:var(--forest); }
.abc-jump-pill { display:inline-flex; align-items:center; padding:10px 20px; border-radius:50px; border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.72); font-size:.82rem; font-weight:500; background:rgba(255,255,255,.05); transition:border-color .25s,background .25s,color .25s; }
.abc-jump-pill:hover { border-color:var(--amber); color:var(--amber-light); background:rgba(232,168,56,.08); }
.abc-prog-jumps { display:flex; flex-wrap:wrap; gap:10px; margin-top:36px; }
@media(max-width:860px) {
  .abc-prog-layout { grid-template-columns:1fr; gap:44px; }
  .abc-prog-layout--flip .abc-prog-body { order:1; } .abc-prog-layout--flip .abc-prog-visual { order:2; }
  .abc-pricing-row { grid-template-columns:1fr; }
  .abc-bac-div { display:none; }
  .abc-bac-time { flex:0 0 100%; border-bottom:1px solid rgba(255,255,255,.07); padding-bottom:14px; }
  .abc-bac-time:last-child { border-bottom:none; padding-bottom:0; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.abc-about-mission-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(44px,7vw,96px); align-items:center; }
.abc-am-stats { display:grid; grid-template-columns:1fr 1fr; gap:3px; background:rgba(16,45,35,.06); border-radius:24px; overflow:hidden; padding:3px; }
.abc-am-stat { background:var(--white); border-radius:21px; padding:clamp(20px,3vw,30px) clamp(18px,2.5vw,24px); display:flex; flex-direction:column; gap:6px; }
.abc-am-stat-num { font-family:"Cormorant Garamond",serif; font-size:clamp(1.8rem,2.6vw,2.4rem); font-weight:300; color:var(--amber-deep); line-height:1; display:block; }
.abc-am-stat-lbl { font-size:.72rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-soft); }
.abc-unique-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.abc-unique-card { background:var(--white); border:1px solid rgba(16,45,35,.08); border-radius:22px; padding:clamp(24px,3vw,36px); transition:box-shadow .3s,transform .3s; }
.abc-unique-card:hover { box-shadow:0 16px 44px rgba(10,26,18,.08); transform:translateY(-3px); }
.abc-unique-ico { font-size:2rem; margin-bottom:14px; display:block; }
.abc-unique-card h3 { font-family:"Cormorant Garamond",serif; font-size:clamp(1.2rem,1.6vw,1.45rem); color:var(--forest); margin-bottom:10px; line-height:1.25; }
.abc-unique-card p { font-size:.93rem; color:var(--text-mid); line-height:1.8; }
@media(max-width:860px) { .abc-about-mission-grid { grid-template-columns:1fr; gap:44px; } }
@media(max-width:900px) { .abc-unique-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:540px) { .abc-unique-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   ENROLLMENT PAGE
══════════════════════════════════════════ */
.abc-price-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:clamp(44px,6vw,72px); }
.abc-price-tier { background:var(--parchment); border:1px solid rgba(16,45,35,.1); border-radius:28px; display:flex; flex-direction:column; position:relative; overflow:hidden; }
.abc-price-tier--featured { background:var(--forest); border-color:transparent; }
.abc-pt-badge { position:absolute; top:0; left:0; right:0; background:var(--amber); color:var(--ink); text-align:center; font-size:.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:8px; }
.abc-pt-header { padding:clamp(22px,3vw,32px) clamp(22px,3vw,32px) 0; margin-top:36px; }
.abc-price-tier:not(.abc-price-tier--featured) .abc-pt-header { margin-top:0; }
.abc-pt-icon { font-size:2rem; margin-bottom:12px; display:block; }
.abc-pt-age { font-size:.72rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--amber-deep); margin-bottom:8px; display:block; }
.abc-price-tier--featured .abc-pt-age { color:var(--amber-light); }
.abc-pt-name { font-family:"Cormorant Garamond",serif; font-size:clamp(1.4rem,1.8vw,1.75rem); font-weight:300; color:var(--forest); line-height:1.15; }
.abc-price-tier--featured .abc-pt-name { color:var(--white); }
.abc-pt-body { padding:20px clamp(22px,3vw,32px); flex:1; }
.abc-pt-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.abc-pt-list li { font-size:.93rem; color:var(--text-mid); padding-left:20px; position:relative; line-height:1.5; }
.abc-pt-list li::before { content:"✓"; position:absolute; left:0; color:var(--sage); font-size:.82rem; font-weight:700; }
.abc-price-tier--featured .abc-pt-list li { color:rgba(255,255,255,.65); }
.abc-price-tier--featured .abc-pt-list li::before { color:var(--amber); }
.abc-pt-footer { padding:0 clamp(22px,3vw,32px) clamp(22px,3vw,32px); margin-top:auto; }
.abc-summer-pricing { background:var(--forest); border-radius:28px; padding:clamp(36px,5vw,60px); display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,72px); align-items:center; }
.abc-sp-cards { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.abc-sp-card { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:20px; padding:24px; display:flex; flex-direction:column; gap:12px; position:relative; overflow:hidden; }
.abc-sp-card--featured { background:var(--amber); border-color:transparent; }
.abc-sp-top-badge { position:absolute; top:0; right:0; background:var(--forest); color:var(--amber); font-size:.65rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:5px 10px; border-bottom-left-radius:12px; }
.abc-sp-card-label { font-size:.7rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.45); }
.abc-sp-card--featured .abc-sp-card-label { color:rgba(10,26,18,.55); }
.abc-sp-card-price { font-family:"Cormorant Garamond",serif; font-size:2.4rem; font-weight:300; color:var(--amber-light); line-height:1; }
.abc-sp-card-price span { font-size:.9rem; color:rgba(255,255,255,.35); }
.abc-sp-card--featured .abc-sp-card-price { color:var(--ink); }
.abc-sp-card--featured .abc-sp-card-price span { color:rgba(10,26,18,.45); }
.abc-sp-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:7px; flex:1; }
.abc-sp-list li { font-size:.88rem; color:rgba(255,255,255,.6); padding-left:16px; position:relative; line-height:1.4; }
.abc-sp-list li::before { content:"→"; position:absolute; left:0; color:var(--amber); font-size:.75rem; }
.abc-sp-card--featured .abc-sp-list li { color:rgba(10,26,18,.72); }
.abc-sp-card--featured .abc-sp-list li::before { color:rgba(10,26,18,.5); }
.abc-btn-outline-frost { padding:11px 22px; border-radius:50px; border:1px solid rgba(255,255,255,.3); color:rgba(255,255,255,.8); background:transparent; font-weight:500; font-size:.9rem; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; transition:border-color .25s,background .25s; }
.abc-btn-outline-frost:hover { border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.08); }
.abc-aid-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(44px,7vw,96px); align-items:start; }
.abc-aid-items { display:flex; flex-direction:column; gap:24px; }
.abc-aid-item { display:grid; grid-template-columns:44px 1fr; gap:16px; align-items:start; }
.abc-aid-icon { width:44px; height:44px; border-radius:12px; background:rgba(232,168,56,.12); border:1px solid rgba(232,168,56,.2); display:flex; align-items:center; justify-content:center; color:var(--amber-deep); flex-shrink:0; }
.abc-aid-item strong { display:block; font-size:1rem; color:var(--forest); margin-bottom:5px; }
.abc-aid-item p { font-size:.93rem; color:var(--text-mid); line-height:1.78; margin:0; }
.abc-aid-cta { position:sticky; top:120px; }
.abc-aid-cta-inner { background:var(--white); border:1px solid rgba(16,45,35,.1); border-radius:28px; padding:clamp(28px,4vw,44px); }
.abc-steps-row { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:14px; align-items:start; }
.abc-step { background:var(--parchment); border:1px solid rgba(16,45,35,.08); border-radius:22px; padding:clamp(24px,3vw,36px); }
.abc-step-num { font-family:"Cormorant Garamond",serif; font-size:2.2rem; font-weight:300; color:var(--amber-deep); margin-bottom:12px; display:block; line-height:1; }
.abc-step h3 { font-family:"Cormorant Garamond",serif; font-size:1.25rem; color:var(--forest); margin-bottom:10px; }
.abc-step p { font-size:.93rem; color:var(--text-mid); line-height:1.8; }
.abc-step-arrow { font-size:1.8rem; color:var(--amber-deep); margin-top:40px; opacity:.4; }
.abc-form-sec { background:var(--forest); position:relative; overflow:hidden; }
.abc-form-sec::before { content:""; position:absolute; inset:0; background:radial-gradient(ellipse 55% 70% at 0% 50%,rgba(46,94,78,.35) 0%,transparent 60%); pointer-events:none; }
.abc-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(44px,7vw,80px); align-items:start; position:relative; z-index:1; }
.abc-form-contact { display:flex; flex-direction:column; gap:16px; }
.abc-fc-item { display:flex; flex-direction:column; gap:3px; }
.abc-fc-label { font-size:.7rem; font-weight:600; letter-spacing:1.8px; text-transform:uppercase; color:rgba(255,255,255,.3); }
.abc-fc-val { font-size:1rem; color:rgba(255,255,255,.72); }
.abc-fc-val a { color:var(--amber-light); }
.abc-form-card { background:var(--white); border-radius:28px; padding:clamp(28px,4vw,48px); }
.abc-fm-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; }
.abc-fm-field { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.abc-fm-field label { font-size:.78rem; font-weight:600; letter-spacing:.5px; color:var(--text-mid); }
.abc-fm-field input, .abc-fm-field select, .abc-fm-field textarea { width:100%; background:var(--parchment); border:1px solid rgba(16,45,35,.15); border-radius:10px; padding:12px 16px; font-family:"Instrument Sans",sans-serif; font-size:.95rem; color:var(--text); transition:border-color .2s; }
.abc-fm-field input:focus, .abc-fm-field select:focus, .abc-fm-field textarea:focus { outline:none; border-color:var(--fern); }
.abc-fm-field textarea { height:100px; resize:vertical; }
@media(max-width:900px) {
  .abc-price-grid { grid-template-columns:1fr; }
  .abc-summer-pricing { grid-template-columns:1fr; }
  .abc-sp-cards { grid-template-columns:1fr 1fr; }
  .abc-aid-grid { grid-template-columns:1fr; }
  .abc-aid-cta { position:static; }
  .abc-steps-row { grid-template-columns:1fr; }
  .abc-step-arrow { display:none; }
  .abc-form-grid { grid-template-columns:1fr; }
  .abc-fm-row { grid-template-columns:1fr; }
}
@media(max-width:540px) { .abc-sp-cards { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.abc-gallery-filter-bar { position:sticky; top:var(--header-h); z-index:700; background:rgba(250,247,242,.97); backdrop-filter:blur(16px); border-bottom:1px solid rgba(16,45,35,.1); }
.abc-gallery-filter-inner { max-width:1320px; margin:0 auto; padding:0 clamp(24px,6vw,80px); display:flex; gap:4px; overflow-x:auto; scrollbar-width:none; }
.abc-gallery-filter-inner::-webkit-scrollbar { display:none; }
.abc-gn-btn { padding:16px 18px; background:transparent; border:none; cursor:pointer; font-size:.82rem; font-weight:500; color:var(--text-mid); border-bottom:2px solid transparent; white-space:nowrap; flex-shrink:0; transition:color .25s,border-color .25s; }
.abc-gn-btn:hover { color:var(--forest); }
.abc-gn-btn--active { color:var(--forest); border-bottom-color:var(--amber); font-weight:600; }
.abc-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:260px; gap:12px; }
.abc-gi { border-radius:20px; overflow:hidden; position:relative; cursor:pointer; }
.abc-gi img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .65s var(--ease); }
.abc-gi:hover img { transform:scale(1.04); }
.abc-gi--wide { grid-column:span 2; }
.abc-gi--tall { grid-row:span 2; }
.abc-gi-cap { position:absolute; bottom:0; left:0; right:0; padding:20px; background:linear-gradient(to top,rgba(10,26,18,.82) 0%,transparent 100%); opacity:0; transition:opacity .35s; }
.abc-gi:hover .abc-gi-cap { opacity:1; }
.abc-gi-cat { font-size:.68rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--amber-light); display:block; margin-bottom:4px; }
.abc-gi-text { font-family:"Cormorant Garamond",serif; font-size:1.1rem; color:var(--white); display:block; }
.abc-gi--upload { background:var(--parchment); border:2px dashed rgba(16,45,35,.18); display:flex; align-items:center; justify-content:center; }
.abc-gi-upload-inner { text-align:center; padding:28px; }
.abc-gi-upload-inner strong { font-family:"Cormorant Garamond",serif; font-size:1.3rem; color:var(--forest); display:block; margin-bottom:8px; }
.abc-gi-upload-inner p { font-size:.88rem; color:var(--text-soft); line-height:1.7; }
/* Lightbox */
.abc-lightbox { position:fixed; inset:0; z-index:9000; background:rgba(10,26,18,.95); backdrop-filter:blur(20px); display:flex; align-items:center; justify-content:center; padding:24px; }
.abc-lightbox[hidden] { display:none; }
.abc-lb-img { max-width:100%; max-height:85vh; object-fit:contain; border-radius:16px; display:block; }
.abc-lb-caption { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); font-family:"Cormorant Garamond",serif; font-size:1.1rem; color:rgba(255,255,255,.7); text-align:center; white-space:nowrap; }
.abc-lb-close { position:absolute; top:20px; right:24px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.8); border-radius:50%; width:44px; height:44px; font-size:1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.abc-lb-close:hover { background:rgba(255,255,255,.2); }
.abc-lb-prev,.abc-lb-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.8); border-radius:50%; width:48px; height:48px; font-size:1.5rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; }
.abc-lb-prev { left:20px; } .abc-lb-next { right:20px; }
.abc-lb-prev:hover,.abc-lb-next:hover { background:rgba(255,255,255,.2); }
@media(max-width:860px) { .abc-gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:200px; } .abc-gi--wide { grid-column:span 2; } .abc-gi--tall { grid-row:span 1; } }
@media(max-width:500px) { .abc-gallery-grid { grid-template-columns:1fr; grid-auto-rows:220px; } .abc-gi--wide,.abc-gi--tall { grid-column:auto; grid-row:auto; } }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.abc-contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(44px,7vw,96px); align-items:start; }
.abc-contact-loc { border:1px solid rgba(16,45,35,.1); border-radius:22px; padding:clamp(24px,3vw,36px); margin-bottom:24px; }
.abc-cl-header { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.abc-cl-campus { font-family:"Cormorant Garamond",serif; font-size:1.2rem; font-weight:400; color:var(--forest); }
.abc-cl-addr { font-size:.97rem; color:var(--text-mid); line-height:1.75; margin-bottom:16px; }
.abc-cl-meta { display:flex; flex-wrap:wrap; gap:20px; padding:14px 0; border-top:1px solid rgba(16,45,35,.08); border-bottom:1px solid rgba(16,45,35,.08); margin-bottom:14px; }
.abc-cl-label { font-size:.68rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--amber-deep); display:block; margin-bottom:2px; }
.abc-cl-dir { display:inline-flex; align-items:center; gap:7px; font-size:.82rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--fern); transition:gap .25s,color .25s; margin-bottom:16px; }
.abc-cl-dir:hover { gap:12px; color:var(--forest); }
.abc-cl-map { border-radius:14px; overflow:hidden; margin-top:4px; }
.abc-contact-form-card { background:var(--parchment); border-radius:28px; padding:clamp(28px,4vw,44px); position:sticky; top:110px; }
.abc-qc-strip { background:var(--parchment); border-top:1px solid rgba(16,45,35,.1); border-bottom:1px solid rgba(16,45,35,.1); padding:28px clamp(24px,6vw,80px); }
.abc-qc-inner { max-width:1320px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:28px; }
.abc-qc-item { display:flex; align-items:center; gap:14px; text-decoration:none; color:inherit; padding:4px 0; transition:opacity .2s; }
.abc-qc-item:hover { opacity:.75; }
.abc-qc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(46,94,78,.08);
  border: 1px solid rgba(46,94,78,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fern);
  flex-shrink: 0;
}
.abc-qc-item strong { display:block; font-size:.88rem; font-weight:600; color:var(--forest); margin-bottom:2px; }
.abc-qc-item span { font-size:.88rem; color:var(--text-mid); }
@media(max-width:900px) { .abc-contact-grid { grid-template-columns:1fr; } .abc-contact-form-card { position:static; } }

/* ══════════════════════════════════════════
   WP FORMS OVERRIDES
══════════════════════════════════════════ */
.wpforms-container .wpforms-form { font-family:"Instrument Sans",sans-serif !important; }
.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=tel],
.wpforms-container select,
.wpforms-container textarea { background:var(--parchment) !important; border:1px solid rgba(16,45,35,.15) !important; border-radius:10px !important; padding:12px 16px !important; font-family:"Instrument Sans",sans-serif !important; font-size:.95rem !important; color:var(--text) !important; width:100% !important; transition:border-color .2s !important; }
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus { border-color:var(--fern) !important; outline:none !important; box-shadow:none !important; }
.wpforms-container .wpforms-submit-container .wpforms-submit { background:var(--amber) !important; color:var(--ink) !important; border:none !important; border-radius:50px !important; padding:14px 36px !important; font-size:1rem !important; font-weight:600 !important; cursor:pointer !important; box-shadow:0 8px 28px rgba(232,168,56,.38) !important; transition:background .25s,transform .2s !important; width:100% !important; }
.wpforms-container .wpforms-submit-container .wpforms-submit:hover { background:var(--amber-light) !important; transform:translateY(-1px) !important; }
.wpforms-container .wpforms-field-label { font-size:.78rem !important; font-weight:600 !important; color:var(--text-mid) !important; letter-spacing:.5px !important; margin-bottom:6px !important; }

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.abc-announcement {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9100;
  background: var(--forest);
  border-bottom: 1px solid rgba(232,168,56,.25);
  padding: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
}
/* When announcement is showing, push header down */
body:has(.abc-announcement) .abc-header { top: 42px; }
.abc-announcement-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 9px clamp(24px,6vw,80px);
  display: flex; align-items: center; gap: 12px;
}
.abc-announcement-badge {
  background: var(--amber); color: var(--ink);
  font-size: .66rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
  flex-shrink: 0; white-space: nowrap;
}
.abc-announcement-text {
  font-size: .85rem; color: rgba(255,255,255,.8); flex: 1;
}
.abc-announcement-text a { color: var(--amber-light); text-decoration: underline; }
.abc-announcement-close {
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 1.2rem; line-height: 1; padding: 4px 8px; cursor: pointer;
  flex-shrink: 0; transition: color .2s;
}
.abc-announcement-close:hover { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════
   PAGE CONTENT (default page.php)
══════════════════════════════════════════ */
.abc-prose { color: var(--text); line-height: 1.85; }
.abc-prose h2, .abc-prose h3 { font-family: "Cormorant Garamond", serif; font-weight: 300; color: var(--forest); margin: 2em 0 .5em; }
.abc-prose h2 { font-size: clamp(1.8rem,2.5vw,2.5rem); }
.abc-prose h3 { font-size: clamp(1.3rem,1.8vw,1.7rem); }
.abc-prose p { margin-bottom: 1.4em; color: var(--text-mid); }
.abc-prose ul, .abc-prose ol { padding-left: 1.4em; margin-bottom: 1.4em; }
.abc-prose li { margin-bottom: .4em; color: var(--text-mid); }
.abc-prose a { color: var(--fern); text-decoration: underline; }
.abc-prose a:hover { color: var(--forest); }
.abc-prose blockquote { border-left: 3px solid var(--amber); padding-left: 1.5em; margin: 2em 0; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-style: italic; color: var(--forest); }
.abc-prose img { border-radius: 16px; margin: 2em 0; box-shadow: 0 20px 56px rgba(10,26,18,.1); }

/* ══════════════════════════════════════════
   BREADCRUMBS
══════════════════════════════════════════ */
.abc-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; list-style: none; padding: 0; margin: 0 0 24px; }
.abc-breadcrumbs li { font-size: .82rem; color: rgba(255,255,255,.4); }
.abc-breadcrumbs a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.abc-breadcrumbs a:hover { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════════
   STAR 4 / ENROLLMENT PAGE ADDITIONS
══════════════════════════════════════════ */
.abc-enroll-pricing { background: var(--white); }

/* ══════════════════════════════════════════
   TOUR BOOKING WIDGET
══════════════════════════════════════════ */

/* Layout */
.abc-tour-section { background: var(--white); }
.abc-tour-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* Widget card */
.abc-tour-widget {
  background: var(--white);
  border: 1px solid rgba(16,45,35,.1);
  border-radius: 28px;
  padding: clamp(28px,4vw,48px);
  box-shadow: 0 8px 40px rgba(10,26,18,.06);
}
.abc-tour-widget-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem,2.2vw,2rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 6px;
}
.abc-tour-widget-sub {
  font-size: .92rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* Step indicators */
.abc-tour-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(16,45,35,.08);
}
.abc-ts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.abc-ts span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color .3s;
}
.abc-ts-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16,45,35,.07);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .3s, border-color .3s, color .3s;
}
.abc-ts--active .abc-ts-num {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}
.abc-ts--active span { color: var(--forest); }
.abc-ts--done .abc-ts-num {
  background: var(--fern);
  border-color: var(--fern);
  color: var(--white);
}
.abc-ts--done span { color: var(--fern); }
.abc-ts-line {
  flex: 1;
  height: 2px;
  background: rgba(16,45,35,.1);
  margin: 0 8px;
  margin-bottom: 20px;
  transition: background .3s;
}

/* Step title */
.abc-tour-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem,1.5vw,1.35rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 18px;
}

/* Location cards */
.abc-tour-loc-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.abc-tour-loc-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 2px solid rgba(16,45,35,.1);
  background: var(--parchment);
  text-align: left;
  cursor: pointer;
  transition: border-color .25s, background .25s, box-shadow .25s;
  position: relative;
}
.abc-tour-loc-card:hover { border-color: var(--fern); background: rgba(46,94,78,.04); }
.abc-tour-loc-card--selected {
  border-color: var(--amber);
  background: rgba(232,168,56,.06);
  box-shadow: 0 4px 20px rgba(232,168,56,.18);
}
.abc-tour-loc-card--disabled {
  opacity: .55;
  pointer-events: none;
  background: rgba(16,45,35,.04);
  border-style: dashed;
}
.abc-tlc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(16,45,35,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fern);
  flex-shrink: 0;
}
.abc-tour-loc-card--selected .abc-tlc-icon { border-color: var(--amber); color: var(--amber-deep); }
.abc-tlc-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.abc-tlc-body strong { font-size: 1rem; font-weight: 600; color: var(--forest); }
.abc-tlc-body > span { font-size: .82rem; color: var(--text-soft); }
.abc-tlc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--fern);
  margin-top: 2px;
}
.abc-tlc-unavail { font-size: .78rem; color: #c55; font-weight: 500; }
.abc-tlc-check {
  color: var(--amber);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .25s;
}
.abc-tour-loc-card--selected .abc-tlc-check { opacity: 1; }

/* Date grid */
.abc-tour-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}
.abc-tour-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 2px solid rgba(16,45,35,.1);
  background: var(--parchment);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.abc-tour-date-btn:hover { border-color: var(--fern); background: rgba(46,94,78,.04); }
.abc-tdb--selected {
  border-color: var(--amber);
  background: rgba(232,168,56,.08);
}
.abc-tdb-dow { font-size: .65rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-soft); }
.abc-tdb-day { font-family: "Cormorant Garamond",serif; font-size: 1.5rem; font-weight: 300; color: var(--forest); line-height: 1; }
.abc-tdb-mon { font-size: .68rem; font-weight: 600; color: var(--text-soft); }
.abc-tdb--selected .abc-tdb-dow,
.abc-tdb--selected .abc-tdb-mon { color: var(--amber-deep); }
.abc-tdb--selected .abc-tdb-day { color: var(--forest); }

/* Slot loading */
.abc-tour-slot-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-soft);
  padding: 16px 0;
}

/* Slot grid */
.abc-slot-period { margin-bottom: 20px; }
.abc-slot-period-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.abc-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.abc-slot-btn {
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(16,45,35,.15);
  background: var(--parchment);
  font-size: .88rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.abc-slot-btn:hover:not([disabled]) { border-color: var(--fern); background: rgba(46,94,78,.06); }
.abc-slot-btn--selected {
  border-color: var(--amber);
  background: rgba(232,168,56,.1);
  color: var(--amber-deep);
  font-weight: 600;
}
.abc-slot-btn--taken {
  opacity: .38;
  cursor: not-allowed;
  text-decoration: line-through;
}
.abc-slot-btn--taken span { display: none; }

/* Back button */
.abc-tour-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: color .2s;
}
.abc-tour-back-btn:hover { color: var(--forest); }

/* Next/submit buttons */
.abc-tour-next-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 15px 28px;
  border-radius: 50px;
  background: var(--forest);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .2s, opacity .2s;
}
.abc-tour-next-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}
.abc-tour-next-btn:not(:disabled):hover { background: var(--fern); transform: translateY(-1px); }

.abc-tour-submit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 17px 32px;
  border-radius: 50px;
  background: var(--amber);
  color: var(--ink);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(232,168,56,.35);
  transition: background .25s, transform .2s;
}
.abc-tour-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.abc-tour-submit-btn:not(:disabled):hover { background: var(--amber-light); transform: translateY(-1px); }

/* Summary bar (step 3) */
.abc-tour-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(46,94,78,.07);
  border: 1px solid rgba(46,94,78,.18);
  border-radius: 12px;
  margin-bottom: 24px;
}
.abc-tour-summary-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--forest);
}

/* Form grid (step 3) */
.abc-tour-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.abc-tour-form-grid .abc-fm-field { margin-bottom: 0; }
.abc-tour-form-grid .abc-fm-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.abc-tour-form-grid input {
  width: 100%;
  background: var(--parchment);
  border: 1px solid rgba(16,45,35,.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Instrument Sans", sans-serif;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s;
}
.abc-tour-form-grid input:focus { outline: none; border-color: var(--fern); }

/* Submit message */
.abc-tour-submit-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .95rem;
  display: none;
}
.abc-tour-submit-msg--error { background: rgba(200,0,0,.06); color: #c00; border: 1px solid rgba(200,0,0,.12); display: block; }
.abc-tour-submit-msg--success { background: rgba(46,94,78,.08); color: var(--forest); border: 1px solid rgba(46,94,78,.18); display: block; }

/* Privacy note */
.abc-tour-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: 14px;
  line-height: 1.5;
}

/* Confirmed state */
.abc-tour-confirmed {
  text-align: center;
  padding: clamp(20px,4vw,40px) 0;
}
.abc-tour-confirmed-icon {
  color: var(--fern);
  margin-bottom: 16px;
}
.abc-tour-confirmed h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem,2.5vw,2.4rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}
.abc-tour-confirmed p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 16px;
}
.abc-tour-confirmed-summary {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  background: var(--parchment);
  border-radius: 14px;
  padding: 20px 28px;
  text-align: left;
  margin: 4px auto;
}
.abc-confirmed-row {
  font-size: .92rem;
  color: var(--text-mid);
}
.abc-confirmed-row strong { color: var(--forest); margin-right: 6px; }

/* Info sidebar */
.abc-tour-info-card {
  background: var(--parchment);
  border: 1px solid rgba(16,45,35,.1);
  border-radius: 24px;
  padding: clamp(24px,3vw,36px);
  position: sticky;
  top: 110px;
}
.abc-tour-info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 16px;
}
.abc-tour-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.abc-tour-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.abc-tour-info-list li svg { color: var(--fern); flex-shrink: 0; margin-top: 2px; }
.abc-tour-info-list li strong { color: var(--forest); }
.abc-tour-info-sep {
  height: 1px;
  background: rgba(16,45,35,.1);
  margin: 24px 0;
}
.abc-tour-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(16,45,35,.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 3px;
}
.abc-tsg-item {
  background: var(--white);
  padding: 12px 14px;
  border-radius: 11px;
}
.abc-tsg-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 3px;
}
.abc-tsg-val { font-size: .88rem; font-weight: 500; color: var(--forest); }
.abc-tour-call-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(16,45,35,.1);
  transition: border-color .2s, background .2s;
  margin-top: 0;
}
.abc-tour-call-link:hover { border-color: var(--fern); background: rgba(46,94,78,.04); }
.abc-tour-call-link svg { color: var(--fern); flex-shrink: 0; }
.abc-tour-call-link div { display: flex; flex-direction: column; gap: 2px; }
.abc-tour-call-link strong { font-size: .88rem; color: var(--forest); }
.abc-tour-call-link span { font-size: .82rem; color: var(--text-soft); }
.abc-tour-err { color: #c00; font-size: .9rem; padding: 10px 0; }

/* Unavailable message */
.abc-tour-unavail-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(16,45,35,.04);
  border: 1px solid rgba(16,45,35,.1);
  border-radius: 16px;
  color: var(--text-mid);
}
.abc-tour-unavail-msg svg { color: var(--amber-deep); flex-shrink: 0; margin-top: 2px; }
.abc-tour-unavail-msg p { font-size: .93rem; line-height: 1.75; margin: 0; }

/* Banner (cancel result) */
.abc-tour-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 860px;
  margin: 28px auto 0;
  padding: 18px 24px;
  border-radius: 14px;
  font-size: .95rem;
  line-height: 1.7;
}
.abc-tour-banner--success { background: rgba(46,94,78,.08); border: 1px solid rgba(46,94,78,.2); color: var(--forest); }
.abc-tour-banner--warn { background: rgba(200,130,0,.08); border: 1px solid rgba(200,130,0,.2); color: var(--amber-deep); }
.abc-tour-banner svg { flex-shrink: 0; margin-top: 2px; }

/* Spin animation (loader) */
.abc-spin { animation: abc-spin 1s linear infinite; }
@keyframes abc-spin { to { transform: rotate(360deg); } }

/* Stars (testimonials via abc_stars()) */
.abc-stars { display: inline-flex; gap: 2px; }
.abc-star { color: rgba(16,45,35,.15); }
.abc-star--filled { color: var(--amber); }

/* Icon base */
.abc-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .abc-tour-layout { grid-template-columns: 1fr; }
  .abc-tour-info-card { position: static; }
  .abc-tour-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .abc-tour-steps span { display: none; }
  .abc-tour-date-grid { grid-template-columns: repeat(auto-fill, minmax(58px,1fr)); }
}

/* ══════════════════════════════════════════
   SEASONAL ENROLLMENT BANNERS (programs page)
══════════════════════════════════════════ */
.abc-seasonal-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-radius: 18px;
  padding: 20px 24px;
  margin: 24px 0 8px;
  border: 1px solid transparent;
}
.abc-seasonal-banner--spring {
  background: linear-gradient(135deg, rgba(232,168,56,.08) 0%, rgba(74,124,106,.06) 100%);
  border-color: rgba(232,168,56,.35);
}
.abc-seasonal-banner--summer {
  background: linear-gradient(135deg, rgba(232,168,56,.1) 0%, rgba(200,136,26,.06) 100%);
  border-color: rgba(232,168,56,.4);
}
.abc-sb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.abc-sb-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 160px;
}
.abc-sb-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.abc-sb-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--forest);
}

/* Camp pill icon alignment */
.abc-camp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.abc-camp-pill svg { flex-shrink: 0; }

/* Icon alignment in various contexts */
.abc-prog-label { align-items: center; }
.abc-prog-label svg { flex-shrink: 0; }
.abc-bac-label { display: flex; align-items: center; gap: 5px; }
.abc-psn-cta { display: flex; align-items: center; gap: 6px; }
.abc-jump-pill { display: inline-flex; align-items: center; gap: 7px; }

/* CTA button icon alignment */
.abc-btn-amber, .abc-btn-ghost, .abc-btn-outline-forest {
  align-items: center;
}
.abc-btn-amber svg, .abc-btn-ghost svg, .abc-btn-outline-forest svg { flex-shrink: 0; }

/* Eyebrow icon context */
.abc-tour-info-list li { align-items: flex-start; }

/* Star icons (testimonials) */
.abc-tq-stars { display: flex; gap: 3px; align-items: center; }
.abc-star { display: inline-block; }
.abc-star--filled { color: var(--amber); }
.abc-star:not(.abc-star--filled) { color: rgba(16,45,35,.2); }

/* ══════════════════════════════════════════
   ICON CONTEXT — global alignment fixes
══════════════════════════════════════════ */

/* Why-sig avatar becomes SVG container */
.abc-why-sig-av {
  background: rgba(46,94,78,.1) !important;
  border: 1.5px solid var(--mist) !important;
  color: var(--fern);
}

/* Trust bar icons (enrollment page) */
.abc-trust-icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fern);
  flex-shrink: 0;
}

/* Testimonial avatar SVG */
.abc-tq-av {
  color: var(--mist);
}

/* About unique-card icon box */
.abc-unique-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(46,94,78,.08);
  border: 1px solid rgba(46,94,78,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fern);
  margin-bottom: 16px;
}

/* Enrollment tier icon */
.abc-pt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(46,94,78,.08);
  border: 1px solid rgba(46,94,78,.12);
  color: var(--fern);
  margin-bottom: 14px;
}
.abc-price-tier--featured .abc-pt-icon {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  color: var(--amber-light);
}

/* Hero CTA button icon */
.abc-hero-actions .abc-btn-amber svg,
.abc-cta-btns .abc-btn-amber svg { color: var(--ink); }

/* Programs mosaic learn-more arrow */
.abc-pc-link svg { transition: transform .25s; }
.abc-pc-link:hover svg { transform: translateX(4px); }

/* Location card check icon sizing */
.abc-tlc-check svg { width: 22px; height: 22px; }

/* Header CTA icon */
.abc-header-cta svg { color: var(--ink); }

/* Footer social icons (if used) */
.abc-footer-col svg { vertical-align: middle; }

/* Enrollment step number circle override for check icon */
#step-ind-4 .abc-ts-num svg { width: 14px; height: 14px; }

/* Tour confirmed icon */
.abc-tour-confirmed-icon svg { width: 48px; height: 48px; }

/* Programs bac-label flex */
.abc-bac-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
}

/* Prog-label dot replaced when icon present */
.abc-prog-label svg { color: currentColor; }

/* Jump pill icon */
.abc-jump-pill svg { flex-shrink: 0; }
/* Layout */
.abc-tour-section { background: var(--white); }
.abc-tour-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* Widget card */
.abc-tour-widget {
  background: var(--white);
  border: 1px solid rgba(16,45,35,.1);
  border-radius: 28px;
  padding: clamp(28px,4vw,48px);
  box-shadow: 0 8px 40px rgba(10,26,18,.06);
}
.abc-tour-widget-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem,2.2vw,2rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 6px;
}
.abc-tour-widget-sub {
  font-size: .92rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* Step indicators */
.abc-tour-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(16,45,35,.08);
}
.abc-ts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.abc-ts span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color .3s;
}
.abc-ts-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16,45,35,.07);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .3s, border-color .3s, color .3s;
}
.abc-ts--active .abc-ts-num {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}
.abc-ts--active span { color: var(--forest); }
.abc-ts--done .abc-ts-num {
  background: var(--fern);
  border-color: var(--fern);
  color: var(--white);
}
.abc-ts--done span { color: var(--fern); }
.abc-ts-line {
  flex: 1;
  height: 2px;
  background: rgba(16,45,35,.1);
  margin: 0 8px;
  margin-bottom: 20px;
  transition: background .3s;
}

/* Step title */
.abc-tour-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem,1.5vw,1.35rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 18px;
}

/* Location cards */
.abc-tour-loc-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.abc-tour-loc-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 2px solid rgba(16,45,35,.1);
  background: var(--parchment);
  text-align: left;
  cursor: pointer;
  transition: border-color .25s, background .25s, box-shadow .25s;
  position: relative;
}
.abc-tour-loc-card:hover { border-color: var(--fern); background: rgba(46,94,78,.04); }
.abc-tour-loc-card--selected {
  border-color: var(--amber);
  background: rgba(232,168,56,.06);
  box-shadow: 0 4px 20px rgba(232,168,56,.18);
}
.abc-tour-loc-card--disabled {
  opacity: .55;
  pointer-events: none;
  background: rgba(16,45,35,.04);
  border-style: dashed;
}
.abc-tlc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(16,45,35,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fern);
  flex-shrink: 0;
}
.abc-tour-loc-card--selected .abc-tlc-icon { border-color: var(--amber); color: var(--amber-deep); }
.abc-tlc-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.abc-tlc-body strong { font-size: 1rem; font-weight: 600; color: var(--forest); }
.abc-tlc-body > span { font-size: .82rem; color: var(--text-soft); }
.abc-tlc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--fern);
  margin-top: 2px;
}
.abc-tlc-unavail { font-size: .78rem; color: #c55; font-weight: 500; }
.abc-tlc-check {
  color: var(--amber);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity .25s;
}
.abc-tour-loc-card--selected .abc-tlc-check { opacity: 1; }

/* Date grid */
.abc-tour-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}
.abc-tour-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 2px solid rgba(16,45,35,.1);
  background: var(--parchment);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.abc-tour-date-btn:hover { border-color: var(--fern); background: rgba(46,94,78,.04); }
.abc-tdb--selected {
  border-color: var(--amber);
  background: rgba(232,168,56,.08);
}
.abc-tdb-dow { font-size: .65rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-soft); }
.abc-tdb-day { font-family: "Cormorant Garamond",serif; font-size: 1.5rem; font-weight: 300; color: var(--forest); line-height: 1; }
.abc-tdb-mon { font-size: .68rem; font-weight: 600; color: var(--text-soft); }
.abc-tdb--selected .abc-tdb-dow,
.abc-tdb--selected .abc-tdb-mon { color: var(--amber-deep); }
.abc-tdb--selected .abc-tdb-day { color: var(--forest); }

/* Slot loading */
.abc-tour-slot-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-soft);
  padding: 16px 0;
}

/* Slot grid */
.abc-slot-period { margin-bottom: 20px; }
.abc-slot-period-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.abc-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.abc-slot-btn {
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(16,45,35,.15);
  background: var(--parchment);
  font-size: .88rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.abc-slot-btn:hover:not([disabled]) { border-color: var(--fern); background: rgba(46,94,78,.06); }
.abc-slot-btn--selected {
  border-color: var(--amber);
  background: rgba(232,168,56,.1);
  color: var(--amber-deep);
  font-weight: 600;
}
.abc-slot-btn--taken {
  opacity: .38;
  cursor: not-allowed;
  text-decoration: line-through;
}
.abc-slot-btn--taken span { display: none; }

/* Back button */
.abc-tour-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  transition: color .2s;
}
.abc-tour-back-btn:hover { color: var(--forest); }

/* Next/submit buttons */
.abc-tour-next-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 15px 28px;
  border-radius: 50px;
  background: var(--forest);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, transform .2s, opacity .2s;
}
.abc-tour-next-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none;
}
.abc-tour-next-btn:not(:disabled):hover { background: var(--fern); transform: translateY(-1px); }

.abc-tour-submit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 17px 32px;
  border-radius: 50px;
  background: var(--amber);
  color: var(--ink);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(232,168,56,.35);
  transition: background .25s, transform .2s;
}
.abc-tour-submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.abc-tour-submit-btn:not(:disabled):hover { background: var(--amber-light); transform: translateY(-1px); }

/* Summary bar (step 3) */
.abc-tour-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(46,94,78,.07);
  border: 1px solid rgba(46,94,78,.18);
  border-radius: 12px;
  margin-bottom: 24px;
}
.abc-tour-summary-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--forest);
}

/* Form grid (step 3) */
.abc-tour-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.abc-tour-form-grid .abc-fm-field { margin-bottom: 0; }
.abc-tour-form-grid .abc-fm-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.abc-tour-form-grid input {
  width: 100%;
  background: var(--parchment);
  border: 1px solid rgba(16,45,35,.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Instrument Sans", sans-serif;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s;
}
.abc-tour-form-grid input:focus { outline: none; border-color: var(--fern); }

/* Submit message */
.abc-tour-submit-msg {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .95rem;
  display: none;
}
.abc-tour-submit-msg--error { background: rgba(200,0,0,.06); color: #c00; border: 1px solid rgba(200,0,0,.12); display: block; }
.abc-tour-submit-msg--success { background: rgba(46,94,78,.08); color: var(--forest); border: 1px solid rgba(46,94,78,.18); display: block; }

/* Privacy note */
.abc-tour-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: 14px;
  line-height: 1.5;
}

/* Confirmed state */
.abc-tour-confirmed {
  text-align: center;
  padding: clamp(20px,4vw,40px) 0;
}
.abc-tour-confirmed-icon {
  color: var(--fern);
  margin-bottom: 16px;
}
.abc-tour-confirmed h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem,2.5vw,2.4rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}
.abc-tour-confirmed p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 16px;
}
.abc-tour-confirmed-summary {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  background: var(--parchment);
  border-radius: 14px;
  padding: 20px 28px;
  text-align: left;
  margin: 4px auto;
}
.abc-confirmed-row {
  font-size: .92rem;
  color: var(--text-mid);
}
.abc-confirmed-row strong { color: var(--forest); margin-right: 6px; }

/* Info sidebar */
.abc-tour-info-card {
  background: var(--parchment);
  border: 1px solid rgba(16,45,35,.1);
  border-radius: 24px;
  padding: clamp(24px,3vw,36px);
  position: sticky;
  top: 110px;
}
.abc-tour-info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 16px;
}
.abc-tour-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.abc-tour-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.abc-tour-info-list li svg { color: var(--fern); flex-shrink: 0; margin-top: 2px; }
.abc-tour-info-list li strong { color: var(--forest); }
.abc-tour-info-sep {
  height: 1px;
  background: rgba(16,45,35,.1);
  margin: 24px 0;
}
.abc-tour-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(16,45,35,.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 3px;
}
.abc-tsg-item {
  background: var(--white);
  padding: 12px 14px;
  border-radius: 11px;
}
.abc-tsg-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 3px;
}
.abc-tsg-val { font-size: .88rem; font-weight: 500; color: var(--forest); }
.abc-tour-call-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(16,45,35,.1);
  transition: border-color .2s, background .2s;
  margin-top: 0;
}
.abc-tour-call-link:hover { border-color: var(--fern); background: rgba(46,94,78,.04); }
.abc-tour-call-link svg { color: var(--fern); flex-shrink: 0; }
.abc-tour-call-link div { display: flex; flex-direction: column; gap: 2px; }
.abc-tour-call-link strong { font-size: .88rem; color: var(--forest); }
.abc-tour-call-link span { font-size: .82rem; color: var(--text-soft); }
.abc-tour-err { color: #c00; font-size: .9rem; padding: 10px 0; }

/* Unavailable message */
.abc-tour-unavail-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(16,45,35,.04);
  border: 1px solid rgba(16,45,35,.1);
  border-radius: 16px;
  color: var(--text-mid);
}
.abc-tour-unavail-msg svg { color: var(--amber-deep); flex-shrink: 0; margin-top: 2px; }
.abc-tour-unavail-msg p { font-size: .93rem; line-height: 1.75; margin: 0; }

/* Banner (cancel result) */
.abc-tour-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 860px;
  margin: 28px auto 0;
  padding: 18px 24px;
  border-radius: 14px;
  font-size: .95rem;
  line-height: 1.7;
}
.abc-tour-banner--success { background: rgba(46,94,78,.08); border: 1px solid rgba(46,94,78,.2); color: var(--forest); }
.abc-tour-banner--warn { background: rgba(200,130,0,.08); border: 1px solid rgba(200,130,0,.2); color: var(--amber-deep); }
.abc-tour-banner svg { flex-shrink: 0; margin-top: 2px; }

/* Spin animation (loader) */
.abc-spin { animation: abc-spin 1s linear infinite; }
@keyframes abc-spin { to { transform: rotate(360deg); } }

/* Stars (testimonials via abc_stars()) */
.abc-stars { display: inline-flex; gap: 2px; }
.abc-star { color: rgba(16,45,35,.15); }
.abc-star--filled { color: var(--amber); }

/* Icon base */
.abc-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .abc-tour-layout { grid-template-columns: 1fr; }
  .abc-tour-info-card { position: static; }
  .abc-tour-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .abc-tour-steps span { display: none; }
  .abc-tour-date-grid { grid-template-columns: repeat(auto-fill, minmax(58px,1fr)); }
}