/* ============================================================
   1920 STUDIOS - elevated & kinetic
   Clean base, creative energy. Built for 1920studios.com
   ============================================================ */

:root {
  --bg:        #FBFAF8;
  --surface:   #FFFFFF;
  --ink:       #131313;
  --ink-soft:  #2E2E2C;
  --muted:     #6A6A64;
  --line:      #E6E3DC;
  --accent:    #E8431F;
  --accent-2:  #FF8A3D;
  --accent-dk: #C0341380;
  --accent-soft:#FCEAE3;
  --night:     #121211;
  --radius:    16px;
  --maxw:      1200px;
  --shadow:    0 1px 2px rgba(20,20,20,.04), 0 18px 40px rgba(20,20,20,.09);
  --grad:      linear-gradient(105deg, var(--accent), var(--accent-2));
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
section { scroll-margin-top: 84px; }

/* ---------- type ---------- */
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }

.mono {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.eyebrow {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead { font-size: 1.14rem; color: var(--muted); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,67,31,.32); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform .18s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,248,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.01em; font-size: 1.05rem; }
.brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: .68rem; font-weight: 800;
  font-family: "Space Mono", monospace;
  transition: transform .25s var(--ease), background .25s ease;
}
.brand:hover .mark { transform: rotate(-8deg); background: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .15s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 2px; background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 23px; height: 2px; background: var(--ink); margin: 5px auto; transition: .25s var(--ease); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 104px 0 86px; overflow: hidden; }
.hero-blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 620px; height: 620px; border-radius: 50%;
  background: var(--grad); filter: blur(120px); opacity: .26;
  top: -190px; right: -150px;
  animation: float 14s ease-in-out infinite;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2.4s ease-in-out infinite; }
.hero h1 { font-size: clamp(2.9rem, 7.2vw, 5.6rem); max-width: 16ch; }
.hero h1 .stop { position: relative; display: inline-block; }
.hero h1 .stop::after {
  content: ""; position: absolute; left: 0; bottom: .07em;
  width: 100%; height: .12em; background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  animation: draw 1s var(--ease) .5s forwards;
}
.hero-rotate {
  margin-top: 24px;
  font-family: "Space Mono", monospace;
  font-size: 1rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero-rotate .rot-track { height: 1.5em; overflow: hidden; }
.hero-rotate .rot-word { display: block; color: var(--ink); font-weight: 700; transition: transform .5s var(--ease); }
.hero p.hero-desc { margin-top: 22px; max-width: 50ch; font-size: 1.18rem; color: var(--muted); }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 26px; border-top: 1px solid var(--line); padding-top: 34px;
}
.stat .num { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.03em; }
.stat .lbl { font-size: .84rem; color: var(--muted); margin-top: 3px; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink); color: #fff;
  padding: 17px 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--ink);
}
.marquee-track { display: inline-flex; gap: 0; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: "Space Mono", monospace; font-size: .92rem;
  font-weight: 700; letter-spacing: .04em; padding: 0 26px;
  display: inline-flex; align-items: center; gap: 26px;
}
.marquee-track span::after { content: "\2726"; color: var(--accent); }

/* ---------- section shells ---------- */
.section { padding: 100px 0; }
.section-dark { background: var(--night); color: #fff; }
.section-head { max-width: 62ch; margin-bottom: 50px; }
.sec-no {
  font-family: "Space Mono", monospace; font-size: .8rem;
  font-weight: 700; color: var(--accent); letter-spacing: .1em;
}
.section-head .eyebrow { display: inline-block; margin: 0 0 16px 14px; }
.section-head h2 { margin-top: 4px; }
.section-head p { margin-top: 16px; }
.section-dark .lead, .section-dark .section-head p { color: rgba(255,255,255,.62); }

/* ---------- UGC ---------- */
.ugc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 1.3rem; font-weight: 800;
  margin-bottom: 18px; transition: transform .25s var(--ease);
}
.card:hover .ico { transform: rotate(-8deg) scale(1.08); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .96rem; color: var(--muted); }

/* ---------- locations ---------- */
.loc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.loc-list { list-style: none; }
.loc-list li {
  padding: 20px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 16px; align-items: baseline;
  transition: padding-left .2s var(--ease);
}
.loc-list li:hover { padding-left: 8px; }
.loc-list li:last-child { border-bottom: none; }
.loc-list .pin { color: var(--accent); font-weight: 800; }
.loc-list .place { font-weight: 700; }
.loc-list .desc { color: var(--muted); font-size: .92rem; }
.team { display: grid; gap: 18px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 18px; align-items: center;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .avatar {
  width: 66px; height: 66px; flex: none; border-radius: 50%;
  overflow: hidden; background-color: var(--ink);
  background-size: cover; background-position: center;
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 1.35rem;
}
.team-card .role {
  font-family: "Space Mono", monospace; color: var(--accent);
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.team-card .name { font-weight: 800; font-size: 1.18rem; color: var(--ink); }
.team-card .bio { color: var(--muted); font-size: .92rem; margin-top: 3px; }

/* ---------- portfolio ---------- */
.folio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.folio {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; color: #fff; isolation: isolate;
  transition: transform .3s var(--ease);
}
.folio:hover { transform: translateY(-6px); }
/* --media holds EITHER a gradient OR a photo url. */
.folio::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-color: #141414;
  background-image: var(--media, linear-gradient(135deg,#2b2b2b,#0e0e0e));
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform .5s var(--ease);
}
.folio:hover::before { transform: scale(1.06); }
.folio::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.12));
}
.folio .play-badge {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 1.5px solid rgba(255,255,255,.75);
  display: grid; place-items: center;
}
.folio .play-badge::before {
  content: ""; width: 0; height: 0;
  border-left: 12px solid #fff; border-block: 7px solid transparent; margin-left: 3px;
}
.folio .tag {
  font-family: "Space Mono", monospace; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2);
}
.folio .title { font-size: 1.7rem; font-weight: 800; margin-top: 8px; letter-spacing: -0.02em; }
.folio .meta { font-size: .92rem; opacity: .82; margin-top: 5px; }

/* ---------- statement band ---------- */
.statement { background: var(--accent); color: #fff; padding: 92px 0; overflow: hidden; }
.statement .wrap { position: relative; }
.statement .sec-no { color: rgba(255,255,255,.7); }
.statement p {
  font-size: clamp(1.7rem, 3.6vw, 3rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.16; max-width: 20ch; margin-top: 14px;
}
.statement .sig {
  margin-top: 26px; font-family: "Space Mono", monospace;
  font-size: .85rem; letter-spacing: .06em; opacity: .8;
}

/* ---------- blog preview ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .thumb {
  height: 158px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--c1,#e9e6df), var(--c2,#d8d3c8));
  display: grid; place-items: center;
  color: rgba(0,0,0,.3); font-weight: 800; letter-spacing: .06em;
  font-family: "Space Mono", monospace; font-size: .9rem;
}
.post .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post .kicker {
  font-family: "Space Mono", monospace; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent);
}
.post h3 { margin: 9px 0; }
.post p { font-size: .92rem; color: var(--muted); flex: 1; }
.post .date { font-size: .8rem; color: var(--muted); margin-top: 16px; font-family: "Space Mono", monospace; }

/* ---------- quote builder ---------- */
.quote { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.quote-build {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 30px 30px;
}
.quote-presets {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 20px 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.qp-label {
  font-family: "Space Mono", monospace; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  margin-right: 4px;
}
.preset-btn {
  font: inherit; font-size: .86rem; font-weight: 600; cursor: pointer;
  padding: 9px 16px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
  transition: border-color .15s ease, background .15s ease, transform .15s var(--ease);
}
.preset-btn:hover { border-color: var(--ink); transform: translateY(-2px); }
.preset-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.q-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.q-block:last-child { border-bottom: none; }
.q-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.q-num { font-family: "Space Mono", monospace; font-size: .8rem; font-weight: 700; color: var(--accent); }
.q-head h3 { font-size: 1.08rem; }
.q-hint { font-size: .84rem; color: var(--muted); }

.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg button {
  font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  padding: 11px 16px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink-soft);
  transition: all .15s var(--ease);
}
.seg button:hover { border-color: var(--ink); }
.seg button.active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }

.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 42px; height: 42px; border-radius: 11px; cursor: pointer;
  border: 1.5px solid var(--line); background: var(--bg);
  font-size: 1.4rem; line-height: 1; color: var(--ink);
  display: grid; place-items: center;
  transition: all .15s var(--ease);
}
.stepper button:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; transform: none; border-color: var(--line); color: var(--ink); }
.stepper-val { font-size: 1.5rem; font-weight: 800; min-width: 38px; text-align: center; }
.stepper-unit { font-size: .9rem; color: var(--muted); }

.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.addon {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  padding: 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg); transition: border-color .15s ease, background .15s ease;
}
.addon:hover { border-color: var(--ink); }
.addon.on { border-color: var(--accent); background: var(--accent-soft); }
.addon input { margin-top: 2px; accent-color: var(--accent); width: 17px; height: 17px; flex: none; }
.addon .a-name { font-weight: 600; font-size: .92rem; }
.addon .a-price { font-size: .82rem; color: var(--muted); font-family: "Space Mono", monospace; }

.quote-summary {
  position: sticky; top: 96px;
  background: var(--night); color: #fff;
  border-radius: var(--radius); padding: 30px;
}
.qs-label {
  font-family: "Space Mono", monospace; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55);
}
.qs-total { display: flex; align-items: baseline; gap: 2px; margin: 8px 0 4px; }
.qs-cur { font-size: 1.6rem; font-weight: 700; color: var(--accent-2); }
#qsTotal { font-size: 3.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.qs-per { font-size: 1rem; color: rgba(255,255,255,.5); margin-left: 4px; }
.qs-lines { list-style: none; margin: 22px 0; border-top: 1px solid rgba(255,255,255,.12); }
.qs-lines li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.qs-lines li .qs-item { color: rgba(255,255,255,.82); }
.qs-lines li .qs-amt { font-family: "Space Mono", monospace; color: #fff; white-space: nowrap; }
.qs-lines li.empty { color: rgba(255,255,255,.4); justify-content: center; border-bottom: none; }
.quote-summary .btn { width: 100%; justify-content: center; }
.quote-summary .btn-primary { background: var(--accent); color: #fff; }
.quote-summary .btn-primary:hover { background: #fff; color: var(--ink); }
.qs-fine { margin-top: 14px; font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ---------- about ---------- */
.about-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
.about-portrait {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, #2c2c2c, #111);
  background-size: cover; background-position: center;
  color: #fff; min-height: 380px; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-portrait .pf-mark { font-size: 3.6rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.about-portrait .pf-cap { opacity: .8; margin-top: 9px; font-size: .9rem; font-family: "Space Mono", monospace; }
.about-body p { margin-top: 17px; color: var(--ink-soft); font-size: 1.04rem; }
.about-body p:first-child { margin-top: 0; }
.about-body p:first-child { font-size: 1.2rem; color: var(--ink); font-weight: 500; }
.about-sign { margin-top: 28px; font-weight: 800; font-size: 1.1rem; }
.about-sign span { display: block; font-weight: 400; color: var(--muted); font-size: .85rem; font-family: "Space Mono", monospace; margin-top: 2px; }

/* ---------- podcast ---------- */
.podcast .wrap { padding-block: 4px; }
.podcast-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: center; }
.podcast h2 { margin: 14px 0; }
.podcast-embed {
  background: #1d1d1b; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 34px; text-align: center;
}
.podcast-embed .play {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--grad); margin: 0 auto 18px;
  display: grid; place-items: center; cursor: pointer;
  transition: transform .2s var(--ease);
}
.podcast-embed .play:hover { transform: scale(1.08); }
.podcast-embed .play::before {
  content: ""; width: 0; height: 0;
  border-left: 18px solid #fff; border-block: 11px solid transparent; margin-left: 5px;
}
.podcast-embed .ep { font-weight: 700; }
.podcast-embed .sched { color: rgba(255,255,255,.55); font-size: .88rem; margin-top: 5px; font-family: "Space Mono", monospace; }

/* ---------- contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; }
.contact-info p { color: var(--muted); margin-top: 14px; }
.contact-info .line { margin-top: 22px; }
.contact-info .line .k {
  font-family: "Space Mono", monospace; font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.contact-info .line .v { font-weight: 700; font-size: 1.08rem; }
.contact-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form label { display: block; margin-bottom: 18px; }
form .lab { font-size: .82rem; font-weight: 600; margin-bottom: 7px; display: block; }
form input, form select, form textarea {
  width: 100%; font: inherit; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
form textarea { resize: vertical; min-height: 124px; }
form .btn-primary { width: 100%; justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--night); color: #fff; padding: 60px 0 34px; }
.foot-top { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.foot-brand { max-width: 32ch; }
.foot-brand .brand { color: #fff; }
.foot-brand .brand .mark { background: var(--accent); }
.foot-brand p { color: rgba(255,255,255,.55); font-size: .92rem; margin-top: 14px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  font-family: "Space Mono", monospace; font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.7);
  transition: all .15s var(--ease);
}
.foot-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.foot-cols { display: flex; gap: 58px; flex-wrap: wrap; }
.foot-col h4 {
  font-family: "Space Mono", monospace; font-size: .74rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px;
}
.foot-col a { display: block; font-size: .92rem; padding: 6px 0; color: rgba(255,255,255,.78); transition: color .15s ease; }
.foot-col a:hover { color: var(--accent-2); }
.foot-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.45);
  font-family: "Space Mono", monospace;
}

/* ---------- animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,40px) scale(1.12); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
@keyframes draw { to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-blob { animation: none; }
  .hero h1 .stop::after { animation: none; transform: scaleX(1); }
  html { scroll-behavior: auto; }
}

/* ---------- blog page ---------- */
.page-hero { position: relative; padding: 80px 0 44px; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.page-hero p { margin-top: 18px; color: var(--muted); max-width: 56ch; font-size: 1.12rem; }
.blog-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface); margin-bottom: 42px;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.blog-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-feature .ft-img {
  background: linear-gradient(135deg,#1f1f1f,#3a3a38);
  min-height: 300px; display: grid; place-items: center;
  color: rgba(255,255,255,.4); font-weight: 800; letter-spacing: .06em;
  font-family: "Space Mono", monospace;
}
.blog-feature .ft-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-feature .ft-body h2 { font-size: 1.9rem; margin: 12px 0; }
.blog-feature .ft-body p { color: var(--muted); }
.blog-feature .ft-body .date { margin-top: 18px; font-size: .82rem; color: var(--muted); font-family: "Space Mono", monospace; }
.blog-empty {
  border: 1.5px dashed var(--line); border-radius: var(--radius);
  padding: 44px; text-align: center; color: var(--muted); margin-top: 38px;
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 10px 30px 22px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .ugc-grid, .blog-grid { grid-template-columns: 1fr; }
  .folio-grid { grid-template-columns: 1fr; }
  .loc-layout, .about-layout, .podcast-layout, .contact-layout, .blog-feature, .quote {
    grid-template-columns: 1fr;
  }
  .quote-summary { position: static; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  form .row { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 58px; }
  .section { padding: 68px 0; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  #qsTotal { font-size: 2.8rem; }
}

/* add-on label text block */
.addon .a-text { line-height: 1.45; }

/* ============================================================
   ADD-ON MODULES  (logo, UGC pitch, package tabs, photo booking)
   ============================================================ */

/* ---- brand logo image ---- */
.brand-logo { height: 42px; width: auto; display: block; transition: transform .25s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }
.foot-brand .brand-logo { height: 50px; }

/* ---- UGC selling-point band ---- */
.ugc-pitch {
  margin-top: 22px;
  background: var(--night); color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.ugc-pitch .eyebrow { color: var(--accent-2); }
.ugc-pitch h3 { font-size: 1.7rem; margin: 12px 0 12px; letter-spacing: -0.02em; }
.ugc-pitch p { color: rgba(255,255,255,.68); font-size: 1rem; }
.ugc-pitch p em { color: #fff; font-style: normal; font-weight: 700; }
.up-list { list-style: none; display: grid; gap: 12px; }
.up-list li {
  position: relative; padding-left: 32px;
  font-size: .98rem; color: rgba(255,255,255,.9); font-weight: 500;
}
.up-list li::before {
  content: "\2192"; position: absolute; left: 0; top: 0;
  color: var(--accent-2); font-weight: 800;
}

/* ---- package tabs ---- */
.pkg-tabs {
  display: inline-flex; gap: 6px; padding: 6px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; margin-bottom: 30px;
}
.pkg-tab {
  font: inherit; font-size: .92rem; font-weight: 600; cursor: pointer;
  padding: 11px 22px; border-radius: 999px;
  border: none; background: transparent; color: var(--muted);
  transition: background .2s var(--ease), color .2s ease;
}
.pkg-tab:hover { color: var(--ink); }
.pkg-tab.active { background: var(--ink); color: #fff; }
.pkg-panel[hidden] { display: none; }

/* ---- photo package picker ---- */
.photo-pkgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.photo-pkgs button {
  font: inherit; cursor: pointer; text-align: left;
  padding: 18px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
  display: flex; flex-direction: column; gap: 4px;
  transition: all .15s var(--ease);
}
.photo-pkgs button:hover { border-color: var(--ink); transform: translateY(-2px); }
.photo-pkgs button.active { border-color: var(--accent); background: var(--accent-soft); }
.pp-name { font-weight: 800; font-size: 1.04rem; }
.pp-spec { font-size: .85rem; color: var(--muted); }
.pp-price {
  font-family: "Space Mono", monospace; font-weight: 700;
  font-size: 1.05rem; color: var(--accent); margin-top: 4px;
}

/* ---- event questionnaire ---- */
.event-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.event-form label { margin-bottom: 0; }
.event-form label.full { grid-column: 1 / -1; }

/* ---- photo summary extras ---- */
.qs-balance {
  display: flex; justify-content: space-between;
  font-size: .86rem; color: rgba(255,255,255,.6);
  padding-top: 12px; margin-top: 4px;
}
.qs-deposit-note {
  background: rgba(255,255,255,.07); border-radius: 10px;
  padding: 12px 14px; margin: 16px 0;
  font-size: .84rem; color: rgba(255,255,255,.78); line-height: 1.5;
}
.qs-deposit-note strong { color: var(--accent-2); }
.book-msg {
  display: none; margin-top: 16px; padding: 14px;
  background: rgba(255,255,255,.08); border-radius: 10px;
  font-size: .88rem; color: #fff; line-height: 1.5;
}
.book-msg.show { display: block; }

@media (max-width: 940px) {
  .ugc-pitch { grid-template-columns: 1fr; gap: 26px; padding: 30px; }
  .photo-pkgs { grid-template-columns: 1fr; }
  .event-form { grid-template-columns: 1fr; }
  .pkg-tabs { display: flex; width: 100%; }
  .pkg-tab { flex: 1; padding: 11px 10px; }
}

/* photo summary total */
#photoTotal { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }

/* grid-child guards */
.up-left { min-width: 0; }
.photo-summary { min-width: 0; }

/* logo tile rounding (real jpg on light header) */
.brand-logo { border-radius: 8px; }

/* ---- Buzz Bites (coming soon) ---- */
.buzz {
  background: var(--night); color: #fff;
  border-radius: var(--radius);
  padding: 62px 50px; text-align: center;
  position: relative; overflow: hidden;
}
.buzz::before {
  content: ""; position: absolute; z-index: 0;
  width: 480px; height: 480px; border-radius: 50%;
  background: var(--grad); filter: blur(130px); opacity: .22;
  top: -190px; left: 50%; transform: translateX(-50%);
}
.buzz > * { position: relative; z-index: 1; }
.buzz-badge {
  display: inline-block; font-family: "Space Mono", monospace;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--night); background: var(--accent-2);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.buzz .eyebrow { display: block; color: var(--accent-2); margin-bottom: 10px; }
.buzz h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.buzz p { color: rgba(255,255,255,.7); max-width: 62ch; margin: 18px auto 0; }
.buzz-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px 0 4px; }
.buzz-chips span {
  font-size: .84rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  padding: 8px 16px; color: rgba(255,255,255,.85);
}
.buzz-cta-line { font-weight: 500; color: rgba(255,255,255,.82) !important; }
.buzz-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: 24px auto 0; max-width: 480px;
}
.buzz-form input {
  flex: 1; min-width: 220px; font: inherit;
  padding: 14px 18px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color: #fff;
}
.buzz-form input::placeholder { color: rgba(255,255,255,.45); }
.buzz-form input:focus { outline: none; border-color: var(--accent-2); }
.buzz-form .btn-primary { background: var(--accent); color: #fff; }
.buzz-form .btn-primary:hover { background: #fff; color: var(--ink); }
.buzz .book-msg { max-width: 480px; margin-left: auto; margin-right: auto; }
@media (max-width: 940px) { .buzz { padding: 44px 24px; } }

/* ============================================================
   HOMEPAGE v2  -  services-led, system, AI
   ============================================================ */

/* ---- hero credits strip (replaces number stats) ---- */
.hero-credits {
  margin-top: 56px; border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; gap: 8px 22px; flex-wrap: wrap; align-items: baseline;
}
.hero-credits .hc-label {
  font-family: "Space Mono", monospace; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
}
.hero-credits .hc-names { font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; }
.hero-credits .hc-names span { color: var(--accent); padding: 0 4px; }

/* ---- services: hairline editorial grid ---- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.svc {
  background: var(--surface); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 10px; min-height: 248px;
  transition: background .2s var(--ease);
}
.svc:hover { background: var(--accent-soft); }
.svc-no {
  font-family: "Space Mono", monospace; font-size: .8rem;
  font-weight: 700; color: var(--accent); letter-spacing: .08em;
}
.svc h3 { font-size: 1.26rem; margin-top: 2px; }
.svc p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc-link {
  font-family: "Space Mono", monospace; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.svc:hover .svc-link { color: var(--accent); }
.svc-link .arrow { transition: transform .18s var(--ease); }
.svc:hover .svc-link .arrow { transform: translateX(4px); }

/* ---- the 1920 system: flow ---- */
.sys-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sys-step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; position: relative;
}
.sys-step .s-no {
  font-family: "Space Mono", monospace; font-size: 2.4rem; font-weight: 800;
  color: var(--line); line-height: 1; letter-spacing: -0.04em;
}
.sys-step h3 { margin: 10px 0 7px; }
.sys-step p { color: var(--muted); font-size: .9rem; }
.sys-step:not(:last-child)::after {
  content: "\2192"; position: absolute; right: -13px; top: 50%;
  transform: translateY(-50%); z-index: 2;
  color: var(--accent); font-weight: 800; font-size: 1.1rem;
}
.sys-ai {
  margin-top: 16px; background: var(--night); color: #fff;
  border-radius: var(--radius); padding: 26px 32px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.sys-ai .sa-badge {
  font-family: "Space Mono", monospace; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--night); background: var(--accent-2);
  padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}
.sys-ai p { color: rgba(255,255,255,.78); font-size: .98rem; flex: 1; min-width: 260px; }

/* ---- AI section ---- */
.ai-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.ai-grid { display: grid; gap: 14px; }
.ai-item {
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 22px 24px; transition: border-color .2s ease, background .2s ease;
}
.ai-item:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); }
.ai-item .ai-k {
  font-family: "Space Mono", monospace; font-size: .74rem; font-weight: 700;
  color: var(--accent-2); letter-spacing: .06em;
}
.ai-item h3 { font-size: 1.08rem; margin: 6px 0 5px; }
.ai-item p { color: rgba(255,255,255,.62); font-size: .92rem; }
.ai-note {
  margin-top: 22px; font-size: .9rem; color: rgba(255,255,255,.5);
  font-family: "Space Mono", monospace;
}

/* ---- featured portfolio card ---- */
.folio.folio-wide { grid-column: 1 / -1; min-height: 360px; }
.folio.folio-wide .title { font-size: 2.4rem; }
.folio.folio-wide .meta { max-width: 52ch; }

/* ---- packages: un-tabbed group headers ---- */
.pkg-block + .pkg-block {
  margin-top: 56px; padding-top: 56px; border-top: 1px solid var(--line);
}
.pkg-group-head { display: flex; align-items: baseline; gap: 13px; margin-bottom: 24px; flex-wrap: wrap; }
.pkg-group-head .pg-no {
  font-family: "Space Mono", monospace; font-size: .82rem;
  font-weight: 700; color: var(--accent); letter-spacing: .08em;
}
.pkg-group-head h3 { font-size: 1.55rem; letter-spacing: -0.02em; }
.pkg-group-head .pg-hint { font-size: .92rem; color: var(--muted); }

@media (max-width: 940px) {
  .svc-grid { grid-template-columns: 1fr; }
  .sys-flow { grid-template-columns: 1fr; }
  .sys-step:not(:last-child)::after {
    content: "\2193"; right: 50%; top: auto; bottom: -13px; transform: translateX(50%);
  }
  .ai-layout { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   MULTI-PAGE  -  wow landing, explore cards, CTA, consulting
   ============================================================ */

/* ---- landing hero (huge, dark, sleek) ---- */
.lp-hero {
  position: relative; overflow: hidden;
  background: var(--night); color: #fff;
  min-height: 92vh; display: flex; align-items: center;
  padding: 130px 0 90px;
}
.lp-hero .hero-blob { opacity: .4; }
.lp-hero .wrap { position: relative; z-index: 1; }
.lp-hero .hero-eyebrow .eyebrow { color: rgba(255,255,255,.62); }
.lp-hero h1 {
  font-size: clamp(3.2rem, 9.4vw, 8.2rem);
  line-height: .96; letter-spacing: -0.045em; max-width: 15ch;
}
.lp-hero .hero-desc { color: rgba(255,255,255,.66); max-width: 46ch; }
.lp-hero .hero-rotate { color: rgba(255,255,255,.5); }
.lp-hero .hero-rotate .rot-word { color: #fff; }
.lp-hero .btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.lp-hero .btn-ghost:hover { border-color: #fff; }
.lp-hero .hero-credits { border-top-color: rgba(255,255,255,.16); }
.lp-hero .hero-credits .hc-label { color: rgba(255,255,255,.5); }
.lp-hero .hero-credits .hc-names { color: #fff; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 1; font-family: "Space Mono", monospace; font-size: .7rem;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(rgba(255,255,255,.5), transparent);
}

/* ---- explore cards (landing routing) ---- */
.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.explore-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 42px 38px; min-height: 268px;
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
.explore-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.explore-card.dark { background: var(--night); color: #fff; border-color: var(--night); }
.explore-card .ec-no {
  font-family: "Space Mono", monospace; font-size: .82rem; font-weight: 700;
  color: var(--accent); letter-spacing: .1em;
}
.explore-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 14px 0 10px; }
.explore-card p { color: var(--muted); font-size: .98rem; flex: 1; }
.explore-card.dark p { color: rgba(255,255,255,.66); }
.explore-card .ec-go {
  margin-top: 22px; font-family: "Space Mono", monospace; font-weight: 700;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.explore-card .ec-go .arrow { transition: transform .2s var(--ease); }
.explore-card:hover .ec-go .arrow { transform: translateX(5px); }
.explore-card .ec-glow {
  position: absolute; right: -90px; top: -90px; width: 230px; height: 230px;
  border-radius: 50%; background: var(--grad); filter: blur(70px);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.explore-card:hover .ec-glow { opacity: .26; }

/* ---- reusable CTA band ---- */
.cta-band { background: var(--night); color: #fff; text-align: center; }
.cta-band .wrap { padding-block: 88px; }
.cta-band .eyebrow { color: var(--accent-2); }
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 14px auto 0; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.66); max-width: 52ch; margin: 16px auto 0; }
.cta-band .cta-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; }

/* ---- consulting page ---- */
.consult-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.consult-what { list-style: none; margin-top: 6px; }
.consult-what li {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start; font-size: .98rem;
}
.consult-what li:last-child { border-bottom: none; }
.consult-what li::before {
  content: "\2192"; color: var(--accent); font-weight: 800; flex: none;
}
.cal-embed {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface); min-height: 640px;
}
.cal-placeholder {
  padding: 70px 40px; text-align: center; min-height: 640px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.cal-placeholder .cp-mark {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 1.6rem; font-weight: 800;
  font-family: "Space Mono", monospace;
}
.cal-placeholder h3 { font-size: 1.2rem; }
.cal-placeholder p { color: var(--muted); font-size: .94rem; max-width: 40ch; }

@media (max-width: 940px) {
  .explore-grid { grid-template-columns: 1fr; }
  .consult-layout { grid-template-columns: 1fr; gap: 30px; }
  .lp-hero { min-height: 0; padding: 92px 0 70px; }
  .scroll-cue { display: none; }
}

/* ============================================================
   v5  -  bigger logo, video hero, recognition strip
   ============================================================ */

/* ---- bigger logo + taller header ---- */
.brand-logo { height: 52px; }
.foot-brand .brand-logo { height: 60px; }
.nav { height: 82px; }
section { scroll-margin-top: 94px; }
@media (max-width: 940px) {
  .nav-links { top: 82px; }
  .brand-logo { height: 44px; }
}

/* ---- landing hero: full-bleed video background ---- */
.lp-hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--night); }
.lp-hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.lp-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,18,17,.52) 0%, rgba(18,18,17,.7) 55%, rgba(18,18,17,.9) 100%);
}
.lp-hero .wrap { z-index: 2; }
.lp-hero .scroll-cue { z-index: 2; }

/* ---- work: recognition strip ---- */
.recognition {
  margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 26px 32px;
  display: flex; flex-wrap: wrap; gap: 14px 44px; align-items: center;
}
.recognition .rec-label {
  font-family: "Space Mono", monospace; font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--accent);
}
.recognition .rec-item { font-weight: 700; font-size: .98rem; }
.recognition .rec-item span { color: var(--muted); font-weight: 400; }

/* ============================================================
   v6  -  huge nav logo + hero watermark
   ============================================================ */
.brand-logo { height: 58px; }
.foot-brand .brand-logo { height: 64px; }
.nav { height: 88px; }
section { scroll-margin-top: 100px; }
@media (max-width: 940px) {
  .nav-links { top: 88px; }
  .brand-logo { height: 46px; }
}

/* giant faint logo watermark inside the landing hero */
.hero-watermark {
  position: absolute; z-index: 1; pointer-events: none;
  right: -7%; bottom: -16%;
  width: min(74vw, 780px);
  opacity: .07;
}
@media (max-width: 940px) {
  .hero-watermark { right: -16%; bottom: -8%; width: 92vw; opacity: .06; }
}

/* ============================================================
   v7  -  bottom CTA video band (logo watermark removed)
   ============================================================ */
.cta-band.has-video { position: relative; overflow: hidden; }
.cta-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--night); }
.cta-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.cta-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,18,17,.8), rgba(18,18,17,.92));
}
.cta-band.has-video .wrap { position: relative; z-index: 2; }

/* portfolio photo crop: bias toward the top so faces aren't cut */
.folio.media-top::before { background-position: center 20%; }
