/* 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: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
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(5,5,5,0.92) 0%, rgba(5,5,5,0.72) 70%, rgba(5,5,5,0) 100%);
}
nav.scrolled { background: rgba(5,5,5,0.92); backdrop-filter: blur(12px); 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.22em; text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 13px 26px; text-decoration: none;
  transition: background .3s;
}
.nav-cta:hover { background: #d8bc85; }
.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: 16px; height: 1px; background: var(--gold); flex: none; transform: translateY(-4px); }
.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: var(--offblack);
  border: 1px solid var(--border); 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 {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 17px 38px; text-decoration: none; transition: background .3s;
  white-space: nowrap;
}
.btn-gold:hover { background: #d8bc85; }
.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: var(--gold); font-size: 18px; transition: transform .35s; }
.offer-row:hover .row-name { color: var(--gold); }
.offer-row:hover .row-thumb { opacity: 1; }
.offer-row:hover .row-arrow { transform: translateX(6px); }

/* ─── 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) {
  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; }
}
