/* Distinctive PR and Management — editorial luxury, cream + espresso */
:root {
  --cream: #F6F1E8;
  --ivory: #FBF8F2;
  --sand: #E9DFCE;
  --taupe: #B9A98F;
  --brand: #756653;
  --terra: #A9764F;
  --espresso: #2A211A;
  --ink: #1D1712;
  --display: 'Instrument Serif', serif;
  --body: 'Archivo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--espresso);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 1.1rem;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.06; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -0.01em; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.4rem;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would turn it
   into the containing block for the fixed mobile overlay and collapse it */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: transparent; opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42,33,26,0.08);
}
.nav.scrolled::before { background: rgba(251,248,242,0.94); opacity: 1; }
.nav.scrolled .nav-links a { color: var(--espresso); }
.nav-brand { display: flex; align-items: center; position: relative; }
/* light wordmark defines the footprint; dark one overlays it and cross-fades in */
.brand-logo { height: 2.5rem; width: auto; display: block; transition: opacity 0.35s; }
.brand-logo-dark { position: absolute; top: 0; left: 0; opacity: 0; }
/* over the dark hero: white wordmark. Once scrolled onto cream: espresso wordmark. */
.nav.scrolled .brand-logo-light { opacity: 0; }
.nav.scrolled .brand-logo-dark { opacity: 1; }
/* mobile menu overlay is cream, so show the espresso wordmark there too */
.nav.open .brand-logo-light { opacity: 0; }
.nav.open .brand-logo-dark { opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--ivory); transition: color 0.25s, opacity 0.25s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-cta {
  border: 1px solid var(--terra); color: var(--terra) !important;
  padding: 0.55rem 1.1rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--terra); color: var(--ivory) !important; opacity: 1 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ivory); margin: 6px 0; transition: 0.3s; }
.nav.scrolled .nav-toggle span, .nav.open .nav-toggle span { background: var(--espresso); }

/* ---------- HERO (full-bleed cinematic video, copy at top, ombre into film) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; background: var(--espresso); }
.hero-media { position: absolute; inset: 0; z-index: 0; height: 100%; overflow: hidden; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(42,33,26,0.94) 0%, rgba(42,33,26,0.86) 20%, rgba(42,33,26,0.5) 40%, rgba(42,33,26,0.18) 58%, rgba(42,33,26,0.55) 100%),
    linear-gradient(90deg, rgba(42,33,26,0.72) 0%, rgba(42,33,26,0.22) 42%, rgba(42,33,26,0) 68%);
}
.hero-inner { position: relative; z-index: 2; align-self: start; padding: 8.5rem 2rem 3rem 3.2rem; max-width: 760px; }
.hero .kicker { color: var(--sand); }
.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.8rem);
  color: var(--ivory); letter-spacing: -0.015em;
}
.hero h1 em { color: var(--sand); }
.hero-sub { color: rgba(251,248,242,0.85); max-width: 560px; margin-top: 1.6rem; font-size: 1.02rem; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.95rem 2rem; border-radius: 999px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--terra); color: var(--ivory); }
.btn-solid:hover { background: var(--brand); }
.btn-ghost { border: 1px solid rgba(251,248,242,0.5); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--ivory); }
.hero-foot {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
  padding: 1.2rem 2rem; color: rgba(251,248,242,0.75);
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  border-top: 1px solid rgba(251,248,242,0.18);
}
.hero-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--terra); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); animation: rise 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.d1 { animation-delay: 0.15s; } .d2 { animation-delay: 0.3s; } .d3 { animation-delay: 0.45s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- MARQUEE ---------- */
.marquee { background: var(--espresso); color: var(--sand); overflow: hidden; padding: 1.05rem 0; }
.marquee-track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: slide 36s linear infinite;
  font-family: var(--display); font-size: 1.15rem; font-style: italic; white-space: nowrap;
}
.marquee-track i { color: var(--terra); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- INTRO ---------- */
.intro { padding: 7rem 2.4rem; background: var(--ivory); }
.intro-grid { max-width: 1100px; margin-inline: auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.4rem; align-items: center; }
.intro-media { border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 5; }
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-copy .kicker { margin-bottom: 1.1rem; }
.intro-copy h2 { margin-bottom: 1.6rem; }
.intro-copy h2 .tagline-line { display: block; }
.intro-copy p { max-width: 620px; margin-bottom: 1.1rem; font-size: 1.05rem; color: #4A3F33; }

/* ---------- SECTION HEADS ---------- */
.section-head { max-width: 1100px; margin: 0 auto 3.4rem; padding-inline: 2.4rem; }
.section-sub { color: #6B5D4C; max-width: 560px; margin-top: 1rem; }

/* ---------- SERVICES ---------- */
.services { padding: 7rem 0; background: var(--cream); }
.service-cards {
  max-width: 1200px; margin-inline: auto; padding-inline: 2.4rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.service-card {
  background: var(--ivory); border: 1px solid var(--sand); border-radius: 4px;
  padding: 2.4rem 2rem 2.6rem; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(42,33,26,0.28); }
.card-num { font-family: var(--display); font-style: italic; color: var(--terra); font-size: 1rem; }
.service-card h3 { font-size: 1.7rem; margin: 0.9rem 0 1rem; }
.service-card h3 em { color: var(--brand); }
.service-card > p { font-size: 0.95rem; color: #4A3F33; margin-bottom: 1.4rem; }
.service-card ul li {
  font-size: 0.86rem; color: #6B5D4C; padding: 0.55rem 0 0.55rem 1.3rem;
  border-top: 1px solid var(--sand); position: relative;
}
.service-card ul li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 5px; height: 5px; background: var(--terra); border-radius: 50%; }

/* ---------- METHOD ---------- */
.method { padding: 7rem 0; background: var(--espresso); color: var(--cream); }
.method .kicker { color: var(--taupe); }
.method .section-sub { color: rgba(233,223,206,0.7); }
.method-steps { max-width: 900px; margin-inline: auto; padding-inline: 2.4rem; counter-reset: step; }
.method-steps li {
  display: flex; gap: 1.8rem; padding: 2rem 0;
  border-top: 1px solid rgba(233,223,206,0.16);
}
.method-steps li:last-child { border-bottom: 1px solid rgba(233,223,206,0.16); }
.step-num {
  font-family: var(--display); font-style: italic; font-size: 2.2rem; color: var(--terra);
  line-height: 1; min-width: 2.4rem;
}
.method-steps h4 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--ivory); }
.method-steps p { font-size: 0.93rem; color: rgba(233,223,206,0.75); max-width: 640px; }

/* ---------- STATS ---------- */
.stats { background: var(--espresso); }
.stats-band {
  border-top: 1px solid rgba(233,223,206,0.16);
  max-width: 1200px; margin-inline: auto; padding: 3.6rem 2.4rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat h5 { font-family: var(--display); font-weight: 400; font-size: 2.6rem; color: var(--sand); line-height: 1; }
.stat p { font-size: 0.8rem; color: rgba(233,223,206,0.65); margin-top: 0.7rem; }
.stat p b { color: var(--taupe); font-weight: 500; }
.stats-note { max-width: 1200px; margin-inline: auto; padding: 0 2.4rem 2.6rem; font-size: 0.68rem; color: rgba(233,223,206,0.4); letter-spacing: 0.06em; }

/* ---------- WORK (flip cards) ---------- */
.work { padding: 7rem 0; background: var(--ivory); }
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.work-head-cta { flex-shrink: 0; border-color: var(--terra); color: var(--terra); }
.work-head-cta:hover { border-color: var(--brand); color: var(--brand); }
.flip-grid {
  max-width: 1200px; margin-inline: auto; padding-inline: 2.4rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.flip-card {
  perspective: 1400px; height: 380px; outline: none; cursor: pointer;
}
.flip-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner,
.flip-card:focus-visible .flip-inner,
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

.flip-front, .flip-back {
  position: absolute; inset: 0; border-radius: 4px; overflow: hidden;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.flip-front {
  background: var(--cream); border-top: 2px solid var(--terra);
  padding: 2rem 1.7rem; display: flex; flex-direction: column;
}
.flip-front h4 { font-size: 1.45rem; line-height: 1.1; }
.flip-years {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin: 0.55rem 0 1rem; font-weight: 500;
}
.flip-desc { font-size: 0.88rem; color: #4A3F33; }
.flip-cue {
  margin-top: auto; padding-top: 1rem;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe); font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
}
.flip-cue::after { content: ""; width: 16px; height: 1px; background: var(--terra); transition: width 0.3s ease; }
.flip-card:hover .flip-cue::after { width: 30px; }

.flip-back { transform: rotateY(180deg); background: var(--espresso); }
.flip-back img { width: 100%; height: 100%; object-fit: cover; }
.flip-label {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(29,23,18,0.82));
  color: var(--ivory); font-family: var(--display); font-size: 1.15rem;
}

/* ---------- CREATORS ---------- */
.creators { background: var(--espresso); color: var(--cream); }
.creators-inner {
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 620px;
}
.creators-copy { padding: 6rem 3rem 6rem 2.4rem; align-self: center; }
.creators-copy .kicker { color: var(--taupe); }
.creators-copy h2 { color: var(--ivory); margin-bottom: 1.4rem; }
.creators-copy h2 em { color: var(--sand); }
.creators-copy > p { color: rgba(233,223,206,0.78); max-width: 520px; }
.creators-list { margin: 1.8rem 0 2.4rem; }
.creators-list li {
  padding: 0.7rem 0 0.7rem 1.5rem; border-top: 1px solid rgba(233,223,206,0.16);
  font-size: 0.92rem; color: rgba(233,223,206,0.85); position: relative;
}
.creators-list li::before { content: ""; position: absolute; left: 0; top: 1.25rem; width: 6px; height: 6px; background: var(--terra); border-radius: 50%; }
.creators-media { position: relative; overflow: hidden; }
.creators-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- CONTACT ---------- */
.contact { padding: 7.5rem 2.4rem; background: var(--ivory); text-align: center; }
.contact-inner { max-width: 820px; margin-inline: auto; }
.contact h2 { margin-bottom: 3rem; }
.contact h2 em { color: var(--terra); }
.contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; text-align: left; }
.contact-col { border: 1px solid var(--sand); background: var(--cream); padding: 2rem; border-radius: 4px; }
.contact-col h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.contact-col p { font-size: 0.9rem; color: #6B5D4C; margin-bottom: 1.2rem; }
.contact-link {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--terra); border: none; border-bottom: 1px solid var(--terra); padding: 0 0 0.2rem;
  background: none; font-family: var(--body); cursor: pointer; display: inline-block;
}
.contact-link:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- FOOTER ---------- */
.footer { background: var(--espresso); color: var(--taupe); padding: 2.2rem 2.4rem; }
.footer-inner {
  max-width: 1200px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-brand { font-family: var(--display); font-size: 1.05rem; color: var(--sand); }
.footer-meta { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* scroll reveal */
.sr { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.sr.vis { opacity: 1; transform: none; }

/* ---------- MOBILE ---------- */
/* ---------- BRAND DEAL AGENT: waitlist + lead magnet ---------- */
.agent-band { border-top: 1px solid rgba(233,223,206,0.14); }
.agent-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1200px; margin: 0 auto; padding: 5.5rem 2.4rem 6rem;
  align-items: start;
}
.agent-copy .kicker { color: var(--taupe); }
.agent-copy h2 { color: var(--ivory); margin-bottom: 1.3rem; }
.agent-copy h2 em { color: var(--sand); }
.agent-copy > p { color: rgba(233,223,206,0.78); max-width: 480px; }
.agent-gem {
  font-family: var(--display); font-size: 1.5rem; line-height: 1.25;
  color: var(--sand); margin: 1.8rem 0 2rem; max-width: 480px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.waitlist { display: flex; flex-wrap: wrap; gap: 0.7rem; max-width: 480px; }
.waitlist input {
  flex: 1 1 200px; min-width: 0;
  background: rgba(251,248,242,0.06); border: 1px solid rgba(233,223,206,0.28);
  color: var(--ivory); font-family: var(--body); font-size: 0.95rem; font-weight: 300;
  padding: 0.85rem 1rem; border-radius: 2px;
}
.waitlist input::placeholder { color: rgba(233,223,206,0.5); }
.waitlist input:focus { outline: none; border-color: var(--terra); background: rgba(251,248,242,0.1); }
.waitlist .btn { flex: 0 0 auto; border: none; cursor: pointer; }
.waitlist-note { color: var(--sand); font-size: 0.92rem; margin-top: 1rem; min-height: 1.2rem; }
.waitlist-note.error { color: #E5A17A; }
.agent-clientlogin { font-size: 0.85rem; color: rgba(233,223,206,0.7); margin-top: 0.9rem; }
.agent-clientlogin a { color: var(--sand); border-bottom: 1px solid rgba(233,223,206,0.4); }
.agent-clientlogin a:hover { color: var(--ivory); }

.agent-magnet {
  background: rgba(251,248,242,0.04); border: 1px solid rgba(233,223,206,0.14);
  border-radius: 4px; padding: 2.2rem 2.2rem 2rem;
}
.magnet-label {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--terra); margin-bottom: 0.9rem;
}
.magnet-label-2 { margin-top: 2rem; }
.agent-magnet h3 { font-size: 1.6rem; color: var(--ivory); margin-bottom: 1.1rem; }
.magnet-list { list-style: none; counter-reset: mg; display: grid; gap: 0.85rem; }
.magnet-list li {
  counter-increment: mg; position: relative; padding-left: 2rem;
  color: rgba(233,223,206,0.8); font-size: 0.92rem; line-height: 1.5;
}
.magnet-list li::before {
  content: counter(mg); position: absolute; left: 0; top: 0;
  font-family: var(--display); font-size: 1.05rem; color: var(--terra);
}
.magnet-list strong { color: var(--ivory); font-weight: 500; }
.magnet-rates table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.magnet-rates th, .magnet-rates td { text-align: left; padding: 0.5rem 0.4rem; border-bottom: 1px solid rgba(233,223,206,0.12); }
.magnet-rates th { color: var(--taupe); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.magnet-rates td { color: rgba(233,223,206,0.82); }
.magnet-rates td:first-child { color: var(--ivory); }
.magnet-fine { color: rgba(233,223,206,0.55); font-size: 0.78rem; line-height: 1.5; margin-top: 1rem; }

/* ---------- DECK REQUEST MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(29,23,18,0.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  background: var(--espresso); border: 1px solid rgba(233,223,206,0.18);
  border-radius: 4px; padding: 3rem 2.6rem 2.6rem;
  animation: modalRise 0.3s cubic-bezier(0.22,1,0.36,1);
}
@keyframes modalRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal .kicker { margin-bottom: 0.8rem; }
.modal h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 1.9rem); color: var(--ivory); line-height: 1.15; }
.modal-sub { color: rgba(233,223,206,0.7); font-size: 0.95rem; margin: 0.7rem 0 1.8rem; }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; cursor: pointer;
  color: var(--sand); font-size: 1.6rem; line-height: 1; padding: 0.3rem; opacity: 0.7;
}
.modal-close:hover { opacity: 1; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-form label {
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  color: rgba(233,223,206,0.75);
}
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-form input, .modal-form select, .modal-form textarea {
  background: rgba(251,248,242,0.06); border: 1px solid rgba(233,223,206,0.28);
  color: var(--ivory); font-family: var(--body); font-size: 0.95rem; font-weight: 300;
  padding: 0.8rem 0.9rem; border-radius: 2px; text-transform: none; letter-spacing: normal;
}
.modal-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E9DFCE' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.modal-form select option { background: var(--espresso); color: var(--ivory); }
.modal-form textarea { resize: vertical; min-height: 4.5rem; font-weight: 300; }
.modal-form input::placeholder, .modal-form textarea::placeholder { color: rgba(233,223,206,0.4); }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
  outline: none; border-color: var(--terra); background: rgba(251,248,242,0.1);
}
.modal-form .btn { border: none; cursor: pointer; margin-top: 0.4rem; }
.modal-note { color: var(--sand); font-size: 0.9rem; min-height: 1.1rem; }
.modal-note.error { color: #E5A17A; }

@media (max-width: 900px) {
  .nav { padding: 0.9rem 1.3rem; }
  .brand-logo { height: 2.2rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; background: var(--ivory);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .nav.open .nav-links { transform: none; }
  .nav.open .nav-links a { color: var(--espresso); font-size: 1rem; }
  .nav-brand { position: relative; z-index: 2; }
  .nav-toggle { position: relative; z-index: 2; }
  .nav.open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

  /* mobile: video shown at its native 16:9 framing (full shot, on-set context visible —
     a full-bleed portrait crop of a landscape shoot zoomed in far too tight on just her
     face), copy stacked below in flow on solid espresso instead of overlaid on the film */
  .hero { min-height: auto; display: block; }
  .hero-media { position: relative; inset: auto; width: 100%; aspect-ratio: 16 / 9; height: auto; }
  .hero-media video { object-position: center 42%; }
  .hero-scrim { display: none; }
  .hero-inner { position: static; align-self: auto; max-width: none; width: 100%; padding: 2.4rem 1.3rem 2rem; }
  .hero-foot {
    position: static; font-size: 0.58rem; gap: 0.7rem; padding: 1.2rem 1rem;
    border-top: 1px solid rgba(233,223,206,0.14);
  }
  .intro { padding: 4.5rem 1.3rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .section-head { padding-inline: 1.3rem; margin-bottom: 2.4rem; }
  .work-head { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .services, .method, .work { padding: 4.5rem 0; }
  .service-cards, .flip-grid { grid-template-columns: 1fr; padding-inline: 1.3rem; }
  .flip-card { height: 420px; }
  .method-steps { padding-inline: 1.3rem; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 2.6rem 1.3rem; }
  .stats-note { padding: 0 1.3rem 2rem; }
  .creators-inner { grid-template-columns: 1fr; }
  .creators-copy { padding: 4rem 1.3rem; }
  .creators-media { min-height: 460px; }
  .agent-inner { grid-template-columns: 1fr; gap: 2.6rem; padding: 4rem 1.3rem 4.5rem; }
  .agent-gem { font-size: 1.3rem; }
  .agent-magnet { padding: 1.8rem 1.4rem; }
  .waitlist .btn { flex: 1 1 100%; }
  .contact { padding: 4.5rem 1.3rem; }
  .contact-cols { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .modal { padding: 2.2rem 1.4rem; }
  .modal-row { grid-template-columns: 1fr; }
}
