/* =====================================================================
   Saran Accounting — public site styles
   Palette: deep navy (#0E2A47), warm gold (#C8A04B), bone (#FBF8F2)
   ===================================================================== */

:root {
  --navy: #0E2A47;
  --navy-2: #163657;
  --navy-3: #1f4570;
  --gold: #C8A04B;
  --gold-2: #B68C36;
  --bone: #FBF8F2;
  --cream: #F4EEDE;
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --ink-3: #6b6b6b;
  --line: #e6e1d4;
  --line-2: #d8d2c0;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(14,42,71,.06), 0 1px 3px rgba(14,42,71,.04);
  --shadow-md: 0 6px 16px rgba(14,42,71,.08), 0 2px 4px rgba(14,42,71,.05);
  --shadow-lg: 0 22px 50px rgba(14,42,71,.16), 0 6px 14px rgba(14,42,71,.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1rem; color: var(--ink-2); }
a  { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-2); }
code { font-family: 'SF Mono', Menlo, monospace; background: var(--cream); padding: 2px 6px; border-radius: 4px; font-size: .9em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.4rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 1.5px solid transparent; transition: all .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.02rem; }
.btn-sm { padding: .5rem .9rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--cream); border-color: var(--navy); color: var(--navy); }
.btn-ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Nav ------------------------------------------------------ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,242,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--navy); color: var(--gold);
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); font-size: 1.08rem; }
.brand-sub { font-size: .72rem; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }

.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--ink-2); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-weight: 600; color: var(--navy); font-size: .95rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-book { padding: .6rem 1rem; font-size: .9rem; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem; gap: 1rem;
  }
}

/* Hero ----------------------------------------------------- */
.hero {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem;
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 1.5rem 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-2); font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero-title { margin-bottom: 1.2rem; }
.hero-title .accent { color: var(--gold-2); font-style: italic; }
.hero-sub { font-size: 1.15rem; color: var(--ink-2); max-width: 540px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; line-height: 1.2; }
.trust-item strong { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--navy); }
.trust-item span { font-size: .82rem; color: var(--ink-3); }
.trust-divider { width: 1px; height: 36px; background: var(--line); }

.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-card-h {
  font-family: 'Fraunces', serif; font-weight: 600;
  color: var(--navy); font-size: 1.05rem; margin-bottom: 1.1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: .5rem;
}
.hero-card-h::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #2ea043; box-shadow: 0 0 0 4px rgba(46,160,67,.18);
}
.hero-card-body { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.3rem; }
.hero-card-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem;
}
.hero-card-row span { color: var(--ink-2); }
.hero-card-row strong { color: var(--navy); font-weight: 600; }
.hero-card-foot {
  margin-top: .9rem; text-align: center;
  font-size: .8rem; color: var(--ink-3);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }
}

/* Section heads ------------------------------------------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-2); font-weight: 600;
  margin-bottom: .8rem;
}

/* Services strip ------------------------------------------ */
.services-strip { padding: 5rem 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  transition: all .25s; text-decoration: none; color: inherit;
  position: relative;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card-full { padding: 1.8rem; }
.service-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.1rem;
}
.service-icon, .service-icon-lg {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--cream); font-size: 1.4rem;
}
.service-icon-lg { width: 54px; height: 54px; font-size: 1.7rem; }
.service-price {
  font-weight: 600; color: var(--gold-2); font-size: .9rem;
  background: rgba(200,160,75,.1); padding: .35rem .75rem; border-radius: 999px;
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .95rem; flex: 1; }
.service-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--ink-3);
}
.service-foot .arrow { font-weight: 600; color: var(--navy); }
.service-card:hover .arrow { color: var(--gold-2); }

/* Why grid ------------------------------------------------ */
.why { padding: 5rem 0; background: var(--bone); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.why-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  transition: all .2s;
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.why-card h4 { color: var(--navy); margin-bottom: .4rem; }
.why-card p { font-size: .92rem; margin: 0; }

/* Testimonial --------------------------------------------- */
.testimonial {
  padding: 5rem 0; background: var(--navy); color: var(--white);
  text-align: center; position: relative;
}
.testimonial .container { max-width: 760px; }
.quote-mark {
  font-family: 'Fraunces', serif; font-size: 6rem; line-height: .5;
  color: var(--gold); margin-bottom: 1rem;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif; font-size: 1.4rem; line-height: 1.5;
  margin: 0 0 2rem; color: var(--white); font-weight: 400; font-style: italic;
}
.attrib-name { font-weight: 600; font-size: 1rem; color: var(--white); }
.attrib-role { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: .25rem; }

/* CTA band ------------------------------------------------ */
.cta-band {
  padding: 4rem 0; background: var(--cream);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { margin-bottom: .5rem; }
.cta-band p { margin: 0; max-width: 540px; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Footer -------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 4rem 0 1.5rem; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.footer-col a { color: rgba(255,255,255,.75); display: block; padding: .15rem 0; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-h { font-weight: 600; color: var(--white); margin-bottom: .8rem; font-size: .95rem; }
.footer-brand { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--white); margin-bottom: .4rem; }
.footer-sub { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: .25rem; }
.footer-bottom {
  max-width: 1180px; margin: 3rem auto 0; padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer-credit a { color: var(--gold); }
.footer-credit a:hover { color: var(--white); }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* Page hero ------------------------------------------------ */
.page-hero {
  padding: 4rem 0 3rem; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 760px; }
.page-hero p { font-size: 1.1rem; color: var(--ink-2); max-width: 660px; }

/* Two-column layout --------------------------------------- */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* About --------------------------------------------------- */
.about-grid, .services-page, .contact-grid { padding: 4rem 0; }
.about-text h2 { margin-top: 2rem; }
.about-text h2:first-child { margin-top: 0; }
.about-aside { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
}
.stat-num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--navy); line-height: 1; margin-bottom: .25rem; }
.stat-num span { color: var(--gold); }
.stat-label { color: var(--ink-3); font-size: .9rem; }
.stat-label-lg { color: var(--navy); font-family: 'Fraunces', serif; font-size: 1.25rem; margin-bottom: .8rem; }
.stat-cta { background: var(--cream); border-color: var(--gold); }

/* Contact ------------------------------------------------- */
.lead-line { font-size: 1.05rem; color: var(--ink-2); }
.big-link { font-size: 1.2rem; font-weight: 600; }
.hours-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: .55rem 0; border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: 0; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; color: var(--ink-2); font-weight: 500; }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem; padding: .75rem 1rem;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--bone); transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.form-foot { font-size: .8rem; color: var(--ink-3); margin-top: .5rem; }

.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .95rem; }
.alert-success { background: #e8f5ec; color: #1f6b3a; border-left: 3px solid #2ea043; }
.alert-error   { background: #fdecec; color: #a13434; border-left: 3px solid #d85959; }
.alert-info    { background: #e9f0fa; color: #1c4880; border-left: 3px solid #2c5ea6; }

/* Booking page -------------------------------------------- */
.book-section { padding: 3rem 0 5rem; background: var(--bone); }
.book-container { max-width: 920px; }
.book-head { text-align: center; margin-bottom: 2.5rem; }
.book-head p { color: var(--ink-3); margin-bottom: 0; }

.book-progress {
  display: flex; justify-content: center; gap: .5rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.step-pill {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: .85rem; color: var(--ink-3); font-weight: 500;
  transition: all .25s;
}
.step-pill span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream); color: var(--ink-3);
  display: grid; place-items: center; font-weight: 600; font-size: .75rem;
}
.step-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.step-pill.active span { background: var(--gold); color: var(--navy); }
.step-pill.done { background: var(--cream); color: var(--navy); border-color: var(--gold); }
.step-pill.done span { background: var(--gold); color: var(--navy); }
.step-pill.done:hover { background: var(--gold); color: var(--navy); border-color: var(--gold-2); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.step-pill.done::after { content: '✓'; font-weight: 700; color: var(--gold-2); margin-left: .15rem; }
.step-pill.done:hover::after { color: var(--navy); }

.book-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 2rem 2rem 0; min-height: 420px;
}
.book-step { display: none; animation: stepIn .35s ease both; padding-bottom: .5rem; }
.book-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.book-step h2 { font-size: 1.5rem; margin-bottom: .35rem; }
.step-sub { color: var(--ink-3); font-size: .95rem; margin-bottom: 1.5rem; }

.service-pick-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .85rem; margin-bottom: 2rem;
}
.service-pick {
  text-align: left; cursor: pointer;
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem;
  transition: all .15s; font-family: inherit;
}
.service-pick:hover { border-color: var(--gold); }
.service-pick.selected { border-color: var(--navy); background: var(--cream); box-shadow: var(--shadow-md); }
.sp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; }
.sp-icon { width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center; background: var(--cream); font-size: 1.2rem; }
.service-pick.selected .sp-icon { background: var(--white); }
.sp-price { font-weight: 600; color: var(--gold-2); font-size: .82rem; }
.sp-name { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); font-size: 1.1rem; margin-bottom: .3rem; }
.sp-desc { font-size: .87rem; color: var(--ink-3); line-height: 1.4; margin-bottom: .8rem; }
.sp-foot { font-size: .8rem; color: var(--ink-3); font-weight: 500; }

.date-picker-wrap {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  padding: 2rem; background: var(--bone); border-radius: var(--radius);
  margin-bottom: 1rem;
}
.date-input {
  font-family: inherit; font-size: 1.1rem; padding: .85rem 1.1rem;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--white); min-width: 220px;
}
.date-hints { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; color: var(--ink-3); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: .4rem; }
.dot-open { background: #2ea043; } .dot-closed { background: #d85959; }
.date-warning {
  padding: .8rem 1rem; background: #fdf3e7; border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--ink-2); margin-bottom: 1rem;
}

.slots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .6rem; margin-bottom: 2rem; min-height: 60px;
}
.slot-btn {
  font-family: inherit; cursor: pointer;
  padding: .8rem .6rem; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 600; color: var(--navy); font-size: .92rem;
  transition: all .15s;
}
.slot-btn:hover { border-color: var(--gold); background: var(--cream); }
.slot-btn.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.no-slots {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.5rem; background: var(--cream); border-radius: var(--radius);
  text-align: center; color: var(--ink-2); margin-bottom: 2rem;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
}
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label { display: flex; flex-direction: column; gap: .3rem; font-size: .88rem; font-weight: 500; color: var(--ink-2); }
.form-grid input, .form-grid select, .form-grid textarea {
  font-family: inherit; font-size: 1rem; padding: .75rem .95rem;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--bone); transition: border-color .15s;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.review-card { background: var(--bone); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.review-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .65rem 0; border-bottom: 1px dashed var(--line);
}
.review-row:last-child { border-bottom: 0; }
.review-row span { color: var(--ink-3); font-size: .9rem; }
.review-row strong { color: var(--navy); font-weight: 600; text-align: right; }

/* Sticky action bar — always visible without scrolling -------- */
.book-actions {
  display: flex; gap: .75rem; align-items: center;
  position: sticky; bottom: 0;
  margin: 1rem -2rem 0;
  padding: 1rem 2rem 1.25rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 5;
}
.book-actions.end { justify-content: flex-end; }
.book-actions.split { justify-content: space-between; }
.book-actions .btn-lg { flex: 1 1 auto; max-width: 280px; justify-content: center; min-height: 52px; }
.book-actions .btn-ghost { flex: 0 0 auto; min-height: 52px; padding: .75rem 1.1rem; }
@media (max-width: 520px) {
  .book-actions { gap: .5rem; padding: .85rem 1.25rem 1rem; margin: 1rem -1.5rem 0; }
  .book-actions .btn-lg { font-size: .95rem; padding: .9rem 1.2rem; }
  .book-actions .btn-ghost { padding: .75rem .9rem; font-size: .9rem; }
  .book-card { padding: 1.5rem 1.5rem 0; }
}

/* "Selecting…" auto-advance feedback ------------------------- */
.service-pick.locking-in, .slot-btn.locking-in {
  position: relative; pointer-events: none;
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.service-pick.locking-in .sp-icon { background: var(--white); }
.service-pick.locking-in .sp-name,
.service-pick.locking-in .sp-desc { color: var(--white); opacity: .9; }
.service-pick.locking-in .sp-price { background: var(--gold); color: var(--navy); }
.service-pick.locking-in::after, .slot-btn.locking-in::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(200,160,75,.35), transparent);
  animation: shimmer .6s ease-in-out;
  pointer-events: none;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.btn-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white); border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Confirm page -------------------------------------------- */
.confirm-section { padding: 4rem 0; background: var(--bone); min-height: 60vh; }
.confirm-container { max-width: 640px; }
.confirm-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg); text-align: center;
}
.confirm-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #2ea043; color: var(--white);
  display: grid; place-items: center;
  font-size: 2rem; margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(46,160,67,.15);
}
.confirm-icon-err {
  width: 64px; height: 64px; border-radius: 50%;
  background: #d85959; color: var(--white);
  display: grid; place-items: center;
  font-size: 2rem; margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(216,89,89,.15);
  font-weight: 700;
}
.confirm-lead { color: var(--ink-2); margin-bottom: 2rem; }
.confirm-ref {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--cream); padding: .9rem 1.5rem;
  border-radius: var(--radius); margin-bottom: 1.8rem;
}
.confirm-ref span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.confirm-ref strong { font-family: 'SF Mono', monospace; font-size: 1.2rem; color: var(--navy); }
.confirm-grid {
  text-align: left; background: var(--bone); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; margin-bottom: 2rem;
}
.cg-row {
  display: flex; justify-content: space-between; padding: .6rem 0;
  border-bottom: 1px dashed var(--line); font-size: .95rem;
}
.cg-row:last-child { border: 0; }
.cg-row span { color: var(--ink-3); }
.cg-row strong { color: var(--navy); }
.confirm-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.confirm-foot { font-size: .88rem; color: var(--ink-3); padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* WE OFFER -------------------------------------------------- */
.we-offer { padding: 5rem 0; background: var(--white); }
.offer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem; margin-bottom: 2.5rem;
}
.offer-card {
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; transition: all .25s;
}
.offer-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.offer-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 1rem;
}
.offer-card h3 { color: var(--navy); margin-bottom: .8rem; }
.offer-card p { font-size: .95rem; }
.offer-card p + p { margin-top: .75rem; }
.offer-cta { text-align: center; }

/* Experience band ------------------------------------------ */
.experience-band {
  padding: 3.5rem 0; background: var(--navy); color: var(--white);
  position: relative; overflow: hidden;
}
.experience-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200,160,75,.15), transparent 50%);
  pointer-events: none;
}
.experience-inner {
  display: flex; align-items: center; gap: 2.5rem; position: relative;
  max-width: 800px;
}
.experience-stat {
  font-family: 'Fraunces', serif; font-size: 5.5rem; line-height: 1;
  color: var(--gold); font-weight: 600; flex-shrink: 0;
}
.experience-stat span { color: var(--white); }
.experience-text h2 { color: var(--white); margin-bottom: .4rem; }
.experience-text p { color: rgba(255,255,255,.8); margin: 0; font-size: 1.05rem; }
@media (max-width: 600px) {
  .experience-inner { flex-direction: column; text-align: center; gap: 1rem; }
}

/* Newsletter band ------------------------------------------ */
.newsletter-band {
  padding: 4rem 0; background: var(--cream);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.newsletter-band h2 { margin-bottom: .25rem; }
.newsletter-band p { margin: 0; max-width: 480px; }
.newsletter-form { display: flex; gap: .55rem; min-width: 320px; }
.newsletter-form input {
  flex: 1; font-family: inherit; font-size: 1rem;
  padding: .85rem 1.1rem; border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm); background: var(--white);
}
.newsletter-form input:focus { outline: none; border-color: var(--navy); }

/* Vision signoff ------------------------------------------- */
.vision-signoff {
  font-family: 'Fraunces', serif; font-style: italic; color: var(--gold-2);
  font-size: 1.05rem; margin-bottom: 2rem;
}

/* Team grid ------------------------------------------------ */
.team { padding: 5rem 0; background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 800px; margin: 0 auto;
}
.team-card {
  background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all .2s;
}
.team-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.team-name { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--navy); font-weight: 600; }
.team-cred { color: var(--gold-2); font-weight: 600; font-size: .9rem; letter-spacing: .04em; margin-top: .2rem; }
.team-role { color: var(--ink-3); font-size: .85rem; margin-top: .2rem; margin-bottom: .9rem; }
.team-card p { font-size: .92rem; margin: 0; }

/* Ongoing services grid (broader practice) ----------------- */
.services-full { padding: 4rem 0 2rem; background: var(--bone); }
.ongoing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.ongoing-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; transition: all .2s;
}
.ongoing-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.ongoing-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--cream); color: var(--navy);
  display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: .9rem;
}
.ongoing-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.ongoing-card p { font-size: .92rem; margin: 0; }

/* Address block -------------------------------------------- */
.contact-address {
  font-style: normal; line-height: 1.7; color: var(--ink-2);
  margin-bottom: 1.5rem; font-size: 1rem;
}
.contact-address strong { color: var(--navy); font-weight: 600; }

/* Reveal animation ---------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .book-step { animation: none; }
}
