:root {
  color-scheme: light;
  --color-primary: #c97773;
  --color-primary-dark: #a85f5c;
  --color-primary-strong: #8f4745;
  --color-primary-light: #efc9c4;
  --color-secondary: #b78943;
  --color-accent: #8f9d82;
  --color-success: #4f8f63;
  --color-warning: #b78943;
  --color-error: #b84e4a;
  --color-background: #fffaf6;
  --color-background-alt: #fffdf9;
  --color-surface: rgba(255, 255, 255, 0.86);
  --color-border: rgba(94, 67, 60, 0.16);
  --color-text-primary: #3b2b28;
  --color-text-secondary: #77615c;
  --color-text-muted: rgba(119, 97, 92, 0.72);
  --color-text-inverse: #fffaf6;
  --color-neutral-900: #211714;
  --color-neutral-800: #3b2b28;
  --color-neutral-600: #77615c;
  --color-neutral-200: #f2e4dc;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Segoe Script", "Brush Script MT", cursive;
  --type-display: clamp(4.8rem, 8vw, 8.6rem);
  --type-h2: clamp(2.25rem, 3vw, 3.2rem);
  --type-body: 1rem;
  --line-display: 0.86;
  --line-body: 1.65;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 34px rgba(70, 42, 35, 0.075);
  --shadow-card: 0 24px 64px rgba(70, 42, 35, 0.12);
  --shadow-hero: 0 42px 130px rgba(0, 0, 0, 0.36);
  --shadow-focus: 0 0 0 3px rgba(201, 119, 115, 0.18);
  --motion-fast: 160ms;
  --motion-base: 220ms;
  --motion-slow: 620ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-exit: cubic-bezier(0.4, 0, 1, 1);
  --container-page: 1180px;
  --container-nav: 1320px;
  --container-form: 680px;
  --paper: var(--color-background);
  --cream: var(--color-background-alt);
  --soft: var(--color-neutral-200);
  --rose: var(--color-primary);
  --rose-dark: var(--color-primary-dark);
  --rose-strong: var(--color-primary-strong);
  --rose-light: var(--color-primary-light);
  --gold: var(--color-secondary);
  --sage: var(--color-accent);
  --ink: var(--color-text-primary);
  --night: var(--color-neutral-900);
  --night-soft: #3d2a25;
  --muted: var(--color-text-secondary);
  --line: var(--color-border);
  --shadow: var(--shadow-card);
  --radius: var(--radius-sm);
  --max: var(--container-page);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 4%, rgba(207, 129, 125, 0.16), transparent 24rem),
    radial-gradient(circle at 14% 16%, rgba(132, 153, 120, 0.13), transparent 20rem),
    linear-gradient(180deg, #fffaf6 0%, #fffefd 44%, #f9efeb 100%);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--color-text-inverse);
  background: var(--color-primary-dark);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), transparent 32%, rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 88% 36%, rgba(185, 108, 105, 0.08), transparent 26rem);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image:
    repeating-radial-gradient(circle at 18% 22%, rgba(59, 43, 40, 0.55) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(59, 43, 40, 0.2) 7px 8px);
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--scroll, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #e7b08a, var(--sage));
  box-shadow: 0 0 24px rgba(201, 119, 115, 0.42);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(143, 71, 69, 0.42);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  box-shadow: var(--shadow-focus);
}

:where(button, .button, .nav-button, input, select, textarea):disabled,
:where(button, .button, .nav-button)[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  gap: 10px;
  padding: 14px clamp(18px, 4.8vw, 70px);
  color: rgba(255, 250, 246, 0.88);
  transition: padding var(--motion-base) ease, background var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 250, 246, 0.56);
  box-shadow: 0 18px 60px rgba(63, 38, 31, 0.09);
  backdrop-filter: blur(22px) saturate(1.1);
  color: var(--ink);
}

.top-strip,
.nav-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 999px;
  padding: 7px 14px;
  color: rgba(255, 250, 246, 0.72);
  background: rgba(33, 23, 20, 0.34);
  box-shadow: 0 16px 46px rgba(18, 10, 8, 0.16);
  backdrop-filter: blur(18px);
  font-size: 0.68rem;
  font-weight: 780;
  text-transform: uppercase;
}

.top-strip a {
  color: #f3c4bc;
}

.site-header.is-scrolled .top-strip {
  color: rgba(59, 43, 40, 0.7);
  background: rgba(255, 255, 255, 0.5);
}

.site-header.is-scrolled .top-strip a {
  color: var(--rose-dark);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 12px 14px 12px 22px;
  background: rgba(33, 23, 20, 0.28);
  box-shadow: 0 18px 58px rgba(18, 10, 8, 0.18);
  backdrop-filter: blur(22px) saturate(1.12);
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 58px rgba(70, 42, 35, 0.08);
}

.signature-brand {
  display: grid;
  line-height: 1;
}

.signature {
  font-family: var(--font-script);
  font-size: clamp(1.72rem, 2.9vw, 2.7rem);
  line-height: 0.8;
  color: currentColor;
  transform: rotate(-7deg);
}

.signature-brand span:last-child {
  margin-left: 34px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 34px);
  color: currentColor;
  font-size: 0.71rem;
  font-weight: 840;
  text-transform: uppercase;
}

.main-nav a {
  transition: color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--rose-dark);
}

.nav-button {
  min-width: 132px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: #fff !important;
  background: var(--color-primary);
  box-shadow: 0 14px 38px rgba(207, 129, 125, 0.24);
}

.nav-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  width: 100%;
  min-height: clamp(760px, 100svh, 940px);
  margin: 0;
  padding: 176px max(44px, calc((100vw - 1280px) / 2 + 44px)) 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 119, 115, 0.24), transparent 24rem),
    radial-gradient(circle at 18% 78%, rgba(183, 137, 67, 0.16), transparent 22rem),
    linear-gradient(135deg, #211714 0%, #3b2722 46%, #6b3b35 100%);
  color: #fffaf6;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0 56px, transparent 56px calc(100% - 56px), rgba(0, 0, 0, 0.72) calc(100% - 56px)),
    radial-gradient(circle at 80% 48%, rgba(252, 218, 188, 0.12), transparent 24rem),
    linear-gradient(110deg, rgba(255, 250, 246, 0.04) 0 42%, transparent 72%);
}

.hero::after {
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 22% 36%, rgba(255, 255, 255, 0.1), transparent 18rem);
  background-size: 18px 18px, 18px 18px, 100% 100%;
  mix-blend-mode: screen;
}

.hero-frame {
  position: absolute;
  left: max(26px, calc((100vw - 1280px) / 2 + 18px));
  right: max(26px, calc((100vw - 1280px) / 2 + 18px));
  bottom: 26px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 250, 246, 0.58);
  font-size: 0.68rem;
  font-weight: 860;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-overline {
  margin-bottom: 18px;
  color: #efc0b8;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding: 0 0 0 clamp(8px, 2.4vw, 32px);
}

.hero h1 {
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.2rem, 8.2vw, 8.8rem);
  line-height: 0.82;
  font-weight: 400;
  color: #fffaf6;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.title-rule {
  display: block;
  width: 42px;
  height: 2px;
  margin: 30px 0 22px;
  background: var(--gold);
}

.hero-subtitle {
  max-width: 470px;
  color: #fffaf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.25vw, 2.18rem);
  line-height: 1.12;
}

.hero-subtitle em {
  color: #f4b0a7;
  font-style: normal;
}

.hero-lead {
  margin-top: 15px;
  color: rgba(255, 250, 246, 0.74);
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 540px;
  margin-top: 22px;
}

.hero-highlight span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 250, 246, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-highlight strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 250, 246, 0.78);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 820ms ease, transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-width: 150px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active,
.nav-button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-dark), #d98e86);
  box-shadow: 0 18px 44px rgba(201, 119, 115, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #b76561, var(--color-primary));
}

.button-primary::after {
  position: absolute;
  inset: -60% auto -60% -55%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(18deg);
}

.button-outline {
  color: #9d7037;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(183, 137, 67, 0.76);
  box-shadow: 0 16px 38px rgba(92, 65, 55, 0.06);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  background: rgba(255, 250, 246, 0.96);
}

.button[aria-busy="true"] {
  position: relative;
  pointer-events: none;
}

.button[aria-busy="true"]::before {
  width: 14px;
  height: 14px;
  margin-right: var(--space-2);
  content: "";
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: var(--radius-pill);
  animation: spin 700ms linear infinite;
}

.hero-visual {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(260px, 1fr);
  grid-template-rows: 180px 220px 142px;
  gap: 18px;
  min-height: 584px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -26px -22px -20px 24px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(201, 119, 115, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.portrait-panel,
.feature-tile,
.statement-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(33, 23, 20, 0.38);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.portrait-panel {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: flex-end;
  min-height: 584px;
  border-radius: 34px 34px 12px 12px;
}

.portrait-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.04), rgba(47, 34, 31, 0.1) 34%, rgba(20, 12, 10, 0.8)),
    linear-gradient(90deg, rgba(255, 218, 188, 0.18), transparent 48%);
}

.portrait-panel img,
.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-panel img {
  position: absolute;
  inset: 0;
  object-position: 50% 46%;
  filter: sepia(0.12) saturate(0.9) contrast(1.03) brightness(0.96);
}

.portrait-panel > div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 0 34px 34px;
  color: #fff;
}

.portrait-panel .mini-signature {
  color: #f4c7c3;
  font-size: 3.05rem;
}

.portrait-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.portrait-panel small {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.feature-tile {
  display: grid;
  align-items: end;
  min-height: 0;
  border-radius: 18px;
}

.feature-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%, rgba(20, 12, 10, 0.76)),
    linear-gradient(90deg, rgba(44, 33, 30, 0.28), transparent 56%);
}

.feature-tile span {
  position: relative;
  z-index: 2;
  padding: 18px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tile-garnier {
  grid-column: 1;
  grid-row: 1 / 3;
}

.tile-garnier img {
  object-position: center;
  filter: sepia(0.1) saturate(0.76) contrast(0.98) brightness(1.04);
}

.tile-gold {
  grid-column: 1;
  grid-row: 3;
}

.tile-gold img {
  object-position: center 28%;
  filter: sepia(0.08) saturate(0.86) contrast(0.98) brightness(1.03);
}

.statement-card {
  position: absolute;
  right: min(56%, 410px);
  bottom: 36px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: min(280px, 42vw);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.94), rgba(255, 226, 218, 0.78));
  backdrop-filter: blur(22px);
}

.statement-card span {
  display: block;
  color: var(--rose);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.78rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.statement-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.25;
  font-weight: 400;
}

.metric-card {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(calc(100% - 48px), 1180px);
  margin: -58px auto 0;
  overflow: hidden;
  border: 1px solid rgba(183, 137, 67, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 12%, rgba(207, 129, 125, 0.14), transparent 18rem),
    radial-gradient(circle at 92% 18%, rgba(183, 137, 67, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 247, 0.86));
  box-shadow: 0 30px 92px rgba(70, 42, 35, 0.16);
  backdrop-filter: blur(18px) saturate(1.08);
}

.metric-item:nth-child(5) {
  background: linear-gradient(180deg, rgba(255, 247, 242, 0.84), rgba(255, 255, 255, 0.42));
}

.metric-note {
  grid-column: 1 / -1;
  z-index: 1;
  margin: -10px 28px 22px;
  border-top: 1px solid rgba(183, 137, 67, 0.16);
  padding-top: 12px;
  color: var(--color-text-secondary);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.metric-card::before {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.64), transparent 28%, transparent 70%, rgba(255, 244, 231, 0.46)),
    repeating-linear-gradient(90deg, rgba(189, 141, 68, 0.08) 0 1px, transparent 1px 25%);
  opacity: 0.62;
}

.metric-item {
  position: relative;
  display: grid;
  z-index: 1;
  align-content: center;
  justify-items: start;
  min-height: 128px;
  padding: 28px clamp(22px, 3vw, 34px);
}

.metric-item + .metric-item::before {
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  content: "";
  background: rgba(189, 141, 68, 0.58);
}

.pillar-icon {
  position: relative;
  display: inline-block;
  color: var(--rose);
}

.metric-item strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.metric-item span:last-child {
  position: relative;
  display: block;
  margin-top: 14px;
  padding-top: 13px;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.22em;
  line-height: 1.15;
  text-transform: uppercase;
}

.metric-item span:last-child::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--color-secondary), rgba(183, 137, 67, 0));
}

.cinematic-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 72px auto 0;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 28px;
  padding: clamp(38px, 6vw, 74px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33, 23, 20, 0.96), rgba(76, 45, 39, 0.9)),
    radial-gradient(circle at 86% 18%, rgba(239, 190, 157, 0.2), transparent 18rem);
  box-shadow: 0 34px 100px rgba(33, 23, 20, 0.24);
  backdrop-filter: blur(18px);
}

.cinematic-band::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.cinematic-copy h2,
.audience-copy h2,
.media-kit-copy h2,
.formats-section h2,
.storyboard-section h2,
.campaign-room-copy h2,
.closing-scene h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 400;
}

.cinematic-band .section-kicker {
  color: #e7aaa3;
}

.cinematic-band .cinematic-copy h2 {
  color: #fffaf6;
}

.cinematic-band .cinematic-copy p:not(.section-kicker) {
  color: rgba(255, 250, 246, 0.74);
}

.cinematic-copy p:not(.section-kicker),
.audience-copy p,
.media-kit-copy p,
.campaign-room-copy p,
.closing-scene p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.reel-panel {
  display: grid;
  gap: 12px;
  counter-reset: reel;
}

.reel-panel span {
  min-height: 68px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fffaf6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 0.88fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 72px 0 54px;
}

.glass-card {
  border: 1px solid rgba(183, 137, 67, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 243, 0.72));
  box-shadow: 0 22px 58px rgba(70, 42, 35, 0.095);
  backdrop-filter: blur(20px) saturate(1.1);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--rose-strong);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-copy h2,
.section-title h2,
.proposal-panel h2,
.proposal-form h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 400;
}

.about-copy p:not(.section-kicker),
.proposal-panel p,
.proposal-form p {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.about-copy strong {
  display: block;
  margin-top: 24px;
  color: var(--ink);
}

.bea-signature,
.mini-signature {
  display: inline-block;
  color: var(--rose);
  font-family: var(--font-script);
  transform: rotate(-7deg);
}

.bea-signature {
  margin-top: 22px;
  font-size: 3.2rem;
}

.content-pillars {
  display: grid;
  gap: 22px;
  padding-top: 34px;
}

.content-pillars article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 34px rgba(70, 42, 35, 0.055);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(143, 71, 69, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(145deg, rgba(255, 239, 233, 0.96), rgba(255, 250, 247, 0.72));
  box-shadow: 0 12px 28px rgba(143, 71, 69, 0.12);
}

.flower-icon::before,
.beauty-icon::before,
.heart-icon::before,
.business-icon::before {
  position: absolute;
  inset: 11px;
  content: "";
  border: 2px solid var(--rose-strong);
  border-radius: 50%;
}

.flower-icon::after {
  position: absolute;
  left: 19px;
  top: 7px;
  width: 4px;
  height: 28px;
  content: "";
  background: var(--rose-strong);
  box-shadow: 9px 5px 0 -1px var(--rose-strong), -9px 5px 0 -1px var(--rose-strong);
  transform: rotate(35deg);
}

.beauty-icon::after {
  position: absolute;
  left: 18px;
  top: 9px;
  width: 6px;
  height: 23px;
  content: "";
  border-radius: 6px;
  background: var(--rose-strong);
}

.heart-icon::before {
  border-radius: 8px 8px 0 8px;
  transform: rotate(45deg);
}

.business-icon::after {
  position: absolute;
  left: 13px;
  top: 14px;
  width: 16px;
  height: 14px;
  content: "";
  border: 2px solid var(--rose-strong);
  border-radius: 3px;
}

.content-pillars h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.content-pillars p {
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-signature {
  margin-top: 4px;
  font-size: 2.1rem;
  line-height: 0.8;
}

.collab-section,
.formats-section,
.media-kit-section,
.storyboard-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 76px auto 0;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.collab-card {
  position: relative;
  min-height: 300px;
  border-color: rgba(183, 137, 67, 0.18);
  border-radius: 18px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 243, 0.76));
}

.collab-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 119, 115, 0.26), transparent 68%);
}

.collab-card.feature {
  transform: translateY(28px);
  background:
    linear-gradient(145deg, rgba(72, 49, 44, 0.92), rgba(168, 95, 92, 0.84)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 14rem);
  color: #fff;
}

.collab-card span,
.format-rail span,
.storyboard-grid span {
  color: var(--rose-strong);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.collab-card.feature span,
.collab-card.feature p {
  color: rgba(255, 255, 255, 0.78);
}

.collab-card h3 {
  margin-top: 86px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  line-height: 1.06;
  font-weight: 400;
}

.collab-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(330px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 110px auto 0;
}

.audience-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 260px 260px 22px 22px;
  box-shadow: 0 34px 90px rgba(70, 42, 35, 0.16);
}

.audience-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.04), rgba(50, 32, 28, 0.4)),
    linear-gradient(90deg, rgba(255, 250, 246, 0.18), transparent);
}

.audience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.06) saturate(0.82) contrast(0.98) brightness(1.02);
}

.audience-copy {
  border-radius: 28px;
  padding: clamp(32px, 5vw, 58px);
}

.audience-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.audience-list div {
  border-top: 1px solid rgba(183, 137, 67, 0.18);
  padding-top: 16px;
}

.audience-list dt {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.audience-list dd {
  margin-top: 5px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.age-breakdown {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.age-breakdown span {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 250, 247, 0.78);
  color: var(--ink);
}

.age-breakdown span::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  min-width: 42px;
  content: "";
  background: linear-gradient(90deg, rgba(201, 119, 115, 0.28), rgba(183, 137, 67, 0.12));
  pointer-events: none;
}

.age-breakdown strong,
.age-breakdown small {
  position: relative;
  z-index: 1;
}

.age-breakdown strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.age-breakdown small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title.centered {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.format-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.format-columns,
.package-grid,
.portfolio-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.format-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 20px;
}

.format-columns article,
.package-grid article,
.portfolio-grid article,
.faq-grid details {
  border: 1px solid rgba(183, 137, 67, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(70, 42, 35, 0.07);
}

.format-columns article {
  padding: 24px;
}

.format-columns span,
.package-grid span,
.portfolio-grid span {
  color: var(--rose-strong);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.format-columns ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.format-columns li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.format-columns li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--rose-strong);
}

.format-rail article {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(183, 137, 67, 0.17);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 244, 0.74));
  box-shadow: 0 16px 42px rgba(70, 42, 35, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.format-rail article::before {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(143, 71, 69, 0.18);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--rose-strong);
  background: rgba(255, 244, 240, 0.92);
  font-size: 1.08rem;
  font-weight: 850;
}

.format-rail article:nth-child(1)::before {
  content: "R";
}

.format-rail article:nth-child(2)::before {
  content: "S";
}

.format-rail article:nth-child(3)::before {
  content: "U";
}

.format-rail article:nth-child(4)::before {
  content: "A";
}

.format-rail article:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 86px rgba(70, 42, 35, 0.13);
  background: rgba(255, 255, 255, 0.88);
}

.format-rail strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.1;
  font-weight: 400;
}

.activation-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.activation-list span {
  position: relative;
  border: 1px solid rgba(183, 137, 67, 0.18);
  border-radius: 12px;
  padding: 13px 14px 13px 34px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.activation-list span::before {
  position: absolute;
  left: 13px;
  top: 15px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--rose-strong);
  box-shadow: 0 0 0 4px rgba(201, 119, 115, 0.12);
}

.packages-section,
.faq-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 76px auto 0;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
}

.package-grid .featured-package {
  background:
    linear-gradient(145deg, rgba(61, 43, 40, 0.94), rgba(143, 71, 69, 0.88));
  color: #fff;
}

.package-grid h3,
.portfolio-grid strong {
  margin-top: 18px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1.08;
  font-weight: 400;
}

.package-grid p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.package-grid .featured-package p,
.package-grid .featured-package span {
  color: rgba(255, 250, 246, 0.82);
}

.package-grid a {
  margin-top: auto;
  border: 1px solid rgba(143, 71, 69, 0.26);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--rose-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.package-grid .featured-package a {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.media-kit-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 24px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 243, 238, 0.62)),
    radial-gradient(circle at 18% 92%, rgba(143, 157, 130, 0.2), transparent 20rem),
    radial-gradient(circle at 88% 14%, rgba(201, 119, 115, 0.18), transparent 22rem);
  box-shadow: 0 24px 72px rgba(70, 42, 35, 0.095);
  backdrop-filter: blur(18px);
}

.media-kit-section::before {
  position: absolute;
  left: -20%;
  top: 18%;
  width: 140%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(183, 137, 67, 0.42), transparent);
  transform: rotate(-8deg);
}

.media-kit-copy,
.media-kit-stack {
  position: relative;
  z-index: 1;
}

.media-kit-stack {
  display: grid;
  gap: 14px;
}

.media-kit-stack article {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 128px;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 62px rgba(70, 42, 35, 0.07);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.media-kit-stack article:hover {
  transform: translateX(-8px);
  box-shadow: 0 30px 78px rgba(70, 42, 35, 0.12);
}

.media-kit-stack span {
  display: grid;
  width: 56px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(201, 119, 115, 0.25);
  border-radius: 50%;
  color: var(--rose);
  background: rgba(255, 248, 244, 0.86);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.14em;
}

.media-kit-stack strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.12;
  font-weight: 400;
}

.media-kit-stack p {
  grid-column: 2;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.58;
}

.storyboard-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  border-radius: 24px;
  padding: clamp(34px, 6vw, 74px);
  background:
    linear-gradient(135deg, rgba(61, 43, 40, 0.94), rgba(101, 70, 62, 0.9)),
    radial-gradient(circle at 84% 20%, rgba(201, 119, 115, 0.2), transparent 22rem);
  color: #fff;
  box-shadow: 0 34px 96px rgba(61, 43, 40, 0.22);
}

.storyboard-section .section-kicker,
.storyboard-section h2 {
  color: #fff;
}

.storyboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.storyboard-grid article {
  min-height: 172px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.storyboard-grid span {
  color: #f1c8bd;
}

.storyboard-grid p {
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.campaign-room {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 82px auto 0;
}

.campaign-film {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 440px;
  padding: 14px;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 242, 236, 0.62));
  box-shadow: 0 34px 92px rgba(70, 42, 35, 0.12);
}

.campaign-film::before,
.campaign-film::after {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 2;
  height: 22px;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(59, 43, 40, 0.18) 0 11px, transparent 11px 24px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  opacity: 0.44;
  pointer-events: none;
}

.campaign-film::before {
  top: 18px;
}

.campaign-film::after {
  bottom: 18px;
}

.campaign-film img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: 18px;
  filter: sepia(0.08) saturate(0.86) contrast(0.98) brightness(1.04);
}

.campaign-film img:nth-child(2) {
  transform: translateY(28px);
}

.campaign-room-copy {
  position: relative;
  border: 1px solid rgba(183, 137, 67, 0.16);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 239, 0.66));
  box-shadow: 0 30px 82px rgba(70, 42, 35, 0.1);
  backdrop-filter: blur(20px);
}

.campaign-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.campaign-cues span {
  border: 1px solid rgba(132, 153, 120, 0.34);
  border-radius: 999px;
  padding: 9px 12px;
  color: #50413d;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.instagram-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 58px 0 46px;
}

.section-title {
  margin-bottom: 18px;
}

.instagram-layout {
  display: grid;
  gap: 16px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.portfolio-grid article {
  overflow: hidden;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-grid div {
  padding: 20px;
}

.portfolio-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.insta-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: #eadbd2;
  box-shadow: 0 18px 42px rgba(74, 45, 37, 0.08);
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease, filter 460ms ease;
}

.insta-grid a:hover img,
.insta-grid a:focus-visible img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.05);
}

.instagram-link {
  justify-self: center;
  color: var(--rose);
  font-size: 0.9rem;
  transition: color 160ms ease, transform 160ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--rose-dark);
  transform: translateX(2px);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(calc(100% - 48px), var(--max));
  margin: 20px auto 10px;
  overflow: hidden;
  border: 1px solid rgba(183, 137, 67, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(78, 49, 41, 0.07);
}

.brand-strip a {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 12px;
  border-right: 1px solid rgba(189, 141, 68, 0.22);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  line-height: 0.95;
  text-align: center;
  transition: background 160ms ease, color 160ms ease;
}

.brand-strip a:hover,
.brand-strip a:focus-visible {
  color: var(--rose-dark);
  background: rgba(251, 241, 236, 0.92);
}

.brand-strip a:last-child {
  border-right: 0;
}

.brand-strip span {
  color: var(--rose-strong);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 820;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-note {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.2;
}

.faq-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.closing-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 82px auto 0;
}

.closing-scene img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 26px;
  box-shadow: 0 36px 92px rgba(70, 42, 35, 0.15);
  filter: sepia(0.08) saturate(0.88) brightness(1.03);
}

.closing-scene div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  padding: clamp(32px, 5vw, 62px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 242, 236, 0.7));
  box-shadow: 0 32px 82px rgba(70, 42, 35, 0.1);
  backdrop-filter: blur(18px);
}

.closing-scene div::before {
  position: absolute;
  right: 28px;
  bottom: 18px;
  content: "Bea";
  color: rgba(201, 119, 115, 0.24);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 1;
  pointer-events: none;
  transform: rotate(-8deg);
}

.proposal-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(360px, 1.04fr);
  margin-top: 92px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 18rem),
    linear-gradient(90deg, rgba(91, 56, 50, 0.98), rgba(143, 71, 69, 0.92) 40%, rgba(255, 255, 255, 0.96) 51%, rgba(255, 255, 255, 1));
}

.proposal-panel,
.proposal-form {
  padding: clamp(46px, 6vw, 70px) clamp(28px, 8vw, 110px);
}

.proposal-panel {
  color: #fff;
}

.proposal-panel .section-kicker {
  color: rgba(255, 237, 230, 0.86);
}

.proposal-panel h2 {
  max-width: 520px;
  color: #fff;
}

.proposal-panel p {
  max-width: 520px;
  color: rgba(255, 250, 246, 0.92);
}

.proposal-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin-top: 28px;
}

.direct-contact a,
.site-footer a[href^="tel:"] {
  color: inherit;
  font-weight: 850;
  text-decoration: none;
}

.direct-contact a {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.14);
}

.proposal-benefits span {
  max-width: 180px;
  color: #fff0c8;
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1.2;
  text-transform: uppercase;
}

.proposal-form {
  background: rgba(255, 255, 255, 0.72);
}

.proposal-form h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
}

.proposal-form p:not(.section-kicker) {
  margin-top: 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

.proposal-form label {
  display: grid;
  gap: 6px;
}

.proposal-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background var(--motion-fast) ease;
}

.proposal-form input::placeholder,
.proposal-form textarea::placeholder {
  color: var(--color-text-muted);
}

.proposal-form input:focus-visible,
.proposal-form select:focus-visible,
.proposal-form textarea:focus-visible {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow-focus);
}

.proposal-form textarea {
  min-height: 112px;
  resize: vertical;
}

.proposal-form.was-validated input:invalid,
.proposal-form.was-validated select:invalid,
.proposal-form.was-validated textarea:invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(184, 78, 74, 0.14);
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  gap: 10px;
  border: 1px solid rgba(183, 137, 67, 0.2);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 250, 246, 0.94);
  box-shadow: 0 18px 54px rgba(33, 23, 20, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-sticky-cta a {
  flex: 1;
  border-radius: 12px;
  padding: 12px 10px;
  color: #fff;
  background: var(--rose-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.mobile-sticky-cta a:last-child {
  color: var(--rose-strong);
  background: rgba(143, 71, 69, 0.1);
}

.proposal-form.was-validated input:valid,
.proposal-form.was-validated select:valid,
.proposal-form.was-validated textarea:valid {
  border-color: rgba(79, 143, 99, 0.48);
}

.full-field {
  grid-column: 1 / -1;
}

.proposal-form .button {
  min-width: 170px;
  min-height: 42px;
  font-size: 0.7rem;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, auto);
  align-items: center;
  gap: clamp(24px, 6vw, 84px);
  padding: 54px clamp(24px, 5vw, 78px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 78% 12%, rgba(201, 119, 115, 0.24), transparent 20rem),
    linear-gradient(135deg, #2b1f1c, #3f2a25 58%, #231815);
}

.site-footer::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.site-footer p {
  max-width: 360px;
  margin-top: 8px;
  line-height: 1.6;
}

.footer-signature {
  display: inline-block;
  color: #e7aaa3;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 3rem;
  line-height: 0.85;
  transform: rotate(-8deg);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 0.75rem;
  font-weight: 860;
  text-transform: uppercase;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-mail {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes cinematicFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes cinematicGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes ctaShine {
  0%,
  72% {
    left: -55%;
  }
  100% {
    left: 130%;
  }
}

@keyframes filmSweep {
  0% {
    background-position: 0 0, -120px 0;
  }
  100% {
    background-position: 96px 0, 180px 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual::before {
    animation: cinematicGlow 7s ease-in-out infinite;
  }

  .portrait-panel {
    animation: cinematicFloat 8s ease-in-out infinite;
  }

  .tile-garnier {
    animation: cinematicFloat 9s ease-in-out infinite reverse;
  }

  .statement-card {
    animation: cinematicFloat 7.6s ease-in-out infinite;
  }

  .button-primary::after {
    animation: ctaShine 4.8s ease-in-out infinite;
  }

  .campaign-film::before,
  .campaign-film::after {
    animation: filmSweep 12s linear infinite;
  }
}

@media (max-width: 1040px) {
  .site-header {
    position: static;
    background: rgba(251, 246, 239, 0.9);
    color: var(--ink);
  }

  .nav-shell {
    flex-wrap: wrap;
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 18px 58px rgba(70, 42, 35, 0.08);
  }

  .top-strip {
    color: rgba(59, 43, 40, 0.7);
    background: rgba(255, 255, 255, 0.5);
  }

  .top-strip a {
    color: var(--rose-dark);
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    padding: 72px 18px 92px;
  }

  .hero-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    grid-template-columns: 0.78fr 1fr;
    width: 100%;
    max-width: 100%;
    min-height: 540px;
  }

  .hero-frame {
    display: none;
  }

  .about-section,
  .proposal-section,
  .cinematic-band,
  .audience-section,
  .media-kit-section,
  .storyboard-section,
  .campaign-room,
  .closing-scene {
    grid-template-columns: 1fr;
  }

  .collab-grid,
  .format-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collab-card.feature {
    transform: none;
  }

  .audience-visual {
    min-height: 480px;
  }

  .brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-item + .metric-item::before {
    display: none;
  }

  .metric-item:nth-child(even) {
    border-left: 1px solid rgba(189, 141, 68, 0.34);
  }

  .metric-item:nth-child(n + 3) {
    border-top: 1px solid rgba(189, 141, 68, 0.24);
  }

  .metric-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .brand-strip a:nth-child(3n) {
    border-right: 0;
  }

  .brand-strip a:nth-child(n + 4) {
    border-top: 1px solid rgba(189, 141, 68, 0.22);
  }

  .insta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  main section,
  main article,
  main aside,
  main form,
  main div,
  .main-nav,
  .reel-panel,
  .media-kit-stack,
  .storyboard-grid,
  .campaign-cues {
    min-width: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    align-items: stretch;
    flex-direction: column;
    padding: 10px 12px;
    background: rgba(255, 250, 246, 0.86);
    color: var(--ink);
    box-shadow: 0 14px 44px rgba(70, 42, 35, 0.08);
    backdrop-filter: blur(18px) saturate(1.08);
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-color: rgba(183, 137, 67, 0.16);
    border-radius: 16px;
    padding: 10px 10px 10px 14px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 44px rgba(70, 42, 35, 0.08);
  }

  .main-nav {
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-self: auto;
    gap: 0;
    min-width: auto;
    font-size: 0.66rem;
  }

  .main-nav a:not(.nav-button) {
    display: none;
  }

  .nav-button {
    width: auto;
    min-width: 118px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    white-space: nowrap;
  }

  .signature {
    font-size: 2rem;
  }

  .signature-brand span:last-child {
    margin-left: 24px;
    font-size: 0.48rem;
    letter-spacing: 0.24em;
  }

  .hero {
    display: grid;
    gap: 26px;
    padding: 34px 16px 44px;
    background:
      radial-gradient(circle at 82% 10%, rgba(201, 119, 115, 0.18), transparent 18rem),
      radial-gradient(circle at 10% 24%, rgba(183, 137, 67, 0.12), transparent 16rem),
      linear-gradient(180deg, #fffaf6 0%, #f5e9e3 62%, #211714 62%, #211714 100%);
    color: var(--ink);
    overflow: hidden;
  }

  .hero::before {
    inset: auto 0 0;
    height: 47%;
    background:
      radial-gradient(circle at 58% 0%, rgba(239, 190, 157, 0.16), transparent 18rem),
      linear-gradient(180deg, rgba(33, 23, 20, 0), rgba(33, 23, 20, 0.96) 32%);
  }

  .hero::after {
    opacity: 0.035;
    mix-blend-mode: multiply;
  }

  .hero h1 {
    max-width: 100%;
    color: var(--ink);
    font-size: clamp(3.55rem, 15.5vw, 4.55rem);
    line-height: 0.86;
    text-shadow: none;
  }

  .cinematic-copy,
  .audience-copy,
  .media-kit-copy,
  .campaign-room-copy,
  .closing-scene div,
  .section-title,
  .about-copy,
  .proposal-panel,
  .proposal-form {
    min-width: 0;
  }

  .about-copy h2,
  .section-title h2,
  .proposal-panel h2,
  .proposal-form h2,
  .cinematic-copy h2,
  .audience-copy h2,
  .media-kit-copy h2,
  .formats-section h2,
  .storyboard-section h2,
  .campaign-room-copy h2,
  .closing-scene h2 {
    max-width: 100%;
    font-size: clamp(1.88rem, 8.8vw, 2.45rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .proposal-section {
    width: min(calc(100% - 28px), 680px);
    margin: 62px auto 0;
    border: 1px solid rgba(183, 137, 67, 0.2);
    border-radius: 28px;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 237, 212, 0.34), transparent 15rem),
      linear-gradient(180deg, #a8605d 0%, #d58b87 47%, #fff8f3 47%, #fff8f3 100%);
    box-shadow: 0 28px 78px rgba(70, 42, 35, 0.16);
  }

  .proposal-panel {
    position: relative;
    padding: 34px 22px 30px;
    color: #fff;
    background:
      linear-gradient(135deg, rgba(101, 54, 51, 0.28), rgba(255, 255, 255, 0)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(112, 54, 51, 0.1));
  }

  .proposal-panel::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    pointer-events: none;
  }

  .proposal-panel h2 {
    max-width: 11ch;
    color: #fff;
    font-size: clamp(2.12rem, 10vw, 3rem);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
    text-shadow: 0 12px 38px rgba(61, 30, 27, 0.2);
  }

  .proposal-panel p {
    max-width: 29ch;
    color: rgba(255, 255, 255, 0.9);
    overflow-wrap: normal;
    word-break: normal;
  }

  .proposal-panel .section-kicker {
    color: rgba(255, 235, 229, 0.84);
    letter-spacing: 0.34em;
  }

  .proposal-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .proposal-benefits span {
    max-width: none;
    border: 1px solid rgba(255, 232, 182, 0.28);
    border-radius: 999px;
    padding: 11px 14px;
    color: #fff2cf;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
  }

  .proposal-form {
    padding: 30px 20px 22px;
    background: rgba(255, 250, 246, 0.96);
  }

  .proposal-form h2 {
    overflow-wrap: normal;
    word-break: normal;
  }

  .cinematic-copy p,
  .audience-copy p,
  .media-kit-copy p,
  .campaign-room-copy p,
  .closing-scene p,
  .proposal-panel p,
  .proposal-form p,
  .about-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-overline {
    margin-bottom: 14px;
    color: var(--rose-dark);
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .hero-subtitle,
  .hero-lead {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    color: var(--ink);
    font-size: clamp(1.45rem, 7vw, 1.78rem);
  }

  .hero-subtitle em {
    color: var(--rose);
  }

  .hero-lead {
    color: var(--muted);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    justify-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    min-width: 0;
  }

  .hero-actions,
  .proposal-benefits,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 22px;
    color: #6b5751;
  }

  .hero-proof span {
    border-color: rgba(94, 67, 60, 0.12);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 26px rgba(70, 42, 35, 0.05);
  }

  .hero-visual {
    position: relative;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 154px auto;
    gap: 12px;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
  }

  .hero-visual::before {
    display: none;
  }

  .portrait-panel {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 330px;
    border-radius: 22px;
  }

  .portrait-panel img {
    object-position: center 58%;
  }

  .portrait-panel > div {
    padding: 0 22px 22px;
  }

  .feature-tile {
    min-height: 0;
  }

  .tile-garnier {
    grid-column: 1;
    grid-row: 2;
  }

  .tile-gold {
    grid-column: 2;
    grid-row: 2;
  }

  .statement-card {
    position: relative;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    width: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .metric-card {
    grid-template-columns: 1fr;
    margin-top: 18px;
    border-radius: 22px;
  }

  .metric-item {
    justify-content: start;
    border-left: 0;
    border-top: 0;
  }

  .metric-item + .metric-item::before {
    display: block;
    inset: 0 26px auto;
    width: auto;
    height: 1px;
  }

  .about-section,
  .cinematic-band,
  .collab-section,
  .audience-section,
  .formats-section,
  .media-kit-section,
  .storyboard-section,
  .campaign-room,
  .closing-scene,
  .instagram-section,
  .brand-strip,
  .brand-note {
    width: min(calc(100% - 32px), var(--max));
  }

  .insta-grid,
  .brand-strip,
  .form-grid,
  .collab-grid,
  .format-columns,
  .format-rail,
  .activation-list,
  .package-grid,
  .portfolio-grid,
  .faq-grid,
  .campaign-film,
  .storyboard-grid {
    grid-template-columns: 1fr;
  }

  .cinematic-band,
  .media-kit-section,
  .storyboard-section {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .media-kit-stack article {
    grid-template-columns: 1fr;
  }

  .media-kit-stack p {
    grid-column: 1;
  }

  .reel-panel span {
    min-height: 58px;
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

  .collab-card {
    min-height: 240px;
  }

  .collab-card h3 {
    margin-top: 54px;
  }

  .audience-visual {
    min-height: 360px;
  }

  .audience-copy,
  .closing-scene div {
    padding: 28px 20px;
  }

  .format-rail article {
    min-height: 160px;
  }

  .package-grid article {
    min-height: 260px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }

  .storyboard-grid p {
    margin-top: 28px;
  }

  .media-kit-stack article,
  .storyboard-grid article,
  .campaign-cues span {
    overflow-wrap: anywhere;
  }

  .closing-scene img {
    min-height: 360px;
  }

  .campaign-film {
    min-height: 0;
  }

  .campaign-film img {
    min-height: 220px;
  }

  .campaign-film img:nth-child(2) {
    transform: none;
  }

  .campaign-room-copy {
    padding: 28px 20px;
  }

  .brand-strip a,
  .brand-strip a:nth-child(3n) {
    border-right: 0;
    border-top: 1px solid rgba(189, 141, 68, 0.22);
  }

  .brand-strip a:first-child {
    border-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-mail {
    justify-self: start;
  }
}

/* Premium visual refinement: fewer visible words, more motion and depth */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .signature-brand,
.site-header.is-scrolled .main-nav a {
  color: var(--cinema-black);
}

.signature-brand {
  gap: 8px;
}

.signature-brand .signature {
  color: #ffc0df;
}

.cinematic-hero {
  isolation: isolate;
  overflow: hidden;
}

.cinematic-hero .hero-content,
.cinematic-hero .hero-editorial {
  position: relative;
  z-index: 2;
}

.cinematic-hero::before {
  z-index: 0;
  animation: cinematicDrift 14s ease-in-out infinite alternate;
}

.cinematic-hero::after {
  display: block;
  position: absolute;
  inset: auto -8% -22% 34%;
  z-index: 1;
  width: 64vw;
  height: 44vw;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(216, 10, 124, 0.22), transparent 62%);
  filter: blur(42px);
  transform: rotate(-12deg);
}

.hero-overline {
  max-width: 34rem;
}

.hero-subtitle {
  max-width: 560px;
}

.hero-lead {
  max-width: 520px;
}

.hero-highlight {
  max-width: 560px;
}

.hero-highlight span {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-highlight span::after,
.button-primary::after,
.nav-button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.26) 48%, transparent 66% 100%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-standard);
}

.hero-highlight span:hover::after,
.button-primary:hover::after,
.nav-button:hover::after {
  transform: translateX(120%);
}

.button-primary,
.nav-button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(216, 10, 124, 0.26);
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
}

.hero-editorial {
  perspective: 1100px;
}

.hero-photo-main {
  clip-path: polygon(8% 0, 100% 0, 94% 100%, 0 92%);
  filter: saturate(1.04) contrast(1.03);
}

.hero-photo-side {
  clip-path: polygon(0 7%, 92% 0, 100% 92%, 8% 100%);
  filter: saturate(1.05);
}

.hero-photo-main,
.hero-photo-side,
.hero-stamp {
  will-change: transform;
}

.numbers-section {
  position: relative;
}

.numbers-section::before,
.portfolio-section::before {
  position: absolute;
  inset: 4% auto auto 50%;
  width: min(760px, 74vw);
  height: min(760px, 74vw);
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(216, 10, 124, 0.08), transparent 68%);
  transform: translateX(-50%);
}

.numbers-grid article,
.audience-cards article,
.offer-grid article,
.method-strip article,
.brand-cards a,
.content-cards article,
.compact-form {
  position: relative;
  overflow: hidden;
  transition: transform 280ms var(--ease-standard), box-shadow 280ms var(--ease-standard), border-color 280ms var(--ease-standard);
}

.numbers-grid article::before,
.audience-cards article::before,
.offer-grid article::before,
.method-strip article::before,
.brand-cards a::before,
.content-cards article::before,
.compact-form::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(216, 10, 124, 0.14), transparent 26%, rgba(125, 189, 235, 0.08));
  opacity: 0;
  transition: opacity 280ms var(--ease-standard);
}

.numbers-grid article:hover,
.audience-cards article:hover,
.offer-grid article:hover,
.method-strip article:hover,
.brand-cards a:hover,
.content-cards article:hover {
  border-color: rgba(216, 10, 124, 0.22);
  box-shadow: 0 26px 80px rgba(13, 13, 15, 0.11);
  transform: translateY(-6px);
}

.numbers-grid article:hover::before,
.audience-cards article:hover::before,
.offer-grid article:hover::before,
.method-strip article:hover::before,
.brand-cards a:hover::before,
.content-cards article:hover::before {
  opacity: 1;
}

.numbers-grid article i {
  display: block;
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 13, 15, 0.08);
}

.numbers-grid article i::after {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, var(--cinema-pink), var(--cinema-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-standard);
}

.numbers-section.is-visible .numbers-grid article i::after {
  transform: scaleX(1);
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border-block: 1px solid rgba(13, 13, 15, 0.08);
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.brand-marquee div {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marqueeFlow 26s linear infinite;
}

.brand-marquee span {
  color: rgba(13, 13, 15, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.6rem);
  white-space: nowrap;
}

.brand-marquee span::after {
  margin-left: 18px;
  color: var(--cinema-pink);
  content: "\2022";
}

.about-audience-section {
  position: relative;
}

.about-audience-section::after {
  position: absolute;
  left: 50%;
  top: 12%;
  bottom: 12%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(216, 10, 124, 0.26), transparent);
}

.about-cinema-copy p {
  max-width: 44ch;
}

.formats-method-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 10, 124, 0.22), transparent 28rem),
    radial-gradient(circle at 84% 70%, rgba(125, 189, 235, 0.12), transparent 24rem),
    linear-gradient(135deg, #0d0d0f, #22191d 58%, #331e28);
}

.formats-method-section .section-title h2,
.formats-method-section .offer-grid h3,
.formats-method-section .method-strip h3,
.formats-method-section .method-strip p {
  color: #fff;
}

.formats-method-section .section-kicker,
.formats-method-section .format-note,
.formats-method-section .offer-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.offer-grid article,
.method-strip article {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.075) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.formats-method-section .offer-grid article::before,
.formats-method-section .method-strip article::before {
  opacity: 0.36;
}

.formats-method-section .offer-grid h3,
.formats-method-section .offer-grid p,
.formats-method-section .method-strip h3,
.formats-method-section .method-strip p {
  position: relative;
  z-index: 2;
}

.line-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffc0df;
  font-size: 0.74rem;
}

.method-strip {
  position: relative;
  margin-top: 44px;
}

.method-strip::before {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 30px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.method-strip article {
  min-height: 180px;
}

.method-strip article span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--cinema-pink), rgba(125, 189, 235, 0.62));
  box-shadow: 0 16px 34px rgba(216, 10, 124, 0.24);
}

.method-strip h3 {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.method-strip p {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.brand-cards {
  display: none;
}

.content-cards article {
  border-radius: 22px;
  padding: 10px;
}

.content-cards article > img {
  aspect-ratio: 9 / 13;
  border-radius: 18px;
}

.content-cards article::after {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  content: "REELS";
  background: rgba(13, 13, 15, 0.62);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.content-cards div {
  position: relative;
  z-index: 2;
}

.content-cards em {
  display: block;
  margin-top: 8px;
  color: #7b7069;
  font-style: normal;
  line-height: 1.5;
}

.contact-section {
  border-top: 1px solid rgba(13, 13, 15, 0.08);
}

@keyframes marqueeFlow {
  to {
    transform: translateX(-50%);
  }
}

@keyframes cinematicDrift {
  from {
    transform: translate3d(-1.2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.4%, 1%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee div,
  .cinematic-hero::before {
    animation: none !important;
  }
}

@media (max-width: 1040px) {
  .about-audience-section::after,
  .method-strip::before {
    display: none;
  }

  .formats-method-section {
    padding-inline: 24px;
  }

}

@media (max-width: 720px) {
  .main-nav a:not(.nav-button) {
    display: none;
  }

  .nav-shell {
    padding: 7px 8px 7px 12px;
  }

  .signature-brand span:last-child {
    display: none;
  }

  .hero-lead {
    display: none;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
  }

  .hero-stamp {
    width: min(260px, 68%);
  }

  .brand-marquee {
    margin-inline: -14px;
  }

  .method-strip {
    gap: 14px;
  }

  .method-strip article {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    min-height: 0;
  }

  .method-strip h3,
  .method-strip p {
    grid-column: 2;
  }

  .method-strip h3 {
    margin-top: 4px;
  }

  .content-cards article > img {
    aspect-ratio: 4 / 3;
  }

  .mobile-sticky-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-inline: 0;
  }

  .nav-button,
  .hero-subtitle,
  .hero-lead,
  .hero-actions {
    max-width: 100%;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero .button,
  .hero-actions,
  .hero-visual,
  .hero-proof {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .hero-visual {
    grid-template-rows: 315px 148px auto;
  }

  .portrait-panel {
    min-height: 315px;
  }

  .statement-card span {
    font-size: 1.24rem;
  }

  .statement-card strong {
    font-size: 0.95rem;
  }

  .proposal-panel,
  .proposal-form {
    padding-inline: 20px;
  }
}

/* Design system visual layer: visible application of tokens and component rules. */
.site-header.is-scrolled .nav-shell,
.nav-shell {
  border-radius: var(--radius-xl);
}

.section-kicker {
  color: var(--color-primary-dark);
}

.glass-card,
.audience-copy,
.closing-scene div,
.media-kit-section,
.instagram-section {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 242, 0.58));
  box-shadow: var(--shadow-card);
}

.metric-card {
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 244, 0.78));
  box-shadow: 0 34px 110px rgba(70, 42, 35, 0.18);
}

.metric-item {
  isolation: isolate;
}

.metric-item::after {
  position: absolute;
  right: clamp(18px, 3vw, 30px);
  top: 22px;
  color: rgba(201, 119, 115, 0.18);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.metric-item:nth-child(1)::after {
  content: "01";
}

.metric-item:nth-child(2)::after {
  content: "02";
}

.metric-item:nth-child(3)::after {
  content: "03";
}

.metric-item:nth-child(4)::after {
  content: "04";
}

.metric-item:nth-child(5)::after {
  content: "05";
}

.metric-item strong {
  color: var(--color-text-primary);
}

.collab-card,
.format-rail article,
.media-kit-stack article,
.storyboard-grid article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 240, 0.64));
  box-shadow: var(--shadow-soft);
}

.collab-card:hover,
.format-rail article:hover,
.media-kit-stack article:hover,
.storyboard-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.proposal-section {
  position: relative;
  width: min(calc(100% - 48px), 1180px);
  margin: 108px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 232, 212, 0.32), transparent 18rem),
    radial-gradient(circle at 93% 10%, rgba(143, 157, 130, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(103, 55, 52, 0.96) 0%, rgba(169, 91, 87, 0.9) 43%, rgba(255, 250, 246, 0.96) 43%, rgba(255, 253, 249, 0.98) 100%);
  box-shadow: 0 44px 130px rgba(70, 42, 35, 0.2);
}

.proposal-section::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  pointer-events: none;
}

.proposal-section::after {
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  top: 30px;
  z-index: 0;
  content: "Bea";
  color: rgba(201, 119, 115, 0.13);
  font-family: var(--font-script);
  font-size: clamp(5rem, 11vw, 12rem);
  line-height: 1;
  pointer-events: none;
  transform: rotate(-9deg);
}

.proposal-panel,
.proposal-form {
  position: relative;
  z-index: 1;
}

.proposal-panel {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
}

.proposal-panel h2 {
  max-width: 480px;
  text-wrap: balance;
}

.proposal-panel p {
  max-width: 440px;
}

.proposal-benefits {
  gap: 12px;
}

.proposal-benefits span {
  max-width: none;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 232, 182, 0.34);
  border-radius: var(--radius-pill);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.proposal-form {
  margin: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(94, 67, 60, 0.12);
  border-radius: 28px;
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 244, 0.78));
  box-shadow: 0 28px 92px rgba(70, 42, 35, 0.16);
  backdrop-filter: blur(22px) saturate(1.08);
}

.proposal-form .section-kicker {
  color: var(--color-primary-dark);
}

.proposal-form label {
  gap: 8px;
}

.proposal-form label span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  color: var(--color-text-secondary);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  min-height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.proposal-form textarea {
  min-height: 132px;
}

.proposal-form .button {
  width: min(100%, 240px);
  min-height: 48px;
}

.site-footer {
  margin-top: 48px;
}

@media (max-width: 720px) {
  .proposal-section {
    width: min(calc(100% - 28px), 680px);
    grid-template-columns: 1fr;
    margin-top: 70px;
    border-radius: 30px;
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 232, 212, 0.28), transparent 16rem),
      linear-gradient(180deg, #a8605d 0%, #d58b87 44%, #fff8f3 44%, #fffdf9 100%);
  }

  .proposal-section::before {
    inset: 10px;
    border-radius: 24px;
  }

  .proposal-section::after {
    right: 18px;
    top: 18px;
    color: rgba(255, 255, 255, 0.11);
    font-size: 5.8rem;
  }

  .proposal-panel {
    min-height: 0;
    padding: 34px 22px 28px;
  }

  .proposal-panel h2 {
    max-width: 13ch;
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .proposal-panel p {
    max-width: 30ch;
  }

  .proposal-benefits {
    display: grid;
    margin-top: 26px;
  }

  .proposal-form {
    margin: 0 10px 10px;
    border-radius: 24px;
    padding: 28px 18px 20px;
  }

  .form-grid {
    gap: 14px;
  }

  .proposal-form .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Cinematic media-kit refactor */
:root {
  --cinema-black: #0d0d0f;
  --cinema-graphite: #2b2b2f;
  --cinema-off: #f8f4ef;
  --cinema-line: rgba(216, 210, 202, 0.28);
  --cinema-muted: #8c837b;
  --cinema-pink: #d80a7c;
  --cinema-blue: #7dbdeb;
}

body {
  background: var(--cinema-off);
  color: var(--cinema-black);
}

.top-strip {
  display: none;
}

.site-header {
  background: rgba(13, 13, 15, 0.72);
  backdrop-filter: blur(20px);
}

.nav-shell {
  max-width: 1240px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.signature-brand,
.main-nav a {
  color: #fff;
}

.nav-button {
  background: var(--cinema-pink);
}

.cinematic-hero {
  min-height: 100svh;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  padding-top: 154px;
  background:
    radial-gradient(circle at 78% 12%, rgba(216, 10, 124, 0.2), transparent 28rem),
    radial-gradient(circle at 24% 80%, rgba(125, 189, 235, 0.14), transparent 24rem),
    linear-gradient(135deg, #0d0d0f 0%, #1b1719 48%, #332026 100%);
}

.cinematic-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.cinematic-hero::after {
  display: none;
}

.hero-overline {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  color: #fff;
  font-size: clamp(5rem, 8.5vw, 9.5rem);
}

.hero-subtitle {
  max-width: 660px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-highlight span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.hero-highlight strong {
  color: var(--cinema-pink);
}

.button-primary {
  background: var(--cinema-pink);
}

.hero-editorial {
  position: relative;
  min-height: 640px;
}

.hero-editorial img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.hero-photo-main {
  right: 0;
  top: 20px;
  width: min(70%, 520px);
  height: 620px;
  border-radius: 10px;
}

.hero-photo-side {
  left: 0;
  top: 130px;
  width: min(44%, 300px);
  height: 430px;
  border-radius: 10px;
}

.hero-stamp {
  position: absolute;
  left: 18%;
  bottom: 56px;
  width: min(330px, 70%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  background: rgba(13, 13, 15, 0.74);
  backdrop-filter: blur(18px);
}

.hero-stamp span {
  display: block;
  color: #ffc0df;
  font-family: var(--font-script);
  font-size: 3rem;
  line-height: 0.8;
}

.hero-stamp strong,
.hero-stamp small {
  display: block;
}

.numbers-section,
.about-audience-section,
.formats-method-section,
.portfolio-section,
.contact-section {
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 124px) 0;
}

.section-title p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--cinema-muted);
  line-height: 1.7;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.numbers-grid article,
.audience-cards article,
.offer-grid article,
.method-strip article,
.brand-cards a,
.content-cards article,
.compact-form {
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(13, 13, 15, 0.06);
}

.numbers-grid article {
  min-height: 210px;
  padding: 26px;
}

.metric-icon {
  color: var(--cinema-pink);
  font-size: 1.4rem;
}

.numbers-grid strong {
  display: block;
  margin-top: 34px;
  color: var(--cinema-black);
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.85;
}

.numbers-grid p {
  margin-top: 16px;
  color: var(--cinema-muted);
  font-weight: 760;
  text-transform: uppercase;
}

.about-audience-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.about-cinema-copy h2,
.section-title h2,
.contact-copy h2 {
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  line-height: 0.95;
}

.about-cinema-copy p,
.contact-copy p {
  margin-top: 22px;
  color: #5f5750;
  font-size: 1.05rem;
  line-height: 1.75;
}

.audience-cards {
  display: grid;
  gap: 12px;
}

.audience-cards article {
  padding: 24px;
}

.audience-cards span,
.brand-cards span,
.content-cards span {
  color: var(--cinema-pink);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-cards strong {
  display: block;
  margin-top: 8px;
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.08;
}

.formats-method-section,
.portfolio-section {
  border-top: 1px solid rgba(13, 13, 15, 0.08);
}

.offer-grid,
.content-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.offer-grid article {
  min-height: 320px;
  padding: 30px;
}

.line-icon {
  color: var(--cinema-pink);
  font-size: 1.65rem;
}

.offer-grid h3,
.content-cards h3 {
  margin-top: 36px;
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.offer-grid p,
.content-cards p {
  margin-top: 16px;
  color: #625a53;
  line-height: 1.65;
}

.format-note {
  max-width: 840px;
  margin: 24px auto 0;
  color: var(--cinema-muted);
  text-align: center;
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.method-strip article {
  min-height: 132px;
  padding: 20px;
}

.method-strip span {
  color: var(--cinema-pink);
  font-weight: 850;
  text-transform: uppercase;
}

.method-strip p {
  margin-top: 20px;
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.12;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.brand-cards a {
  min-height: 120px;
  padding: 18px;
}

.brand-cards strong {
  display: block;
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.content-cards article {
  overflow: hidden;
}

.content-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}

.content-cards div {
  padding: 22px;
}

.content-cards a {
  display: inline-block;
  margin-top: 18px;
  color: var(--cinema-pink);
  font-weight: 850;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
  padding-bottom: 12px;
}

.contact-list strong {
  color: var(--cinema-muted);
  text-transform: uppercase;
}

.compact-form {
  padding: clamp(24px, 4vw, 44px);
}

.compact-form h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.mobile-sticky-cta {
  border-color: rgba(13, 13, 15, 0.12);
}

@media (max-width: 1040px) {
  .cinematic-hero,
  .about-audience-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-editorial {
    min-height: 560px;
  }

  .numbers-grid,
  .method-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid,
  .content-cards {
    grid-template-columns: 1fr;
  }

  .brand-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .cinematic-hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(4rem, 16vw, 5.4rem);
  }

  .hero-editorial {
    min-height: 470px;
  }

  .hero-photo-main {
    width: 74%;
    height: 420px;
  }

  .hero-photo-side {
    width: 46%;
    height: 300px;
  }

  .hero-stamp {
    left: 8px;
    bottom: 24px;
  }

  .numbers-grid,
  .method-strip,
  .brand-cards {
    grid-template-columns: 1fr;
  }

  .numbers-section,
  .about-audience-section,
  .formats-method-section,
  .portfolio-section,
  .contact-section {
    width: min(calc(100% - 28px), 1240px);
    padding: 58px 0;
  }
}

/* Viewport-fit hero: keep first section inside the loaded screen */
.cinematic-hero {
  min-height: 100svh;
  height: 100svh;
  max-height: 100svh;
  align-items: center;
  gap: clamp(28px, 4vw, 66px);
  padding-top: clamp(104px, 12svh, 132px);
  padding-bottom: clamp(20px, 4svh, 44px);
}

.cinematic-hero .hero-content {
  align-self: center;
}

.cinematic-hero .hero-overline {
  margin-bottom: clamp(12px, 1.6svh, 18px);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
}

.cinematic-hero .hero h1,
.cinematic-hero h1 {
  font-size: clamp(4.5rem, min(7.2vw, 11svh), 8.4rem);
  line-height: 0.84;
}

.cinematic-hero .hero-subtitle {
  max-width: 12ch;
  margin-top: clamp(8px, 1.2svh, 16px);
  font-size: clamp(2rem, min(3vw, 5svh), 3.35rem);
  line-height: 0.98;
}

.cinematic-hero .hero-lead {
  max-width: 520px;
  margin-top: clamp(12px, 1.8svh, 20px);
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  line-height: 1.55;
}

.cinematic-hero .hero-highlight {
  margin-top: clamp(14px, 2svh, 22px);
  gap: 8px;
}

.cinematic-hero .hero-actions {
  margin-top: clamp(16px, 2.4svh, 28px);
}

.hero-editorial {
  min-height: min(58svh, 560px);
  align-self: center;
}

.hero-photo-main {
  top: 0;
  width: min(66%, 470px);
  height: min(58svh, 510px);
}

.hero-photo-side {
  top: min(12svh, 116px);
  width: min(43%, 280px);
  height: min(43svh, 390px);
}

.hero-stamp {
  bottom: clamp(8px, 2svh, 28px);
}

@media (max-height: 820px) and (min-width: 900px) {
  .cinematic-hero {
    padding-top: 96px;
    padding-bottom: 20px;
  }

  .cinematic-hero .hero h1,
  .cinematic-hero h1 {
    font-size: clamp(4rem, 6vw, 6.6rem);
  }

  .cinematic-hero .hero-subtitle {
    font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  }

  .cinematic-hero .hero-lead {
    max-width: 470px;
    font-size: 0.94rem;
  }

  .hero-photo-main {
    height: min(55svh, 440px);
  }

  .hero-photo-side {
    top: 74px;
    height: min(40svh, 320px);
  }
}

@media (max-width: 1040px) {
  .cinematic-hero {
    height: auto;
    max-height: none;
    min-height: 100svh;
  }
}

@media (max-width: 720px) {
  .cinematic-hero {
    height: auto;
    max-height: none;
    padding-top: 92px;
    padding-bottom: 26px;
  }

  .cinematic-hero .hero h1,
  .cinematic-hero h1 {
    font-size: clamp(3.7rem, 14vw, 5rem);
  }

  .cinematic-hero .hero-subtitle {
    max-width: 13ch;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .hero-editorial {
    min-height: 360px;
  }

  .hero-photo-main {
    height: 340px;
  }

  .hero-photo-side {
    height: 250px;
  }
}

/* Media kit editorial rebuild v12 */
.media-kit-page {
  background:
    radial-gradient(circle at 14% 5%, rgba(216, 10, 124, 0.08), transparent 24rem),
    linear-gradient(180deg, #f8f4ef 0%, #fff 42%, #f8f4ef 100%);
}

.site-header {
  color: var(--cinema-black);
  background: rgba(248, 244, 239, 0.78);
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
}

.signature-brand,
.main-nav a {
  color: var(--cinema-black);
}

.nav-shell {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 13, 15, 0.09);
  box-shadow: 0 18px 70px rgba(13, 13, 15, 0.08);
}

.cinematic-hero {
  color: var(--cinema-black);
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(13, 13, 15, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(216, 10, 124, 0.14), transparent 32rem),
    linear-gradient(135deg, #f8f4ef 0%, #ffffff 48%, #eee6df 100%);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.cinematic-hero::before {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

.cinematic-hero::after {
  opacity: 0.5;
}

.hero-overline,
.hero-lead {
  color: rgba(13, 13, 15, 0.68);
}

.hero h1,
.hero-subtitle {
  color: var(--cinema-black);
}

.hero-highlight span {
  color: var(--cinema-black);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 13, 15, 0.12);
}

.button-outline {
  background: #fff;
}

.hero-stamp {
  color: #fff;
  background: rgba(13, 13, 15, 0.86);
}

.pdf-metrics {
  padding-top: clamp(70px, 8vw, 112px);
}

.metric-story {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  max-width: 820px;
  margin: 28px auto 0;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(13, 13, 15, 0.06);
}

.metric-story strong {
  color: var(--cinema-pink);
}

.metric-story span {
  color: #514a45;
  line-height: 1.6;
}

.pdf-about {
  align-items: stretch;
}

.pdf-about::after {
  display: none;
}

.pdf-about .about-cinema-copy {
  border-radius: 28px;
  padding: clamp(28px, 5vw, 62px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 0 0, rgba(216, 10, 124, 0.12), transparent 24rem);
  box-shadow: 0 28px 90px rgba(13, 13, 15, 0.08);
}

.pdf-about .about-cinema-copy p {
  max-width: 68ch;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-pills span,
.influence-points span {
  border: 1px solid rgba(13, 13, 15, 0.11);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--cinema-black);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-device {
  display: grid;
  align-content: end;
  gap: 16px;
  border-radius: 32px;
  padding: 18px;
  background: #111;
  box-shadow: 0 34px 100px rgba(13, 13, 15, 0.22);
}

.profile-device img {
  width: 100%;
  max-height: 520px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 18%;
}

.profile-screen {
  border-radius: 22px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, #1d1d21, #2f2028);
}

.profile-screen span {
  color: #ffc0df;
  font-weight: 850;
}

.profile-screen strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.profile-screen p,
.profile-screen small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.audience-reach-section,
.influence-section {
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 124px) 0;
}

.audience-reach-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.audience-panel h2,
.influence-section h2 {
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 5.2rem);
  line-height: 0.96;
}

.audience-panel p,
.reach-card p,
.influence-section > p {
  margin-top: 20px;
  color: #5f5750;
  font-size: 1.05rem;
  line-height: 1.75;
}

.reach-card {
  grid-column: 1 / -1;
  border-radius: 28px;
  padding: clamp(26px, 4vw, 46px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(216, 10, 124, 0.34), transparent 24rem),
    linear-gradient(135deg, #0d0d0f, #2b1a23);
}

.reach-card span {
  color: #ffc0df;
  font-weight: 850;
  text-transform: uppercase;
}

.reach-card strong {
  display: block;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.reach-card p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.76);
}

.influence-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid rgba(13, 13, 15, 0.08);
  border-bottom: 1px solid rgba(13, 13, 15, 0.08);
}

.influence-points {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdf-formats {
  background:
    linear-gradient(rgba(248, 244, 239, 0.86), rgba(248, 244, 239, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(216, 10, 124, 0.12), transparent 24rem);
  color: var(--cinema-black);
}

.pdf-formats .section-title h2,
.pdf-formats .method-strip h3,
.pdf-formats .method-strip p {
  color: var(--cinema-black);
}

.pdf-formats .section-kicker,
.pdf-formats .format-note {
  color: #6f6660;
}

.activation-board {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  margin-top: 34px;
}

.activation-board ul,
.activation-board > div {
  margin: 0;
  border: 1px solid rgba(13, 13, 15, 0.09);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(13, 13, 15, 0.08);
}

.activation-board li {
  margin: 0 0 14px 1.1rem;
  color: var(--cinema-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
  line-height: 1.1;
}

.activation-board strong {
  display: block;
  color: var(--cinema-pink);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.activation-board p {
  margin-top: 14px;
  color: #5f5750;
  font-size: 1.1rem;
  line-height: 1.7;
}

.pdf-formats .method-strip article,
.pdf-formats .offer-grid article {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(13, 13, 15, 0.09) !important;
  box-shadow: 0 18px 54px rgba(13, 13, 15, 0.07);
}

.portfolio-section {
  background: #fff;
}

.contact-section {
  background: #f8f4ef;
}

@media (max-width: 1040px) {
  .audience-reach-section,
  .influence-section,
  .activation-board,
  .pdf-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .audience-reach-section,
  .influence-section {
    width: min(calc(100% - 28px), 1240px);
    padding: 58px 0;
  }

  .metric-story,
  .activation-board {
    grid-template-columns: 1fr;
  }

  .profile-device {
    border-radius: 24px;
  }

  .profile-device img {
    max-height: 420px;
  }
}
