*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F0EA;
  --cream-dark: #EDEBE6;
  --dark:       #111111;
  --mid:        #666666;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-pale:  #F7EFE0;
  --white:      #FFFFFF;
  --gray:       #999999;
  --error:      #C0392B;
  --shadow:     0 8px 40px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  hyphens: none;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ─── INTRO ─────────────────────────────── */
#intro {
  position: fixed; inset: 0;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  animation: introOut 0.7s ease-in-out 2.0s forwards;
}
#intro-logo {
  width: min(600px, 82vw);
  max-height: 82vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(.88) translateY(28px);
  filter: drop-shadow(0 0 60px rgba(201,169,110,.18))
          drop-shadow(0 24px 60px rgba(0,0,0,.6));
  animation:
    logoIn  0.9s cubic-bezier(.22,1,.36,1) .25s forwards,
    logoOut 0.7s ease-in                   1.35s forwards;
}
@keyframes logoIn  { to { opacity:1; transform:scale(1) translateY(0); } }
@keyframes logoOut { to { opacity:0; transform:scale(1.05) translateY(-16px); filter:blur(6px) drop-shadow(0 0 80px rgba(201,169,110,.3)); } }
@keyframes introOut{ to { opacity:0; pointer-events:none; visibility:hidden; } }

#main { opacity:0; animation: mainIn .8s ease 2.3s forwards; }
@keyframes mainIn  { to { opacity:1; } }

/* ─── LAYOUT ────────────────────────────── */
.container   { max-width:1200px; margin:0 auto; padding:0 28px; }
.section     { padding:92px 0; }
.section-tag {
  display:block;
  width:28px; height:2px;
  background:var(--gold);
  margin-bottom:24px;
  font-size:0; line-height:0; overflow:hidden;
}
.section-title {
  font-family:'Spectral',serif;
  font-size:clamp(2rem,3.4vw,3rem); font-weight:300; line-height:1.2;
  color:var(--dark); margin-bottom:20px;
  text-wrap:balance;
}
.section-sub {
  font-size:.94rem; font-weight:300; color:var(--mid); line-height:1.85;
}

/* ─── NAV ───────────────────────────────── */
#nav {
  position:sticky; top:0; z-index:200;
  background:rgba(245,240,234,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--gold-light);
  transition:box-shadow .3s;
}
#nav.scrolled { box-shadow:0 2px 24px rgba(0,0,0,.08); }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:74px; gap:20px;
}
.nav-logo img { height:50px; width:auto; }
.nav-links { display:flex; list-style:none; gap:38px; }
.nav-links a {
  font-size:.72rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  color:var(--dark); opacity:.6; transition:opacity .2s, color .2s;
}
.nav-links a:hover { opacity:1; color:var(--gold); }
.nav-cta {
  padding:11px 28px; background:var(--gold); color:var(--white);
  font-size:.7rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  white-space:nowrap; transition:background .25s, transform .2s;
}
.nav-cta:hover { background:#b8935a; transform:translateY(-1px); }
.nav-burger {
  display:none; flex-direction:column; gap:5px;
  background:none; padding:8px;
}
.nav-burger span {
  display:block; width:22px; height:2px;
  background:var(--dark); transition:all .3s;
}
#mobile-menu {
  display:none; position:fixed; inset:74px 0 0;
  background:var(--cream); z-index:199;
  padding:32px 28px; flex-direction:column; gap:4px; overflow-y:auto;
}
#mobile-menu.open  { display:flex; }
#mobile-menu a {
  display:block; font-size:.95rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase; color:var(--dark);
  padding:14px 0; border-bottom:1px solid var(--gold-light);
}
#mobile-menu .nav-cta { display:block; text-align:center; margin-top:20px; padding:16px; }

/* ─── HERO ──────────────────────────────── */
.hero { min-height:calc(100vh - 74px); display:flex; align-items:center; }
.hero-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:center; padding:80px 28px;
  max-width:1200px; margin:0 auto; width:100%;
}
.hero-badge {
  font-size:.64rem; font-weight:600; letter-spacing:.28em;
  text-transform:uppercase; color:var(--gold); margin-bottom:22px;
}
.hero h1 {
  font-family:'Spectral',serif;
  font-size:clamp(1.9rem,3.4vw,3.2rem); font-weight:300; line-height:1.18;
  color:var(--dark); margin-bottom:26px;
  text-wrap:balance;
}
.hero h1 em { font-style:italic; color:var(--gold); }
.hero-desc {
  font-size:.94rem; font-weight:300; line-height:1.9;
  color:var(--mid); margin-bottom:34px; max-width:490px;
}
.hero-proofs { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:42px; }
.hero-proofs li {
  display:flex; align-items:center; gap:11px;
  font-size:.85rem; font-weight:400; color:var(--dark);
}
.proof-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); flex-shrink:0; }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; }

.btn-primary {
  padding:15px 36px; background:var(--gold); color:var(--white);
  font-size:.72rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  transition:background .25s, transform .2s;
}
.btn-primary:hover { background:#b8935a; transform:translateY(-2px); }
.btn-outline {
  padding:15px 36px; background:transparent; color:var(--dark);
  border:1.5px solid rgba(17,17,17,.25);
  font-size:.72rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  transition:border-color .25s, color .25s;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* Hero image — floating machine */
.hero-img-wrap {
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.hero-img-wrap img {
  width:100%; max-height:680px;
  object-fit:contain;
  opacity:0;
  animation:
    machineEnter 1.4s cubic-bezier(.22,1,.36,1) .2s forwards,
    machineFloat 5s ease-in-out 1.6s infinite;
  transform-origin:center bottom;
}

@keyframes machineEnter {
  from { opacity:0; transform:translateX(50px) translateY(18px) scale(.94); }
  to   { opacity:1; transform:translateX(0) translateY(0) scale(1); }
}

@keyframes machineFloat {
  0%,100% {
    transform:translateY(0px);
    filter:drop-shadow(0 28px 48px rgba(0,0,0,.13))
           drop-shadow(0 0 50px rgba(70,130,255,.07));
  }
  50% {
    transform:translateY(-18px);
    filter:drop-shadow(0 46px 72px rgba(0,0,0,.18))
           drop-shadow(0 0 80px rgba(70,130,255,.14));
  }
}

/* ─── BENEFITS ──────────────────────────── */
.benefits { background:var(--cream); border-top:1px solid var(--gold-light); border-bottom:1px solid var(--gold-light); }
.benefits-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.benefit-card {
  padding:52px 30px; text-align:center;
  border-right:1px solid var(--gold-light);
  transition:background .3s;
}
.benefit-card:last-child { border-right:none; }
.benefit-card:hover { background:var(--gold-pale); }
.benefit-icon {
  width:56px; height:56px;
  background:var(--gold-pale);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 22px; font-size:1.4rem;
}
.benefit-title {
  font-size:.68rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
}
.benefit-text { font-size:.83rem; font-weight:300; color:var(--mid); line-height:1.75; }

/* ─── ABOUT ─────────────────────────────── */
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
/* about portfolio */
.about-img-wrap {
  position:relative;
  height:600px;
}
.port-a {
  position:absolute;
  top:0; left:0;
  width:80%; height:68%;
  object-fit:cover; object-position:center;
  display:block;
  z-index:1;
}
.port-b {
  position:absolute;
  bottom:0; right:0;
  width:68%; height:56%;
  object-fit:cover; object-position:center;
  display:block;
  z-index:2;
  outline:5px solid var(--cream);
}
/* gold accent line between images */
.about-img-wrap::after {
  content:'';
  position:absolute;
  bottom:calc(56% - 2px); right:calc(32% - 2px);
  width:2px; height:60px;
  background:var(--gold);
  z-index:3;
}
.about-text .section-sub { margin-bottom:30px; }
.feature-list {
  list-style:none; display:flex; flex-direction:column;
  gap:14px; margin-bottom:40px;
}
.feature-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:.88rem; font-weight:300; color:var(--mid); line-height:1.6;
}
.feature-list li::before {
  content:'\25C6'; color:var(--gold); font-size:.55rem;
  flex-shrink:0; margin-top:5px;
}

/* ─── TECH ──────────────────────────────── */
.tech { background:var(--cream-dark); }
.tech-header { text-align:center; margin-bottom:60px; }
.tech-header .section-sub { margin:12px auto 0; max-width:540px; text-align:center; }
.tech-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.tech-card { background:var(--white); overflow:hidden; }
.tech-card-img {
  width:100%; aspect-ratio:16/10;
  object-fit:cover; object-position:center;
  display:block;
}
.tech-card-body { padding:34px; }
.tech-card-lbl {
  font-size:.63rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
}
.tech-card h3 {
  font-family:'Spectral',serif;
  font-size:1.5rem; font-weight:400; color:var(--dark); margin-bottom:14px;
}
.tech-card p { font-size:.87rem; font-weight:300; color:var(--mid); line-height:1.82; }

/* ─── WAVELENGTHS ───────────────────────── */
.waves-header { text-align:center; margin-bottom:52px; }
.waves-header .section-sub { margin:14px auto 0; max-width:540px; text-align:center; }
.waves-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.wave-single { display:flex; justify-content:center; }
.wave-single .wave-card { max-width:560px; width:100%; padding:52px 48px; text-align:center; }
.wave-single .wave-nm { font-size:3.6rem; }
.wave-single .wave-name { font-size:.85rem; margin-bottom:20px; }
.wave-single .wave-desc { font-size:.9rem; line-height:1.9; max-width:480px; margin:0 auto; }
.wave-card {
  padding:36px 24px; border:1px solid var(--gold-light); text-align:center;
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.wave-card:hover { border-color:var(--gold); transform:translateY(-5px); box-shadow:0 12px 32px rgba(0,0,0,.10); }
.wave-nm {
  font-family:'Spectral',serif;
  font-size:2.4rem; font-weight:300; color:var(--gold); line-height:1; margin-bottom:4px;
}
.wave-nm span { font-size:1rem; }
.wave-name {
  font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--dark); margin-bottom:12px;
}
.wave-desc { font-size:.8rem; font-weight:300; color:var(--mid); line-height:1.75; }

/* ─── DISCLAIMER ────────────────────────── */
.disclaimer { background:var(--cream-dark); }
.disclaimer-header { text-align:center; margin-bottom:52px; }
.disclaimer-header .section-sub { margin:12px auto 0; max-width:580px; text-align:center; }
.disclaimer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:40px; }
.disc-card {
  background:var(--white); padding:36px 28px;
  border-top:3px solid var(--gold);
}
.disc-card-icon {
  font-size:1.6rem; margin-bottom:18px; display:block;
}
.disc-card h3 {
  font-family:'Spectral',serif;
  font-size:1.25rem; font-weight:400; color:var(--dark);
  margin-bottom:18px;
}
.disc-list {
  list-style:none; display:flex; flex-direction:column; gap:10px;
}
.disc-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.84rem; font-weight:300; color:var(--mid); line-height:1.65;
}
.disc-list li::before {
  content:'\25C6'; color:var(--gold); font-size:.5rem;
  flex-shrink:0; margin-top:6px;
}
.disc-warning {
  background:rgba(201,169,110,.1);
  border:1px solid var(--gold-light);
  padding:20px 28px;
  display:flex; align-items:flex-start; gap:16px;
}
.disc-warning-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.disc-warning p { font-size:.84rem; font-weight:300; color:var(--mid); line-height:1.75; }
.disc-warning strong { font-weight:600; color:var(--dark); }

/* ─── FAQ ────────────────────────────────── */
.faq { background:var(--cream); }
.faq-header { text-align:center; margin-bottom:52px; }
.faq-header .section-sub { margin:12px auto 0; max-width:540px; text-align:center; }
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
  border-bottom:1px solid var(--gold-light);
  overflow:hidden;
}
.faq-item:first-child { border-top:1px solid var(--gold-light); }
.faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  gap:16px; padding:20px 0; background:none; border:none; text-align:left;
  font-family:'Jost',sans-serif; font-size:.9rem; font-weight:500;
  color:var(--dark); cursor:pointer; transition:color .2s;
}
.faq-q:hover { color:var(--gold); }
.faq-q.open { color:var(--gold); }
.faq-icon {
  width:22px; height:22px; border:1px solid var(--gold-light);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:.8rem; color:var(--gold); flex-shrink:0;
  transition:transform .3s, background .2s;
}
.faq-q.open .faq-icon { transform:rotate(45deg); background:var(--gold); color:var(--white); border-color:var(--gold); }
.faq-a {
  overflow:hidden; max-height:0;
  opacity:0; padding-bottom:0;
  transition:opacity .22s ease;
  font-size:.87rem; font-weight:300; color:var(--mid); line-height:1.85;
}
.faq-a.open {
  max-height:600px; opacity:1; padding-bottom:20px;
  transition:opacity .28s ease;
}

/* responsive */
@media(max-width:768px) {
  .disclaimer-grid { grid-template-columns:1fr; }
}

/* ─── SPECS ─────────────────────────────── */
.specs { background:var(--dark); }
.specs-header { text-align:center; margin-bottom:52px; }
.specs-header .section-title { color:var(--cream); }
.specs-table { width:100%; max-width:800px; margin:0 auto; border-collapse:collapse; }
.specs-table tr { border-bottom:1px solid rgba(201,169,110,.12); }
.specs-table tr:last-child { border:none; }
.specs-table td { padding:16px 20px; font-size:.87rem; line-height:1.5; vertical-align:top; }
.specs-table td:first-child { font-weight:500; color:var(--gold); width:42%; }
.specs-table td:last-child { font-weight:300; color:rgba(245,240,234,.7); }

/* ─── PRICING SECTION ───────────────────── */
.pricing { background:var(--cream-dark); }
.pricing-header { text-align:center; margin-bottom:44px; }
.pricing-header .section-sub { margin:12px auto 0; max-width:520px; text-align:center; }

.pricing-toggle {
  display:flex; max-width:320px; margin:0 auto 52px;
  border:1.5px solid var(--gold-light); overflow:hidden;
}
.ptab {
  flex:1; padding:13px; background:transparent; border:none;
  font-family:'Jost',sans-serif; font-size:.78rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; color:var(--dark);
  opacity:.4; cursor:pointer; transition:all .22s;
}
.ptab.active { background:var(--gold); color:var(--white); opacity:1; }

.pricing-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}

.pricing-photo {
  position:sticky; top:90px;
}
.pricing-photo img {
  width:100%; height:auto;
  display:block;
}

.pricing-list-col { display:flex; flex-direction:column; gap:0; }

.price-group { margin-bottom:28px; }
.price-group-title {
  font-size:.6rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:10px; padding-bottom:8px;
  border-bottom:2px solid var(--gold-light);
}

.price-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid rgba(201,169,110,.18);
}
.price-item:last-child { border-bottom:none; }
.price-name { font-size:.86rem; font-weight:300; color:var(--dark); }
.price-val {
  font-family:'Spectral',serif;
  font-size:1.15rem; font-weight:400; color:var(--gold);
  flex-shrink:0; margin-left:16px;
}

.pricing-book-btn {
  margin-top:32px; width:100%;
  padding:16px; background:var(--gold); color:var(--white); border:none;
  font-family:'Jost',sans-serif; font-size:.74rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  cursor:pointer; transition:background .25s, transform .2s;
}
.pricing-book-btn:hover { background:#b8935a; transform:translateY(-2px); }

/* ─── BOOKING MODAL ─────────────────────── */
.modal-overlay {
  position:fixed; inset:0;
  background:rgba(17,17,17,.65);
  backdrop-filter:blur(10px);
  z-index:400;
  display:flex; align-items:center; justify-content:center;
  padding:16px;
  opacity:0; pointer-events:none;
  transition:opacity .3s;
}
.modal-overlay.open { opacity:1; pointer-events:all; }

.modal-card {
  background:var(--cream);
  width:100%; max-width:960px;
  max-height:92vh;
  display:flex; flex-direction:column;
  transform:scale(.96) translateY(18px);
  transition:transform .38s cubic-bezier(.22,1,.36,1);
  overflow:hidden;
}
.modal-overlay.open .modal-card { transform:scale(1) translateY(0); }

.modal-top {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 32px 0;
  flex-shrink:0;
}
.modal-top-title {
  font-family:'Spectral',serif;
  font-size:1.4rem; font-weight:400; color:var(--dark);
}
.modal-close-btn {
  width:36px; height:36px; border-radius:50%;
  background:rgba(17,17,17,.06); border:none;
  font-size:1.1rem; color:var(--dark);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s, transform .2s; flex-shrink:0;
}
.modal-close-btn:hover { background:rgba(17,17,17,.12); transform:rotate(90deg); }

.modal-body {
  display:grid; grid-template-columns:1fr 320px;
  gap:0; overflow:hidden; flex:1; min-height:0;
}

/* Form side */
.modal-form-wrap {
  padding:24px 32px 32px;
  overflow-y:auto;
}

/* Summary side */
.modal-summary {
  background:var(--dark);
  padding:28px 28px;
  display:flex; flex-direction:column;
  overflow-y:auto;
}
.sum-logo { height:46px; width:auto; margin-bottom:24px; opacity:.8; }
.sum-heading {
  font-size:.62rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); padding-bottom:14px;
  border-bottom:1px solid rgba(201,169,110,.18); margin-bottom:4px;
}
.sum-empty {
  font-size:.82rem; font-weight:300; color:rgba(255,255,255,.22);
  padding:18px 0; text-align:center;
}
.sum-row {
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:10px; padding:11px 0; border-bottom:1px solid rgba(201,169,110,.1);
}
.sum-key {
  font-size:.64rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.38); flex-shrink:0;
}
.sum-val { font-size:.83rem; font-weight:400; color:var(--cream); text-align:right; }
.sum-price-box {
  display:flex; justify-content:space-between; align-items:center;
  background:rgba(201,169,110,.1); padding:15px 16px; margin-top:18px;
}
.sum-price-lbl {
  font-size:.62rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold);
}
.sum-price-val {
  font-family:'Spectral',serif;
  font-size:2rem; font-weight:300; color:var(--gold);
}

/* ─── FORM STYLES ───────────────────────── */
.form-group    { margin-bottom:22px; }
.form-label    {
  display:block; font-size:.67rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase; color:var(--dark); margin-bottom:8px;
}
.form-hint {
  font-size:.67rem; font-weight:300; letter-spacing:0;
  text-transform:none; color:var(--gray); margin-left:6px;
}
.form-input, .form-select, .form-textarea {
  width:100%; padding:12px 14px;
  border:1.5px solid var(--gold-light);
  background:var(--white); color:var(--dark);
  font-family:'Jost',sans-serif; font-size:.88rem; font-weight:300;
  outline:none; appearance:none; -webkit-appearance:none;
  transition:border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--gold); }
.form-input.err, .form-select.err, .form-textarea.err { border-color:var(--error); }
.form-err-msg { display:none; font-size:.7rem; color:var(--error); margin-top:5px; }
.form-group.has-err .form-err-msg { display:block; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-textarea { resize:vertical; min-height:80px; }

.phone-row { display:grid; grid-template-columns:80px 1fr; }
.phone-row .form-select { border-right:none; }

.select-wrap { position:relative; }
.select-wrap::after {
  content:'▾'; position:absolute; right:12px; top:50%; transform:translateY(-50%);
  color:var(--gold); pointer-events:none; font-size:.75rem;
}

.gender-toggle { display:flex; border:1.5px solid var(--gold-light); overflow:hidden; }
.gender-btn {
  flex:1; padding:12px; background:transparent; border:none;
  font-family:'Jost',sans-serif; font-size:.77rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase; color:var(--dark); opacity:.4;
  transition:all .2s;
}
.gender-btn.active { background:var(--gold); color:var(--white); opacity:1; }

/* Calendar */
.cal-wrap { border:1.5px solid var(--gold-light); background:var(--white); padding:14px; }
.cal-head {
  display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;
}
.cal-nav-btn {
  width:30px; height:30px; background:none; border:1px solid var(--gold-light);
  color:var(--dark); font-size:1rem; display:flex; align-items:center; justify-content:center;
  transition:border-color .2s, color .2s;
}
.cal-nav-btn:hover { border-color:var(--gold); color:var(--gold); }
.cal-month-lbl {
  font-size:.78rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--dark);
}
.cal-weekdays { display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:5px; }
.cal-wday {
  text-align:center; font-size:.58rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; color:var(--gold); padding:3px 0;
}
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.cal-cell {
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  font-size:.78rem; font-weight:400; color:var(--dark); cursor:pointer;
  border:1px solid transparent; border-radius:2px; transition:all .14s;
}
.cal-cell:hover:not(.cal-off):not(.cal-empty) { border-color:var(--gold); color:var(--gold); }
.cal-cell.cal-on  { background:var(--gold); color:var(--white); border-color:var(--gold); }
.cal-cell.cal-off { color:rgba(17,17,17,.2); cursor:not-allowed; text-decoration:line-through; }
.cal-cell.cal-today:not(.cal-on) { font-weight:600; color:var(--gold); }
.cal-cell.cal-empty { cursor:default; }

/* Slots */
.slots-wrap { border:1.5px solid var(--gold-light); background:var(--white); padding:14px; min-height:72px; }
.slots-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:7px; }
.slot-btn {
  padding:9px 4px; border:1px solid var(--gold-light); background:transparent;
  color:var(--dark); font-family:'Jost',sans-serif; font-size:.76rem;
  text-align:center; transition:all .14s;
}
.slot-btn:hover:not(.slot-taken) { border-color:var(--gold); color:var(--gold); }
.slot-btn.slot-on   { background:var(--gold); border-color:var(--gold); color:var(--white); font-weight:600; }
.slot-btn.slot-taken {
  background:rgba(17,17,17,.04); color:rgba(17,17,17,.25);
  cursor:not-allowed; border-color:transparent;
  text-decoration:line-through;
}
.slots-empty {
  font-size:.79rem; font-weight:300; color:var(--gray);
  text-align:center; padding:14px 0;
}

.btn-book {
  width:100%; padding:17px; background:var(--gold); color:var(--white); border:none;
  font-family:'Jost',sans-serif; font-size:.74rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  transition:background .25s, transform .2s; margin-top:6px;
}
.btn-book:hover { background:#b8935a; transform:translateY(-2px); }

/* ─── SUCCESS OVERLAY ───────────────────── */
#success-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(17,17,17,.75); z-index:500;
  align-items:center; justify-content:center; padding:20px;
}
#success-overlay.show { display:flex; }
.success-card {
  background:var(--cream); max-width:480px; width:100%;
  padding:48px; text-align:center; max-height:90vh; overflow-y:auto;
}
.success-icon {
  width:60px; height:60px; border-radius:50%;
  background:var(--gold-pale); display:flex; align-items:center;
  justify-content:center; font-size:1.7rem; margin:0 auto 20px;
}
.success-title {
  font-family:'Spectral',serif;
  font-size:1.9rem; font-weight:300; color:var(--dark); margin-bottom:10px;
}
.success-sub {
  font-size:.87rem; font-weight:300; color:var(--mid); line-height:1.75; margin-bottom:26px;
}
.success-details { background:var(--dark); padding:20px; margin-bottom:26px; text-align:left; }
.sdet {
  display:flex; justify-content:space-between; gap:12px;
  padding:8px 0; border-bottom:1px solid rgba(201,169,110,.13); font-size:.82rem;
}
.sdet:last-child { border:none; padding-bottom:0; }
.sdet-k { color:rgba(245,240,234,.42); font-weight:300; }
.sdet-v { color:var(--cream); font-weight:500; text-align:right; }
.btn-wa {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:15px; background:#25D366; color:var(--white); border:none;
  font-family:'Jost',sans-serif; font-size:.76rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase; margin-bottom:10px;
  cursor:pointer; transition:background .25s;
}
.btn-wa:hover { background:#1fb855; }
.btn-close-succ {
  width:100%; padding:13px; background:transparent;
  border:1px solid rgba(17,17,17,.18); color:var(--mid);
  font-family:'Jost',sans-serif; font-size:.72rem;
  font-weight:500; letter-spacing:.12em; text-transform:uppercase;
  cursor:pointer; transition:border-color .2s, color .2s;
}
.btn-close-succ:hover { border-color:var(--gold); color:var(--dark); }

/* ─── FOOTER ────────────────────────────── */
footer { background:var(--dark); padding:68px 0 32px; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:60px; margin-bottom:48px; }
.footer-brand img { height:50px; width:auto; margin-bottom:18px; opacity:.8; }
.footer-brand p { font-size:.83rem; font-weight:300; color:rgba(245,240,234,.42); line-height:1.85; max-width:270px; }
.footer-col h4 {
  font-size:.62rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); margin-bottom:18px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col li { font-size:.83rem; font-weight:300; color:rgba(245,240,234,.46); line-height:1.5; }
.footer-bottom {
  border-top:1px solid rgba(201,169,110,.12); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:10px;
}
.footer-bottom p { font-size:.72rem; font-weight:300; color:rgba(245,240,234,.26); }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width:1024px) {
  .modal-body { grid-template-columns:1fr; }
  .modal-summary { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .section { padding:60px 0; }
  .nav-links, nav .nav-cta { display:none; }
  .nav-burger { display:flex; }
  .hero-inner { grid-template-columns:1fr; gap:36px; padding:48px 28px; }
  .hero-img-wrap { order:-1; }
  .hero-img-wrap img { max-height:380px; }
  .benefits-grid { grid-template-columns:1fr 1fr; }
  .benefit-card { border-right:none; border-bottom:1px solid var(--gold-light); }
  .benefit-card:nth-child(odd) { border-right:1px solid var(--gold-light); }
  .benefit-card:nth-last-child(-n+2) { border-bottom:none; }
  .about-inner { grid-template-columns:1fr; gap:36px; }
  .about-img-wrap { height:340px; }
  .port-a { width:78%; height:65%; }
  .port-b { width:65%; height:54%; }
  .tech-grid { grid-template-columns:1fr; }
  .waves-grid { grid-template-columns:1fr 1fr; }
  .pricing-layout { grid-template-columns:1fr; gap:0; }
  .pricing-photo { position:static; width:100%; }
  .pricing-photo img { width:100%; height:auto; display:block; }
  .pricing-list-col { padding-top:32px; }
  .modal-form-wrap { padding:20px 20px 28px; }
  .modal-top { padding:16px 20px 0; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .slots-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .success-card { padding:28px 20px; }
}
@media (max-width:480px) {
  .benefits-grid { grid-template-columns:1fr; }
  .benefit-card { border-right:none; }
  .waves-grid { grid-template-columns:1fr 1fr; }
}

/* ─── PROMOS SECTION ────────────────────── */
.promos-section { background:var(--cream-dark); }
.promos-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px; }
.promos-grid.single { max-width:460px; margin-inline:auto; }

.promo-card { background:var(--white); border:1px solid var(--gold-light); overflow:hidden; }
.promo-card-expired { opacity:.55; }
.promo-card-img { width:100%; height:auto; display:block; }
.promo-card-noimg {
  background:linear-gradient(135deg,var(--dark) 55%,#2a2015);
  height:220px; display:flex; align-items:center; justify-content:center;
}
.promo-perm-badge {
  font-size:.68rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); border:1px solid var(--gold); padding:10px 22px;
}
.promo-card-body { padding:28px; }
.promo-card-tag {
  font-size:.56rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:8px;
}
.promo-card-title {
  font-family:'Spectral',serif; font-size:1.5rem; font-weight:400;
  color:var(--dark); margin-bottom:6px;
}
.promo-card-sub { font-size:.83rem; font-weight:300; color:var(--mid); margin-bottom:18px; line-height:1.65; }
.promo-price-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.promo-original { font-size:1rem; color:var(--gray); text-decoration:line-through; }
.promo-arrow { color:var(--gold); font-size:1.1rem; }
.promo-new { font-family:'Spectral',serif; font-size:2rem; font-weight:300; color:var(--gold); display:flex; align-items:baseline; gap:7px; }
.promo-pp-lbl { font-family:'Jost',sans-serif; font-size:.72rem; font-weight:500; letter-spacing:.06em; color:var(--mid); text-transform:lowercase; }
.promo-savings {
  font-size:.68rem; font-weight:600; background:var(--gold); color:var(--white);
  padding:4px 10px; letter-spacing:.08em;
}
.promo-expired-badge {
  background:rgba(17,17,17,.07); color:var(--mid); font-size:.7rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; padding:10px; text-align:center; margin-bottom:16px;
}
.promo-perm-label { font-size:.78rem; font-weight:300; color:var(--mid); margin-bottom:16px; }
.promo-countdown {
  display:flex; align-items:center; gap:6px; margin-bottom:18px;
  background:var(--dark); padding:12px 16px; flex-wrap:wrap;
}
.cd-block { display:flex; flex-direction:column; align-items:center; }
.cd-num { font-family:'Spectral',serif; font-size:1.6rem; font-weight:300; color:var(--gold); line-height:1; }
.cd-lbl { font-size:.5rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(245,240,234,.38); }
.cd-sep { font-size:1.3rem; color:var(--gold); margin-bottom:12px; }
.promo-book-btn {
  width:100%; padding:14px; background:var(--gold); color:var(--white); border:none;
  font-family:'Jost',sans-serif; font-size:.72rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase; cursor:pointer; transition:background .25s, transform .2s;
}
.promo-book-btn:hover:not(:disabled) { background:#b8935a; transform:translateY(-2px); }
.promo-book-btn:disabled { background:var(--gray); cursor:not-allowed; transform:none; }

/* Promo toggle in booking modal */
.promo-toggle-label {
  display:flex; align-items:center; gap:12px;
  padding:12px 16px; background:var(--gold-pale); border:1px solid var(--gold-light);
  cursor:pointer; font-size:.72rem; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase; color:var(--dark);
}
.promo-toggle-label input[type=checkbox] { width:18px; height:18px; accent-color:var(--gold); cursor:pointer; }
.modal-promo-cd {
  background:var(--dark); padding:10px 14px; margin-top:12px;
  display:flex; align-items:center; gap:5px; flex-wrap:wrap;
}

@media (max-width:768px) { .promos-grid { grid-template-columns:1fr; } }

/* ─── REDUCED MOTION + P0 INTRO SAFETY ──── */
@media (prefers-reduced-motion: reduce) {
  #intro { animation:none !important; display:none !important; }
  #main  { opacity:1 !important; animation:none !important; }
  #intro-logo { animation:none !important; }
  .modal-card { transition:none !important; }
  .modal-overlay { transition:none !important; }
  * { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
  

/* ==================================================================
   MULTI-PAGE ADDITIONS (2026-09-11)
   New components only. No existing rule above was restyled.
   ================================================================== */

/* Sub-pages carry no intro animation, so #main must be visible at once. */
#main.no-intro { opacity:1; animation:none; }

/* --- INTRO, RE-GROUNDED FOR THE 2026-09-11 LOGO ---------------------
   The redesigned lockup is dark ink + gold on transparency: on the black
   overlay the wordmark and the tagline simply disappear. The overlay is now
   the site cream, which also removes the black-to-cream flash on entry.
   The drop-shadows below are re-tuned for a light ground (the originals were
   glows meant for black). */
#intro { background:var(--cream); }
#intro-logo {
  width:min(520px, 74vw);
  filter: drop-shadow(0 18px 44px rgba(17,17,17,.14));
}
@keyframes logoOut {
  to { opacity:0; transform:scale(1.05) translateY(-16px);
       filter:blur(6px) drop-shadow(0 18px 44px rgba(17,17,17,.05)); }
}

/* --- LOGO SIZING ----------------------------------------------------
   The new wordmark is trimmed to its ink, so it sits wider and shorter than
   the old boxed JPEG at the same CSS height. */
.nav-logo img      { height:46px; }
.footer-brand img  { height:46px; opacity:1; }
/* .modal-summary is a flex column, so a bare <img> gets stretched to the panel
   width and the wordmark comes out squashed. align-self stops that. */
.sum-logo          { height:38px; width:auto; align-self:flex-start; opacity:1; }
@media (max-width:768px) { .nav-logo img { height:38px; } }

/* The footer has four blocks (brand, pages, contact, legal) but the grid was
   only ever given three columns, so the legal block wrapped onto a second row
   and left a hole. */
.footer-grid { grid-template-columns:1.5fr 1fr 1.1fr 1fr; gap:48px; }
@media (max-width:1024px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:768px)  { .footer-grid { grid-template-columns:1fr; } }

/* --- TOUCH TARGETS (WCAG 2.5.8, min 44x44) --------------------------
   Verified with build/mobile-audit.js at 375 / 390 / 412 / 768 px.
   Inline links inside running text are exempt and left alone. */
.nav-logo { display:flex; align-items:center; min-height:44px; }
.nav-burger {
  width:44px; height:44px; padding:0;
  align-items:center; justify-content:center;
}
.modal-close-btn { width:44px; height:44px; }
.gender-btn { padding:15px 12px; min-height:48px; }
.form-input, .form-select { min-height:48px; }
.btn-book, .pricing-book-btn, .promo-book-btn, .btn-wa, .btn-close-succ { min-height:48px; }
.ptab { min-height:44px; }
.promo-toggle-label { min-height:48px; }
.promo-toggle-label input[type=checkbox] { width:22px; height:22px; }
/* the phone, email and map links in the NAP block are primary mobile actions,
   so each gets a tap box of its own rather than a bare text baseline */
.nap-val a  { display:inline-block; padding:12px 0; }
.nap-note a { display:inline-block; padding:12px 0; }
.nap-row    { padding:8px 0; }
/* 11.5px was below the 12px floor the rest of the site keeps to */
.footer-bottom p { font-size:.78rem; }

/* The button styles above are written for <button>; links need the box model. */
a.btn-primary, a.btn-outline, a.nav-cta, a.btn-book {
  display:inline-block; text-align:center; text-decoration:none;
}

/* Six nav items instead of five want a slightly tighter gap on mid widths. */
@media (max-width:1024px) { .nav-links { gap:22px; } }

/* --- LANGUAGE SWITCHER ------------------ */
.lang-switch { display:flex; align-items:center; gap:6px; }
.lang-switch a {
  font-size:.66rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--dark); opacity:.45; padding:4px 2px; transition:opacity .2s, color .2s;
}
.lang-switch a:hover { opacity:1; color:var(--gold); }
.lang-switch a[aria-current="true"] { opacity:1; color:var(--gold); }
.lang-sep { color:var(--gold-light); font-size:.66rem; }
@media (max-width:768px) { #nav .lang-switch { display:none; } }
#mobile-menu .lang-switch { justify-content:center; gap:12px; padding:20px 0 0; }
#mobile-menu .lang-switch a { font-size:.85rem; padding:6px 4px; border-bottom:none; }

/* --- BREADCRUMB ------------------------- */
.breadcrumb { padding:24px 0 0; }
.breadcrumb ol { list-style:none; display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.breadcrumb li { display:flex; align-items:center; gap:8px; }
.breadcrumb li::after { content:"/"; color:var(--gold-light); }
.breadcrumb li:last-child::after { content:none; }
.breadcrumb a, .breadcrumb span {
  /* .75rem = 12px, the floor the rest of the site keeps to. A blog breadcrumb
     ends in a full post title rather than a one-word label, and 10.6px was not
     readable at that length on a phone. */
  font-size:.75rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  color:var(--mid); transition:color .2s;
}
/* a long post title should wrap, not stretch the crumb trail off-screen */
.breadcrumb li:last-child span { display:inline-block; max-width:100%; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb li:last-child span { color:var(--dark); }

/* --- PAGE HEAD (sub-page hero substitute) --- */
.page-head { padding:52px 0 10px; }
.page-head h1 {
  font-family:'Spectral',serif;
  font-size:clamp(2rem,3.6vw,3.1rem); font-weight:300; line-height:1.18;
  color:var(--dark); margin-bottom:20px; text-wrap:balance;
}
.page-head h1 em { font-style:italic; color:var(--gold); }
.page-lead { font-size:1rem; font-weight:300; line-height:1.9; color:var(--mid); max-width:660px; }
.page-head-btns { display:flex; gap:16px; flex-wrap:wrap; margin-top:32px; }

/* --- HUB CARDS (homepage -> sub-pages) --- */
.hub-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--gold-light); }
.hub-card {
  background:var(--white); padding:36px 30px;
  display:flex; flex-direction:column; gap:10px;
  transition:background .25s, transform .2s;
}
.hub-card:hover { background:var(--gold-pale); transform:translateY(-2px); }
.hub-card-lbl { font-size:.58rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); }
.hub-card h3 { font-family:'Spectral',serif; font-size:1.35rem; font-weight:400; color:var(--dark); }
.hub-card p { font-size:.84rem; font-weight:300; line-height:1.75; color:var(--mid); }
.hub-card-more {
  margin-top:auto; padding-top:14px;
  font-size:.66rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
}
@media (max-width:900px) { .hub-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px) { .hub-grid { grid-template-columns:1fr; } }

/* --- ZONE CARDS (treatments page) ------- */
.zone-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.zone-card { background:var(--white); border:1px solid var(--gold-light); padding:32px 28px; }
.zone-card h3 { font-family:'Spectral',serif; font-size:1.4rem; font-weight:400; color:var(--dark); margin-bottom:10px; }
.zone-card > p { font-size:.85rem; font-weight:300; line-height:1.8; color:var(--mid); margin-bottom:20px; }
.zone-list { list-style:none; display:flex; flex-direction:column; gap:9px; }
.zone-list li {
  display:flex; justify-content:space-between; align-items:baseline; gap:14px;
  font-size:.83rem; font-weight:400; color:var(--dark);
  padding-bottom:9px; border-bottom:1px solid var(--cream-dark);
}
.zone-list li:last-child { border-bottom:none; padding-bottom:0; }
.zone-dur { font-size:.72rem; font-weight:400; color:var(--gray); white-space:nowrap; }
@media (max-width:900px) { .zone-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px) { .zone-grid { grid-template-columns:1fr; } }

/* --- STEP LIST (process) ---------------- */
.step-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.step-card { border-top:2px solid var(--gold); padding-top:20px; }
.step-num { font-family:'Spectral',serif; font-size:1.9rem; font-weight:200; color:var(--gold); line-height:1; }
.step-card h3 { font-size:.95rem; font-weight:500; color:var(--dark); margin:10px 0 8px; }
.step-card p { font-size:.82rem; font-weight:300; line-height:1.8; color:var(--mid); }
@media (max-width:900px) { .step-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:520px) { .step-grid { grid-template-columns:1fr; } }

/* --- CONTACT PAGE ----------------------- */
.contact-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:52px; align-items:start; }
.nap-block { background:var(--white); border:1px solid var(--gold-light); padding:34px 30px; }
.nap-row { display:flex; gap:16px; padding:16px 0; border-bottom:1px solid var(--cream-dark); }
.nap-row:last-child { border-bottom:none; }
.nap-row:first-child { padding-top:0; }
.nap-key {
  flex:0 0 92px;
  font-size:.62rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); padding-top:3px;
}
.nap-val { font-size:.9rem; font-weight:300; line-height:1.75; color:var(--dark); }
.nap-val a { border-bottom:1px solid var(--gold-light); transition:color .2s, border-color .2s; }
.nap-val a:hover { color:var(--gold); border-color:var(--gold); }
.nap-val strong { font-weight:500; }
.nap-note { display:block; font-size:.76rem; font-weight:300; color:var(--mid); margin-top:6px; line-height:1.7; }
.nap-note a { border-bottom:1px solid var(--gold-light); }

/* Click-to-load map: no Google cookies until the visitor asks for the map. */
.map-wrap { position:relative; border:1px solid var(--gold-light); background:var(--cream-dark); min-height:420px; }
.map-wrap iframe { display:block; width:100%; height:420px; border:0; }
.map-consent {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px;
  text-align:center; padding:32px; background:var(--cream-dark);
}
.map-consent p { font-size:.84rem; font-weight:300; line-height:1.8; color:var(--mid); max-width:340px; }
@media (max-width:900px) { .contact-grid { grid-template-columns:1fr; gap:36px; } }

/* --- FOOTER NAP ------------------------- */
.footer-nap { list-style:none; display:flex; flex-direction:column; gap:6px; }
.footer-nap li { font-size:.83rem; font-weight:300; opacity:.72; line-height:1.7; }
.footer-nap a { transition:opacity .2s, color .2s; }
.footer-nap a:hover { opacity:1; color:var(--gold); }

/* --- 404 -------------------------------- */
.err-wrap { text-align:center; padding:110px 0 90px; }
.err-code { font-family:'Spectral',serif; font-size:clamp(4rem,12vw,7rem); font-weight:200; color:var(--gold); line-height:1; }
.err-wrap h1 { font-family:'Spectral',serif; font-size:clamp(1.6rem,3vw,2.4rem); font-weight:300; margin:18px 0 16px; }
.err-wrap p { font-size:.95rem; font-weight:300; color:var(--mid); max-width:520px; margin:0 auto 34px; line-height:1.9; }
.err-links { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

/* --- BLOG ------------------------------------------------------------
   Index cards, the answer-first block, the article body and the in-post CTA.
   The article column is capped at 720px because long prose needs a measure. */
.post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.post-card {
  display:flex; flex-direction:column;
  background:var(--white); border:1px solid var(--gold-light);
  transition:transform .2s, box-shadow .25s;
}
.post-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.post-card-img { overflow:hidden; aspect-ratio:3/2; }
.post-card-img img { width:100%; height:100%; object-fit:cover; }
.post-card-body { padding:26px 26px 28px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post-card-cat {
  font-size:.58rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
}
.post-card h2 {
  font-family:'Spectral',serif; font-size:1.3rem; font-weight:400; line-height:1.3; color:var(--dark);
}
.post-card p { font-size:.84rem; font-weight:300; line-height:1.75; color:var(--mid); }
.post-card-meta { margin-top:auto; padding-top:8px; font-size:.72rem; color:var(--gray); }
@media (max-width:900px) { .post-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:620px) { .post-grid { grid-template-columns:1fr; } }

.post { padding:44px 0 0; }
.post .container > * { max-width:760px; margin-left:auto; margin-right:auto; }
.post-head { margin-bottom:30px; }
.post-head h1 {
  font-family:'Spectral',serif;
  font-size:clamp(1.9rem,3.4vw,2.8rem); font-weight:300; line-height:1.2;
  color:var(--dark); margin-bottom:14px; text-wrap:balance;
}
.post-meta { font-size:.76rem; color:var(--gray); letter-spacing:.04em; }
.post-upd { color:var(--gray); }

/* The block an assistant or a featured snippet quotes. Kept visually distinct
   so a reader gets the answer before deciding whether to read on. */
.post-answer {
  background:var(--gold-pale); border-left:3px solid var(--gold);
  padding:24px 28px; margin-bottom:36px;
}
.post-answer-lbl {
  font-size:.6rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:10px;
}
.post-answer p:last-child { font-size:1rem; font-weight:300; line-height:1.85; color:var(--dark); }

.post-hero { margin-bottom:36px; }
.post-hero img { width:100%; height:auto; max-height:420px; object-fit:cover; }

.post-toc { border:1px solid var(--gold-light); padding:22px 26px; margin-bottom:36px; }
.post-toc-lbl {
  font-size:.6rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:12px;
}
.post-toc ol, .post-related ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.post-toc a, .post-related a {
  font-size:.87rem; font-weight:300; color:var(--mid);
  border-bottom:1px solid transparent; transition:color .2s, border-color .2s;
}
.post-toc a:hover, .post-related a:hover { color:var(--gold); border-color:var(--gold-light); }

.post-body p, .post-body li {
  font-size:.97rem; font-weight:300; line-height:1.95; color:var(--mid);
}
.post-body p { margin-bottom:20px; }
.post-body h2 {
  font-family:'Spectral',serif; font-size:1.6rem; font-weight:300;
  color:var(--dark); margin:48px 0 16px; line-height:1.3;
}
.post-body h3 {
  font-family:'Spectral',serif; font-size:1.22rem; font-weight:400;
  color:var(--dark); margin:32px 0 12px;
}
.post-body ul, .post-body ol { margin:0 0 22px 22px; }
.post-body li { margin-bottom:9px; }
.post-body strong { font-weight:500; color:var(--dark); }
.post-body a { color:var(--gold); border-bottom:1px solid var(--gold-light); }
.post-body a:hover { border-color:var(--gold); }
.post-body hr { border:none; border-top:1px solid var(--gold-light); margin:40px 0; }
.post-body blockquote {
  border-left:2px solid var(--gold); padding-left:22px; margin:0 0 22px;
  font-style:italic; color:var(--dark);
}
.post-note {
  display:block; background:var(--cream-dark); border-left:3px solid var(--gold);
  padding:20px 24px; margin:0 0 24px;
}
.post-note p { margin-bottom:0; font-size:.9rem; }
.post-table-wrap { overflow-x:auto; margin-bottom:26px; }
.post-body table { width:100%; border-collapse:collapse; min-width:420px; }
.post-body th, .post-body td {
  text-align:left; padding:13px 14px; border-bottom:1px solid var(--gold-light);
  font-size:.88rem; font-weight:300; color:var(--mid); vertical-align:top;
}
.post-body th {
  font-weight:600; color:var(--dark); font-size:.62rem;
  letter-spacing:.16em; text-transform:uppercase;
}

.post-cta {
  display:block; background:var(--cream-dark);
  padding:34px 32px; margin:52px 0 40px;
}
.post-cta h2 {
  font-family:'Spectral',serif; font-size:1.5rem; font-weight:300;
  color:var(--dark); margin-bottom:12px;
}
.post-cta p { font-size:.92rem; font-weight:300; line-height:1.85; color:var(--mid); margin-bottom:24px; }

.post-related { border-top:1px solid var(--gold-light); padding:32px 0 10px; }
.post-back {
  display:inline-block; margin-top:18px;
  font-size:.68rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
}

/* --- BODY PROSE (legal pages, long copy) --- */
.section-sub a, .page-lead a, .prose a {
  color:var(--gold); border-bottom:1px solid var(--gold-light); transition:border-color .2s;
}
.section-sub a:hover, .page-lead a:hover, .prose a:hover { border-color:var(--gold); }
.prose { max-width:820px; }
.prose p { font-size:.94rem; font-weight:300; line-height:1.9; color:var(--mid); margin-bottom:18px; }
.prose ul, .prose ol { margin:0 0 20px 20px; }
.prose li { font-size:.94rem; font-weight:300; line-height:1.9; color:var(--mid); margin-bottom:7px; }
.prose h2 {
  font-family:'Spectral',serif; font-size:1.6rem; font-weight:300;
  color:var(--dark); margin:46px 0 14px;
}
.prose h3 { font-family:'Spectral',serif; font-size:1.2rem; font-weight:400; color:var(--dark); margin:30px 0 10px; }
.prose table { width:100%; border-collapse:collapse; margin-bottom:24px; }
.prose th, .prose td {
  text-align:left; padding:13px 14px; border-bottom:1px solid var(--gold-light);
  font-size:.85rem; font-weight:300; color:var(--mid); vertical-align:top;
}
.prose th { font-weight:600; color:var(--dark); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; }
.prose-table-wrap { overflow-x:auto; }
.todo-box {
  background:var(--gold-pale); border-left:3px solid var(--gold);
  padding:18px 22px; margin:24px 0;
  font-size:.86rem; font-weight:300; line-height:1.8; color:var(--dark);
}
.prose-updated { font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gray); margin-bottom:8px; }
