/* =========================================================================
   GROWFRONT MEDIA — Landing Page (Dark · Black & Gold)
   Brand palette: #080808 / #C9A84C / Cormorant Garamond + DM Sans
   ========================================================================= */

:root {
  /* Palette — black + gold */
  --bg:        #080808;
  --bg-warm:   #0E0E0E;
  --bg-paper:  #111110;
  --bg-deep:   #040404;
  --bg-card:   #131211;

  --ink:       #F5F3EF;   /* primary text */
  --ink-mid:   #D4D2CE;
  --mid:       #888888;
  --dim:       #555555;

  --line:      rgba(245,243,239,0.08);
  --line-soft: rgba(245,243,239,0.05);
  --line-gold: rgba(201,168,76,0.18);

  --gold:        #C9A84C;
  --gold-soft:   #B59235;
  --gold-bright: #DCBE65;
  --gold-dim:    rgba(201,168,76,0.40);
  --gold-faint:  rgba(201,168,76,0.06);

  /* Type — Growfront brand */
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:  'DM Mono', 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Rhythm */
  --pad:    clamp(20px, 4vw, 64px);
  --pad-section: clamp(80px, 11vw, 160px);
  --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "calt";
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Utility */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
}
.eyebrow.accent { color: var(--gold); }
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 14px;
  opacity: 0.5;
}
.serif { font-family: var(--serif); font-weight: 300; letter-spacing: -0.005em; }
.italic { font-style: italic; }
.mono { font-family: var(--mono); }
.muted { color: var(--mid); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-wide { border-top: 1px solid var(--line); }

/* Selection */
::selection { background: var(--gold); color: var(--bg); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-3px);
  box-shadow: 0 0 12px var(--gold);
}
.brand-mark {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 4px;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}
.nav-links a {
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-cta::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.2s ease;
}
.nav-cta:hover::after { transform: translateX(3px); }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, var(--gold-faint) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201,168,76,0.03) 0%, transparent 38%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}
.hero-meta .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201,168,76,0.20), 0 0 18px var(--gold);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(201,168,76,0.20), 0 0 18px var(--gold); }
  50%      { box-shadow: 0 0 0 9px rgba(201,168,76,0.05), 0 0 24px var(--gold); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 102px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 56%;
  height: 2px;
  background: var(--gold);
  opacity: 0.85;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--mid);
  max-width: 580px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-sub strong { color: var(--ink); font-weight: 400; }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-primary::after { content: '→'; transition: transform 0.2s ease; }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost {
  color: var(--ink);
  border-color: transparent;
  padding: 16px 4px;
  letter-spacing: 0.1em;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after {
  content: '↗';
  font-size: 14px;
  opacity: 0.7;
  margin-left: 2px;
}

/* Hero visual — sample feed preview */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 660px;
  perspective: 1400px;
}
.feed-stack {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  transform: rotate(-1.5deg);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 16px 32px -12px rgba(0,0,0,0.5),
    0 0 0 1px var(--line-gold);
}
.feed-stack > * {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.hero-img {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-gold);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feed-tile {
  background:
    linear-gradient(160deg, #1A1815 0%, #0E0E0E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dim);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.feed-tile.t-gold {
  background: linear-gradient(160deg, #2A2316 0%, #14110A 100%);
  color: var(--gold);
}
.feed-tile.t-dark {
  background: linear-gradient(160deg, #0A0A0A 0%, #050505 100%);
  color: var(--mid);
}
.feed-tile.t-edge {
  background: linear-gradient(160deg, #1F1B14 0%, #100E0A 100%);
  color: var(--gold-bright);
}
.tile-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--line-gold);
}
.tile-frame iframe {
  position: absolute;
  top: 0; left: 0;
  transform-origin: top left;
  border: 0;
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: var(--bg);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
  z-index: 4;
  transform: rotate(2deg);
  border: 1px solid var(--gold);
}
.hero-caption .dot {
  color: var(--gold);
  margin-right: 8px;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
}

/* Hero trust strip */
.trust {
  margin-top: clamp(80px, 10vw, 130px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
}
.trust-items {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-mid);
  font-style: italic;
}
.trust-items .sep { color: var(--gold); opacity: 0.5; }

/* =========================================================================
   SECTION HEADERS
   ========================================================================= */
section { position: relative; }
.section { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }
.section-pad-sm { padding-top: clamp(60px,8vw,100px); padding-bottom: clamp(60px,8vw,100px); }
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.section-head .num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 12px;
}
.section-head .num span {
  color: var(--mid);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-weight: 300;
  color: var(--ink);
  max-width: 980px;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head .lede {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 600px;
  margin-top: 28px;
  font-weight: 300;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================================
   PROBLEM SECTION (Section 01)
   ========================================================================= */
.problem {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-pull {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 1080px;
  margin-bottom: 80px;
  font-weight: 300;
}
.problem-pull em { font-style: italic; color: var(--gold); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.problem-card {
  background: var(--bg-warm);
  padding: 44px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s ease;
}
.problem-card:hover { background: var(--bg-card); }
.problem-card .pc-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.problem-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.problem-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}
@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   SYSTEM SECTION (Section 02)
   ========================================================================= */
.system-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: 80px;
  align-items: end;
}
.system-intro .lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ink);
  font-weight: 300;
}
.system-intro .lead em { font-style: italic; color: var(--gold); }
.system-intro p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}
@media (max-width: 860px) {
  .system-intro { grid-template-columns: 1fr; gap: 24px; }
}

.system-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.system-item {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 200px;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s ease;
}
.system-item:hover { background: var(--bg-warm); }
.system-item .si-num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.22em;
  padding-top: 14px;
}
.system-item h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.system-item .si-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  padding-top: 8px;
  font-weight: 300;
}
.system-item .si-body strong { color: var(--ink); font-weight: 400; }
.system-item .si-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: right;
  padding-top: 14px;
  line-height: 1.6;
}
.system-item .si-tag .accent { color: var(--gold); }
@media (max-width: 860px) {
  .system-item { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .system-item .si-tag { text-align: left; }
}

/* =========================================================================
   PORTFOLIO SECTION
   ========================================================================= */
.portfolio {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 64px;
}
.case-meta-item {
  background: var(--bg-deep);
  padding: 26px 30px;
}
.case-meta-item .cm-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.case-meta-item .cm-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.case-note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--mid);
  max-width: 800px;
  margin-bottom: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--gold-dim);
}
@media (max-width: 860px) { .case-meta { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CAROUSEL FEATURE — Lumière swipe strip
   ============================================================ */
.carousel-feature {
  margin-bottom: 60px;
}
.cf-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.cf-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.cf-hint {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.carousel-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 22px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.carousel-strip::-webkit-scrollbar { display: none; }
.cs-card {
  position: relative;
  flex: 0 0 calc((100% - 22px * 2) / 3);
  scroll-snap-align: start;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 0;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cs-card:hover { border-color: var(--gold-dim); }
.cs-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg);
}
.cs-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.cs-card .cs-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.cs-card .cs-fn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.carousel-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.cp-track {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.cp-bar {
  display: block;
  height: 100%;
  width: 16.66%;
  background: var(--gold);
  transition: width 0.25s ease, transform 0.25s ease;
  transform-origin: left;
}
.cp-nav {
  display: flex;
  gap: 8px;
  margin-left: 4px;
}
.cp-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cp-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0,0,0,0.02);
}
@media (max-width: 860px) {
  .cs-card { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 560px) {
  .cs-card { flex: 0 0 78%; }
}

/* ICP relief band — "bonus, not the pitch" */
/* No-break inline span — keep phrases together when natural wrap orphans a word */
.nb { white-space: nowrap; }
.icp-relief {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}
.icp-relief .relief-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.icp-relief .relief-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
  text-wrap: pretty;
}
.icp-relief .relief-text em { color: var(--gold); font-style: italic; }
@media (max-width: 760px) {
  .icp-relief { grid-template-columns: 1fr; gap: 16px; }
}

/* Story strip — 9:16 cards */
.story-card-img img { aspect-ratio: 9 / 16; }
.stories-feature .cs-card { flex: 0 0 calc((100% - 22px * 3) / 4); }
@media (max-width: 860px) {
  .stories-feature .cs-card { flex: 0 0 calc((100% - 22px * 2) / 3); }
}
@media (max-width: 560px) {
  .stories-feature .cs-card { flex: 0 0 60%; }
}

/* Text wrap pretty for body copy that orphans easily */
.di-body, .lede, .hero-sub { text-wrap: pretty; }

/* Posts grid - 1080x1350 — 4:5 ratio */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.post-card {
  position: relative;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.post-card:hover { border-color: var(--gold-dim); }
.post-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.post-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1080px;
  height: 1350px;
  border: 0;
  transform-origin: top left;
  pointer-events: none;
}
.post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}
.post-info .pi-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.post-info .pi-type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 860px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .posts-grid { grid-template-columns: 1fr; } }

/* Story posts — 9:16 */
.stories-block {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.stories-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.stories-head h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 880px;
}
.story-card {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease;
}
.story-card:hover { border-color: var(--gold-dim); }
.story-frame {
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.story-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1080px;
  height: 1920px;
  border: 0;
  transform-origin: top left;
  pointer-events: none;
}
@media (max-width: 760px) { .stories-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   PULL QUOTE / WHY INSTAGRAM
   ========================================================================= */
.pull {
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: left;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pull::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-faint) 0%, transparent 55%);
  pointer-events: none;
}
.pull-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.pull h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 90px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 44px;
}
.pull h2 em { font-style: italic; color: var(--gold); }
.pull p {
  font-size: 19px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 720px;
  font-weight: 300;
}
.pull p strong { color: var(--ink); font-weight: 400; }

/* =========================================================================
   DIFFERENTIATORS (7 items)
   ========================================================================= */
.diff {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.diff-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.diff-item {
  display: grid;
  grid-template-columns: 90px minmax(280px, 1fr) 1.6fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 0.3s ease;
}
.diff-item:hover { background: var(--bg-card); }
.diff-item .di-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  padding-top: 4px;
}
.diff-item h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.diff-item h3 em { font-style: italic; color: var(--gold); }
.diff-item .di-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  padding-top: 10px;
  font-weight: 300;
}
.diff-item .di-body strong { color: var(--ink); font-weight: 400; }
.diff-vs {
  display: inline-block;
  margin-top: 18px;
  padding: 9px 16px;
  background: var(--bg);
  border: 1px solid var(--line-gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.diff-vs span { color: var(--gold); }
@media (max-width: 860px) {
  .diff-item { grid-template-columns: 1fr; gap: 14px; padding: 40px 0; }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.plan {
  background: var(--bg);
  padding: 52px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: background 0.3s ease;
}
.plan:hover { background: var(--bg-warm); }
.plan.featured {
  background: var(--bg-warm);
  position: relative;
}
.plan.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--gold-dim);
}
.plan.featured::before {
  content: 'Most selected';
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.plan-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.plan-name {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.plan-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}
.plan-price .amt {
  font-family: var(--sans);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.plan-price .per {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.plan-for {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.55;
  font-weight: 300;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.plan-features-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pf-group-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 14px;
}
.pf-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
  font-weight: 300;
}
.pf-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  transform: translateX(2px);
}
.pf-item strong { color: var(--ink); font-weight: 400; }
.pf-item.muted { color: var(--dim); }
.pf-item.muted::before { background: var(--dim); }
.plan-cta {
  margin-top: 8px;
  display: inline-flex;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.plan-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.plan.featured .plan-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.plan.featured .plan-cta:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--bg); }

.plans-foot {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--mid);
  font-size: 14px;
  font-weight: 300;
}
.plans-foot strong { color: var(--ink); font-weight: 400; }
.plans-foot .pf-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.plans-foot .pill {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-gold);
  color: var(--ink-mid);
}
@media (max-width: 980px) {
  .plans { grid-template-columns: 1fr; }
}

/* =========================================================================
   ROI CALCULATOR
   ========================================================================= */
.roi {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.roi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  position: relative;
}
.roi-controls {
  padding: 56px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.roi-control h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.roi-control .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.roi-control .label {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
}
.roi-control .value {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.roi-control .value sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.1em;
  margin-left: 4px;
  vertical-align: baseline;
}
.roi-control input[type=range] {
  width: 100%;
  margin-top: 16px;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--line);
  outline: none;
}
.roi-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold), 0 0 12px rgba(201,168,76,0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.roi-control input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.14); }
.roi-control input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}
.roi-control .ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--dim);
  margin-top: 10px;
  text-transform: uppercase;
}

.roi-output {
  padding: 56px;
  background: var(--bg-deep);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.roi-output::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-faint) 0%, transparent 60%);
  pointer-events: none;
}
.roi-output > * { position: relative; z-index: 1; }
.roi-output .ro-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.roi-bignum {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roi-bignum .nm {
  font-family: var(--sans);
  font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--gold);
  line-height: 1;
}
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--gold);
}
.roi-bignum .sub {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
}
.roi-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.roi-breakdown > div {
  background: var(--bg-deep);
  padding: 18px 22px;
}
.roi-breakdown .b-lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.roi-breakdown .b-val {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--ink);
}
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.roi-note {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}
@media (max-width: 980px) {
  .roi-card { grid-template-columns: 1fr; }
  .roi-controls, .roi-output { padding: 36px 28px; }
  .roi-controls { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* =========================================================================
   ICP — WHO THIS IS FOR
   ========================================================================= */
.icp {
  background: var(--bg);
}
.icp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.icp-grid .lead-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ink);
  font-weight: 300;
}
.icp-grid .lead-quote em { font-style: italic; color: var(--gold); }
.icp-grid .lead-quote::before {
  content: '"';
  font-size: 1.4em;
  color: var(--gold);
  line-height: 0.4;
  margin-right: 0.05em;
  vertical-align: -0.06em;
  font-style: italic;
}
.icp-grid .lead-quote::after {
  content: '"';
  font-size: 1.4em;
  color: var(--gold);
  line-height: 0.4;
  margin-left: 0.05em;
  vertical-align: -0.06em;
  font-style: italic;
}
.icp-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.icp-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.icp-row .key {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.icp-row .val {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 300;
}
.icp-row .val strong { color: var(--gold); font-weight: 400; }

@media (max-width: 860px) { .icp-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FAQ — silent objections
   ========================================================================= */
.faq {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  width: 100%;
  text-align: left;
  padding: 36px 0;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.faq-q:hover { opacity: 0.85; }
.faq-q .qn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.22em;
}
.faq-q .qtext {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-style: italic;
}
.faq-q .qicon {
  width: 34px; height: 34px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s ease;
}
.faq-q .qicon::before,
.faq-q .qicon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: all 0.25s ease;
}
.faq-q .qicon::before { width: 12px; height: 1px; }
.faq-q .qicon::after  { width: 1px; height: 12px; }
.faq-item[open] .qicon { background: var(--gold); border-color: var(--gold); }
.faq-item[open] .qicon::before { background: var(--bg); }
.faq-item[open] .qicon::after  { background: var(--bg); transform: rotate(90deg); }
.faq-a {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  padding: 0 0 40px;
}
.faq-a .qatext {
  font-size: 17px;
  line-height: 1.75;
  color: var(--mid);
  max-width: 760px;
  font-weight: 300;
}
.faq-a .qatext p + p { margin-top: 14px; }
.faq-a .qatext strong { color: var(--ink); font-weight: 400; }
@media (max-width: 760px) {
  .faq-q, .faq-a { grid-template-columns: 40px 1fr 28px; gap: 14px; }
}

/* =========================================================================
   FOUNDING CLIENT OFFER
   ========================================================================= */
.founding {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.founding::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.founding::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.founding-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.founding h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--ink);
  font-weight: 300;
  max-width: 960px;
}
.founding h2 em { font-style: italic; color: var(--gold); }
.founding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.founding-grid > div {
  background: var(--bg-deep);
  padding: 32px 36px;
}
.founding-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.founding-grid p {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.003em;
}
.founding-grid p em { font-style: italic; color: var(--gold); }
.founding-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.founding-counter {
  display: flex;
  gap: 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.founding-counter .num {
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 760px) { .founding-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final {
  background: var(--bg);
  padding: clamp(120px, 14vw, 200px) 0 clamp(80px, 10vw, 140px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--gold-faint) 0%, transparent 60%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.final h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 44px;
}
.final h2 em { font-style: italic; color: var(--gold); }
.final p {
  font-size: 20px;
  color: var(--mid);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 52px;
  font-weight: 300;
}
.final-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.final-meta {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.final-meta .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px var(--gold); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--bg-deep);
  color: var(--mid);
  padding: 88px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 380px;
}
.footer-brand .brand { color: var(--ink); font-size: 30px; }
.footer-brand p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink-mid);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
}
.footer-col a { color: var(--ink-mid); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .ig {
  color: var(--gold);
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =========================================================================
   IFRAME SCALING UTILITY
   ========================================================================= */
.scaled-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.scaled-frame iframe {
  border: 0;
  display: block;
  transform-origin: top left;
  pointer-events: none;
}
