/* Conteur Studios - Offers pages (shared) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #050505;
  --offblack: #101010;
  --border: rgba(200,169,110,0.16);
  --muted: rgba(240,236,228,0.55);
  --body: rgba(255,255,255,0.80);
  --white: #f0ece4;
  --gold: #c8a96e;
  --gold-dim: rgba(200,169,110,0.15);
}

html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(120% 90% at 22% 8%, rgba(40,30,18,.55) 0%, rgba(20,17,14,0) 55%),
    radial-gradient(140% 120% at 88% 100%, rgba(184,147,92,.05) 0%, rgba(20,17,14,0) 50%),
    linear-gradient(160deg, #14110E 0%, #0a0807 48%, #050505 100%);
  background-attachment: fixed;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
/* fine dither layer to break gradient banding on the long dark ramps.
   Normal blend (never mix-blend-mode) so Safari can't wash it out: on a
   position:fixed layer Safari blends against white, not the fixed gradient. */
html::before {
  content: ''; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23d)'/%3E%3C/svg%3E");
}
/* film grain, matching the homepage sections. Kept on NORMAL blend at low
   opacity: overlay on a fixed layer desaturates/lightens the whole page in Safari. */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='on'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23on)' opacity='0.5'/%3E%3C/svg%3E");
}
/* concentric aperture rings, right edge, like Selected Work */
body::after {
  content: ''; position: fixed; right: -220px; top: 14%; width: 640px; height: 640px;
  border-radius: 50%; z-index: 0; pointer-events: none; opacity: 0.55;
  background: repeating-radial-gradient(circle at center, rgba(0,0,0,0) 0 66px, rgba(200,169,110,0.14) 66px 67px);
  -webkit-mask: radial-gradient(circle at center, #000 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0) 78%);
  mask: radial-gradient(circle at center, #000 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0) 78%);
}
main { position: relative; z-index: 1; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
img { display: block; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 60px;
  background: linear-gradient(180deg, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.6) 70%, rgba(10,9,8,0) 100%);
}
nav.scrolled { background: rgba(20,17,14,0.82); backdrop-filter: blur(20px) saturate(1.1); padding: 16px 60px; transition: padding .3s, background .3s; }
nav { transition: padding .3s, background .3s; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark { width: 30px; height: 30px; flex-shrink: 0; display: block; }
.nav-logo-words { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-top {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 300;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--white);
}
.nav-logo-rule { width: 50%; height: 1px; background: rgba(200,169,110,0.5); margin: 5px 0 4px; }
.nav-logo-bottom {
  font-family: 'Space Grotesk', sans-serif; font-size: 7px; font-weight: 300;
  letter-spacing: 0.52em; text-transform: uppercase; color: rgba(200,169,110,0.65);
}
.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; padding: 6px 0; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 11px 24px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: color 0.45s, border-color 0.45s;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.5,.05,.2,1);
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover { color: var(--black); }
.nav-cta { flex: none; }
.nav-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-login {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap;
  color: rgba(240,236,228,0.78); text-decoration: none;
  border: 1px solid rgba(240,236,228,0.28); padding: 11px 20px;
  position: relative; overflow: hidden;
  transition: color 0.45s, border-color 0.45s;
}
.nav-login::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.5,.05,.2,1);
}
.nav-login:hover::before { transform: translateX(0); }
.nav-login span { position: relative; z-index: 1; }
.nav-login:hover { color: var(--black); border-color: var(--white); }
@media (max-width: 1240px) {
  nav, nav.scrolled { padding-left: 32px; padding-right: 32px; }
  .nav-links { gap: 26px; }
}
@media (max-width: 1020px) {
  .nav-links { display: none; }
}
.hamburger { display: none; }

/* ─── SHARED TYPE ─── */
.section-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
h1.offer-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(52px, 6.5vw, 96px); line-height: 1.02; letter-spacing: -0.01em;
  color: var(--white); text-wrap: balance;
}
h1.offer-title em, .page-title em { font-style: italic; color: var(--gold); }

/* ─── OFFER DETAIL ─── */
.offer-hero { padding: 190px 60px 0; }
.offer-hero-inner { max-width: 1200px; margin: 0 auto; }
.offer-hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.offer-price {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(34px, 3.4vw, 52px);
  color: var(--gold); line-height: 1; white-space: nowrap; padding-bottom: 10px;
}
.offer-price small {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.offer-figure { padding: 64px 60px 0; }
.offer-figure-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.offer-figure img { width: 100%; height: clamp(280px, 44vw, 480px); object-fit: cover; filter: saturate(0.92); }
.offer-figure-inner::after {
  content: ''; position: absolute; inset: 14px; border: 1px solid rgba(200,169,110,0.28);
  pointer-events: none;
}
.offer-body { padding: 88px 60px 40px; }
.offer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1fr; gap: 72px; }
.offer-hook {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(24px, 2.3vw, 33px); line-height: 1.42; color: var(--white);
  margin-bottom: 30px; text-wrap: pretty;
}
.offer-desc { font-size: 15.5px; line-height: 1.85; color: var(--body); margin-bottom: 48px; max-width: 56ch; }
.rail-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.included-list { list-style: none; display: flex; flex-direction: column; }
.included-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 15px 0; border-top: 1px solid var(--border);
  font-size: 15px; line-height: 1.55; color: var(--white);
}
.included-list li:last-child { border-bottom: 1px solid var(--border); }
.included-list li::before { content: ''; width: 11px; height: 11px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M63.26,15.45 A37,37 0 1 0 84.55,36.74 L75.21,40.32 A27,27 0 1 1 59.68,24.79 Z' fill='%23c8a96e'/%3E%3Ccircle cx='50' cy='50' r='7' fill='%23c8a96e'/%3E%3C/svg%3E") no-repeat center / contain; opacity: 0.85; flex: none; transform: translateY(3px); }
.offer-rail { border-left: 1px solid var(--border); padding-left: 44px; display: flex; flex-direction: column; gap: 44px; align-self: start; position: sticky; top: 120px; }
.rail-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: 21px; line-height: 1.5; color: var(--white);
}
.clock-row { display: flex; flex-direction: column; gap: 12px; font-size: 14px; line-height: 1.55; color: var(--body); }
.clock-row b { font-weight: 500; color: var(--white); font-family: 'Inter', sans-serif; }
.rail-text { font-size: 14px; line-height: 1.75; color: var(--body); }

/* ─── TERMS + CTA ─── */
.offer-terms { padding: 0 60px; }
.offer-terms-inner {
  max-width: 1200px; margin: 0 auto; padding: 26px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap;
}
.offer-terms .deposit { font-size: 15px; color: var(--white); }
.offer-terms .scarcity {
  font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.offer-cta { padding: 60px; }
.offer-cta-inner {
  max-width: 1200px; margin: 0 auto; background: rgba(20,17,14,0.75);
  border: 1px solid rgba(200,169,110,0.22); padding: 64px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap;
}
.offer-cta-line {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15; color: var(--white);
}
.offer-cta-line em { font-style: italic; color: var(--gold); }
.offer-cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.btn-gold {
  position: relative;
  background: transparent;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 16px 36px; text-decoration: none;
  display: inline-flex; align-items: center;
  white-space: nowrap; overflow: hidden;
  transition: color 0.45s, border-color 0.45s;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(.5,.05,.2,1);
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover { color: var(--black); }
.offer-cta-contact { display: flex; gap: 22px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.offer-cta-contact a { color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.35); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.offer-cta-contact a:hover { color: var(--gold); border-color: var(--gold); }

/* ─── PREV / NEXT ─── */
.offer-adjacent { padding: 0 60px 90px; }
.offer-adjacent-inner {
  max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--border); padding-top: 28px;
}
.adj-link { text-decoration: none; display: flex; flex-direction: column; gap: 8px; max-width: 44%; }
.adj-link .adj-dir {
  font-family: 'Space Grotesk', sans-serif; font-size: 9.5px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); transition: color .3s;
}
.adj-link .adj-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 26px;
  color: var(--white); line-height: 1.1; transition: color .3s;
}
.adj-link:hover .adj-name { color: var(--gold); }
.adj-link:hover .adj-dir { color: var(--gold); }
.adj-link.next { text-align: right; margin-left: auto; align-items: flex-end; }

/* ─── CATALOG (offers index) ─── */
.catalog-hero { padding: 200px 60px 70px; }
.catalog-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(56px, 7vw, 110px); line-height: 1; letter-spacing: -0.01em; color: var(--white);
  margin-bottom: 30px;
}
.catalog-intro { font-size: 15.5px; line-height: 1.85; color: var(--body); max-width: 54ch; }
.catalog-list { padding: 40px 60px 30px; }
.catalog-list-inner { max-width: 1200px; margin: 0 auto; list-style: none; }
.offer-row {
  display: grid; grid-template-columns: 64px 96px 1.15fr 1.35fr auto 30px;
  gap: 32px; align-items: center;
  padding: 30px 0; border-top: 1px solid var(--border);
  text-decoration: none; transition: background .3s;
}
.catalog-list-inner li:last-child .offer-row { border-bottom: 1px solid var(--border); }
.offer-row .row-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; letter-spacing: 0.24em;
  color: rgba(240,236,228,0.4);
}
.offer-row .row-thumb { width: 96px; height: 68px; object-fit: cover; filter: saturate(0.9); opacity: 0.85; transition: opacity .3s; }
.offer-row .row-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05; color: var(--white); transition: color .3s; text-wrap: balance;
}
.offer-row .row-aud {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-top: 10px;
}
.offer-row .row-hook { font-size: 13.5px; line-height: 1.7; color: var(--muted); max-width: 44ch; }
.offer-row .row-price {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 25px; color: var(--white);
  white-space: nowrap; text-align: right;
}
.offer-row .row-price small {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 7px;
}
.offer-row .row-arrow { color: rgba(200,169,110,0.35); display: flex; align-items: center; transition: color .35s, transform .5s; }
.offer-row .row-arrow svg { width: 20px; display: block; }
.offer-row:hover .row-name { color: var(--gold); }
.offer-row:hover .row-thumb { opacity: 1; }
.offer-row:hover .row-arrow { color: var(--gold); transform: rotate(90deg); }

/* ─── RETAINER RATES ─── */
.rates-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px 16px; font-size: 14px;
}
.rates-grid .rates-head {
  font-family: 'Space Grotesk', sans-serif; font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-bottom: 4px;
}
.rates-grid div { color: var(--white); }
.rates-note { font-size: 12.5px; line-height: 1.6; color: var(--muted); margin-top: 14px; }
.tier-block { display: flex; flex-direction: column; gap: 14px; font-size: 14px; line-height: 1.7; color: var(--body); }
.tier-block b { font-weight: 500; color: var(--white); }

/* ─── FOOTER ─── */
footer { padding: 56px 60px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { display: flex; flex-direction: row; align-items: center; gap: 14px; line-height: 1; }
.footer-logo-words { display: flex; flex-direction: column; line-height: 1; }
.footer-mark { width: 44px; height: 44px; flex-shrink: 0; display: block; }
.footer-logo-top {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--white);
}
.footer-logo-rule { width: 50%; height: 1px; background: rgba(200,169,110,0.5); margin: 6px 0 5px; }
.footer-logo-bottom {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 300;
  letter-spacing: 0.5em; text-transform: uppercase; color: rgba(200,169,110,0.65);
}
.footer-copy { font-size: 12px; color: rgba(240,236,228,0.4); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-family: 'Space Grotesk', sans-serif; font-size: 9px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  body::after { display: none; }
  nav, nav.scrolled { padding: 20px 28px; }
  .nav-links { display: none; }
  .offer-hero, .offer-figure, .offer-body, .offer-terms, .offer-cta, .offer-adjacent,
  .catalog-hero, .catalog-list { padding-left: 28px; padding-right: 28px; }
  .offer-hero { padding-top: 140px; }
  .catalog-hero { padding-top: 150px; }
  .offer-grid { grid-template-columns: 1fr; gap: 56px; }
  .offer-rail { position: static; padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 44px; }
  .offer-cta-inner { padding: 40px 28px; }
  .offer-cta-actions { align-items: flex-start; }
  .offer-row { grid-template-columns: 1fr auto; gap: 14px 20px; padding: 26px 0; }
  .offer-row .row-num, .offer-row .row-thumb, .offer-row .row-arrow { display: none; }
  .offer-row .row-hook { grid-column: 1 / -1; }
  .offer-row .row-price { text-align: right; }
  .footer-inner { flex-direction: column; gap: 22px; text-align: center; }
}

/* ─── HAMBURGER + MOBILE MENU ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; background: #050505; z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { list-style: none; text-align: center; margin-bottom: 48px; }
.mobile-nav-links li { margin-bottom: 8px; }
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 8vw, 56px); font-weight: 300;
  color: var(--white); text-decoration: none; letter-spacing: 0.05em; display: block; padding: 8px 0; transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--black); background: var(--gold); padding: 16px 40px;
  text-decoration: none; transition: opacity 0.3s;
}
.mobile-cta:hover { opacity: 0.85; }
@media (max-width: 1020px) { .hamburger { display: flex; } }

/* ─── BOOKING MODAL ─── */
.bk-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(5,5,5,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.bk-overlay.open { opacity: 1; pointer-events: all; }
.bk-modal {
  position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: linear-gradient(160deg, #16120e 0%, #0c0a08 100%);
  border: 1px solid rgba(200,169,110,0.28); padding: 48px;
  transform: translateY(14px); transition: transform 0.35s ease;
}
.bk-overlay.open .bk-modal { transform: translateY(0); }
.bk-close, .portal-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  color: var(--muted); font-size: 30px; line-height: 1; cursor: pointer; padding: 6px; transition: color .3s;
}
.bk-close:hover, .portal-close:hover { color: var(--gold); }
.bk-kicker { font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.bk-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 42px; line-height: 1.05; color: var(--white); margin-bottom: 12px; }
.bk-title em, .portal-welcome em { font-style: italic; color: var(--gold); }
.bk-sub { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin-bottom: 30px; }
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; margin-bottom: 8px; }
.bk-field { display: flex; flex-direction: column; gap: 8px; }
.bk-field.bk-wide { grid-column: 1 / -1; }
.bk-field > span { font-family: 'Space Grotesk', sans-serif; font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(240,236,228,0.55); }
.bk-field > span em { font-style: normal; color: rgba(240,236,228,0.3); letter-spacing: 0.1em; text-transform: none; }
.bk-field input, .bk-field select {
  background: rgba(240,236,228,0.045); border: 1px solid rgba(200,169,110,0.18);
  color: var(--white); font-family: 'Inter', sans-serif; font-weight: 300; font-size: 15px;
  padding: 13px 14px; border-radius: 0; width: 100%; transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.bk-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c8a96e'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.bk-field input:focus, .bk-field select:focus { outline: none; border-color: var(--gold); }
/* dropdown option lists render on the OS's white sheet: force dark text there */
.bk-field select option { color: #14110d; background: #ffffff; }
/* browser autofill paints inputs white/pale yellow: keep text dark on it */
.bk-field input:-webkit-autofill { -webkit-text-fill-color: #14110d; }
.bk-error { min-height: 20px; font-size: 12.5px; color: #d08770; padding: 2px 0 6px; }
.bk-submit { width: 100%; justify-content: center; text-align: center; cursor: pointer; }

/* ─── CLIENT PORTAL ─── */
.portal-view {
  position: fixed; inset: 0; z-index: 320; overflow-y: auto;
  background:
    radial-gradient(120% 90% at 22% 8%, rgba(40,30,18,.55) 0%, rgba(20,17,14,0) 55%),
    linear-gradient(160deg, #14110E 0%, #0a0807 48%, #050505 100%);
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.portal-view::before {
  content: ''; position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='pg'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23pg)' opacity='0.5'/%3E%3C/svg%3E");
}
.portal-view::after {
  content: ''; position: fixed; right: -240px; top: 8%; width: 680px; height: 680px;
  border-radius: 50%; z-index: 0; pointer-events: none; opacity: 0.5;
  background: repeating-radial-gradient(circle at center, rgba(0,0,0,0) 0 70px, rgba(200,169,110,0.14) 70px 71px);
  -webkit-mask: radial-gradient(circle at center, #000 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0) 78%);
  mask: radial-gradient(circle at center, #000 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0) 78%);
}
.portal-shell { position: relative; z-index: 1; }
.portal-hero { position: relative; height: 240px; margin-bottom: 44px; overflow: hidden; }
.portal-hero img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); display: block; }
.portal-hero::after {
  content: ''; position: absolute; inset: 12px; border: 1px solid rgba(200,169,110,0.35); pointer-events: none;
}
.portal-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0) 40%, rgba(10,9,8,0.45) 100%);
}
.portal-card-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 15px 0 13px; border-bottom: 1px solid rgba(200,169,110,0.3);
}
.portal-card-head span { font-family: 'Space Grotesk', sans-serif; font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.portal-card-head .portal-ref { color: rgba(240,236,228,0.55); letter-spacing: 0.18em; }
.portal-view.open { opacity: 1; pointer-events: all; }
.portal-shell { max-width: 860px; margin: 0 auto; padding: 34px 40px 80px; position: relative; }
.portal-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; margin-bottom: 40px; border-bottom: 1px solid rgba(200,169,110,0.16); }
.portal-brand { display: flex; align-items: center; gap: 12px; }
.portal-brand svg { width: 26px; height: 26px; }
.portal-brand span { font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.portal-close { position: static; }
.portal-welcome { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(44px, 6vw, 68px); line-height: 1.02; color: var(--white); margin-bottom: 18px; }
.portal-lede { font-size: 15px; line-height: 1.8; color: var(--body); max-width: 54ch; margin-bottom: 40px; }
.portal-card { border: 1px solid rgba(200,169,110,0.22); background: rgba(20,17,14,0.6); padding: 8px 28px; margin-bottom: 34px; }
.portal-card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 15px 0; border-top: 1px solid rgba(200,169,110,0.12); }
.portal-card-head + .portal-card-row { border-top: none; }
.portal-card-row span { font-family: 'Space Grotesk', sans-serif; font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(240,236,228,0.5); }
.portal-card-row b { font-weight: 400; font-size: 15px; color: var(--white); text-align: right; }
.portal-card-row b.gold { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--gold); }
.portal-pay { font-size: 12px; padding: 19px 42px; }
.portal-secure { font-size: 12.5px; color: rgba(240,236,228,0.45); margin: 16px 0 48px; }
.portal-steps-label { font-family: 'Space Grotesk', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.portal-steps ol { list-style: none; counter-reset: st; }
.portal-steps li { counter-increment: st; display: flex; gap: 18px; padding: 13px 0; border-top: 1px solid rgba(200,169,110,0.1); font-size: 14px; line-height: 1.65; color: var(--body); }
.portal-steps li::before { content: counter(st, decimal-leading-zero); font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; letter-spacing: 0.15em; color: rgba(200,169,110,0.6); padding-top: 4px; flex: none; }
.portal-steps li b { font-weight: 500; color: var(--white); }
.portal-foot { margin-top: 44px; font-size: 13px; color: var(--muted); }
.portal-foot a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(200,169,110,0.35); }

/* ─── MOBILE POLISH ─── */
@media (max-width: 640px) {
  .nav-actions { display: none; }
  .offer-hero, .offer-figure, .offer-body, .offer-terms, .offer-cta, .offer-adjacent,
  .catalog-hero, .catalog-list { padding-left: 20px; padding-right: 20px; }
  .offer-hero { padding-top: 120px; }
  .catalog-hero { padding-top: 130px; padding-bottom: 40px; }
  .offer-hero-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .offer-price { padding-bottom: 0; }
  .offer-figure { padding-top: 40px; }
  .offer-figure img { height: 240px; }
  .offer-figure-inner::after { inset: 9px; }
  .offer-body { padding-top: 56px; }
  .offer-grid { gap: 44px; }
  .offer-desc { margin-bottom: 36px; }
  .offer-terms-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 0; }
  .offer-cta { padding-top: 24px; padding-bottom: 24px; }
  .offer-cta-inner { padding: 34px 24px; }
  .offer-cta-line { font-size: 30px; }
  .btn-gold { width: 100%; justify-content: center; }
  .offer-cta-contact { gap: 14px; }
  .offer-adjacent-inner { flex-direction: column; gap: 22px; }
  .adj-link, .adj-link.next { max-width: 100%; text-align: left; align-items: flex-start; margin-left: 0; }
  .adj-link .adj-name { font-size: 22px; }
  .offer-row { padding: 22px 0; }
  .offer-row .row-name { font-size: 24px; }
  .offer-row .row-hook { font-size: 13px; }
  .offer-row .row-price { font-size: 20px; }
  .page-title { margin-bottom: 22px; }
  .catalog-intro { font-size: 14px; }
  .bk-modal { padding: 36px 24px; }
  .bk-grid { grid-template-columns: 1fr; }
  .bk-title { font-size: 34px; }
  .portal-shell { padding: 24px 20px 64px; }
  .portal-card { padding: 4px 18px; }
  .portal-hero { height: 170px; margin-bottom: 32px; }
  .portal-hero::after { inset: 8px; }
  .portal-card-row { flex-direction: column; gap: 5px; padding: 12px 0; }
  .portal-card-row b { text-align: left; }
  .portal-pay { width: 100%; justify-content: center; text-align: center; }
  footer { padding: 44px 20px; }
}
