:root {
  --black: #050505;
  --ink: #11100d;
  --panel: #16130f;
  --panel-soft: #211b14;
  --gold: #c8a96a;
  --gold-bright: #f0d58a;
  --white: #fffaf0;
  --muted: #c8c0b2;
  --line: rgba(240, 213, 138, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif-display: "Bodoni 72", "Bodoni 72 Display", "Bodoni 72 Smallcaps", Didot, "Bodoni MT", "Bodoni 11", "Times New Roman", Times, Georgia, serif;
  color-scheme: dark;
  font-family: var(--serif-display);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.48) 72%, transparent);
  backdrop-filter: blur(14px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

body.signature-active .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  font-size: 1.08rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  object-fit: cover;
}

.logo-brand img {
  width: clamp(136px, 15vw, 210px);
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  z-index: 32;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  order: 3;
  flex: 0 0 auto;
  margin-left: 0;
  border: 1px solid rgba(240, 213, 138, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.42);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 420ms var(--ease), opacity 420ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  width: min(430px, calc(100vw - 28px));
  height: 100vh;
  min-height: 100vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 108px 38px 42px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(20, 16, 12, 0.99), rgba(5, 5, 5, 1)),
    var(--black);
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.42);
  color: var(--muted);
  overflow: hidden;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  font-style: italic;
  opacity: 0;
  pointer-events: none;
  transform: translateX(105%);
  transition: transform 640ms var(--ease), opacity 420ms var(--ease);
}

nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

nav a {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 213, 138, 0.16);
  overflow-wrap: anywhere;
}

.lang-switch {
  display: inline-flex;
  order: 2;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(240, 213, 138, 0.22);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 750;
}

.lang-switch a {
  display: inline-flex;
  min-width: 30px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
}

.lang-switch a[aria-current="page"] {
  background: var(--gold-bright);
  color: #160f07;
}

nav a:hover,
footer a:hover {
  color: var(--gold-bright);
}

.powered-by {
  color: var(--gold-bright);
  font-style: italic;
}

nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 80px) 56px;
  overflow: hidden;
  isolation: isolate;
}

.scroll-signature {
  --intro-progress: 0;
  position: relative;
  height: 240svh;
  padding: 0 !important;
  background: #000;
  isolation: isolate;
}

.signature-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.signature-sticky::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: calc(var(--intro-progress) * 0.38);
  background:
    radial-gradient(circle at 50% 48%, rgba(240, 213, 138, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 92px);
  content: "";
}

.signature-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(220px, 30vw, 430px);
  opacity: calc(1 - (var(--intro-progress) * 2.25));
  transform: translate(-50%, calc(-50% + (var(--intro-progress) * -28px))) scale(calc(1 - (var(--intro-progress) * 0.08)));
  filter: drop-shadow(0 22px 70px rgba(240, 213, 138, 0.12));
  transition: opacity 160ms linear;
}

.signature-words {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  width: 100%;
  gap: clamp(0px, 1vw, 12px);
  padding: 0 clamp(18px, 4vw, 64px);
  opacity: clamp(0, calc((var(--intro-progress) - 0.14) * 2.1), 1);
}

.signature-word {
  display: block;
  width: 100%;
  color: transparent;
  background:
    linear-gradient(90deg, rgba(240, 213, 138, 0.92), rgba(255, 250, 240, 0.18)),
    url("amanda-munini-hero.jpg") center 42% / cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--serif-display);
  font-size: clamp(5rem, 18vw, 17rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(240, 213, 138, 0.16);
  filter: drop-shadow(0 20px 70px rgba(0, 0, 0, 0.5));
  will-change: transform, opacity, background-position;
}

.signature-amanda {
  text-align: left;
  transform: translate3d(calc((1 - var(--intro-progress)) * 62vw), 0, 0);
  background-position: calc(68% - (var(--intro-progress) * 22%)) center;
}

.signature-munini {
  text-align: right;
  transform: translate3d(calc((var(--intro-progress) - 1) * 62vw), 0, 0);
  background-position: calc(28% + (var(--intro-progress) * 22%)) center;
}

.signature-word::selection {
  background: transparent;
}

.cinematic::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 16%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 82px);
  mix-blend-mode: screen;
  content: "";
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
  transition: transform 1000ms var(--ease);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.7) 37%, rgba(5, 5, 5, 0.18) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.04) 46%);
}

.hero-content {
  width: min(720px, 100%);
  padding-bottom: clamp(26px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: var(--serif-display);
  font-size: clamp(3rem, 7.4vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero {
  min-height: 74svh;
  display: grid;
  align-items: end;
  padding: 176px clamp(18px, 5vw, 80px) clamp(72px, 10vw, 132px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.74)),
    radial-gradient(circle at 82% 22%, rgba(240, 213, 138, 0.13), transparent 34%),
    var(--ink);
}

.page-hero > div {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 720px;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.64)),
    url("amanda-munini-hero.jpg") center / cover;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--serif-display);
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 400;
  font-style: italic;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.hero-actions,
.social-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 750;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  box-shadow: 0 14px 34px rgba(240, 213, 138, 0.13);
}

.button.primary {
  background: var(--gold-bright);
  color: #181006;
  border-color: transparent;
}

.button.ghost {
  background: rgba(5, 5, 5, 0.42);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: clamp(84px, 12vh, 132px);
  width: min(300px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 9, 7, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 0.9;
}

.hero-panel span {
  display: block;
  color: var(--muted);
}

.panel-label {
  margin-bottom: 18px;
  color: var(--white) !important;
  font-style: italic;
  font-weight: 400;
}

.hero-panel a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-bright);
  font-weight: 800;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 80px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 96px);
}

.intro,
.services,
.social,
.feature,
.about-home,
.story-section,
.what-together,
.difference-section,
.team-section,
.client-section,
.results-section {
  border-top: 1px solid var(--line);
}

.intro-copy {
  max-width: 780px;
  align-self: end;
}

.long-copy {
  max-width: 820px;
}

.long-copy p {
  margin-bottom: 22px;
}

.section-heading {
  max-width: 820px;
}

.metrics {
  background: var(--ink);
}

.cinema-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.cinema-strip article {
  min-height: 340px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(35, 29, 20, 0.92), rgba(5, 5, 5, 0.96)),
    var(--panel);
}

.cinema-strip span,
.case-kicker,
.action-grid article > span {
  display: inline-block;
  margin-bottom: 86px;
  color: var(--gold-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.what-together,
.difference-section,
.process-section {
  background: var(--black);
}

.what-together .section-heading,
.difference-section .section-heading,
.process-section .section-heading {
  margin-bottom: 44px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-grid article {
  min-height: 310px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(28, 23, 17, 0.94), rgba(5, 5, 5, 0.98)),
    var(--panel);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--gold-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 750;
}

.deliverables {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.deliverable-list {
  align-self: end;
  max-width: 820px;
}

.action-grid article {
  min-height: 420px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(28, 23, 17, 0.94), rgba(5, 5, 5, 0.98)),
    var(--panel);
}

.action-grid h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1;
}

.cinema-strip h3 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.9;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.metric-grid article {
  min-height: 276px;
  padding: 28px;
  background: var(--panel);
}

.metric-grid span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--gold);
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.42rem;
  font-weight: 400;
  font-style: italic;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article,
.faq details,
.case-card,
.case-preview,
.contact-options article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(33, 27, 20, 0.96), rgba(15, 14, 12, 0.96));
}

.motion-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 520ms var(--ease), border-color 520ms var(--ease), background 520ms var(--ease), box-shadow 520ms var(--ease);
}

.hero-panel.motion-card {
  position: absolute;
}

.motion-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(240, 213, 138, 0.18), transparent 34%, rgba(255, 255, 255, 0.06));
  transition: opacity 520ms var(--ease);
  content: "";
}

.motion-card:hover {
  border-color: rgba(240, 213, 138, 0.58);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.motion-card:hover::before {
  opacity: 1;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-bright);
  font-style: italic;
  font-size: 1.14rem;
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.case-preview {
  min-height: 420px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.94)),
    linear-gradient(135deg, rgba(120, 26, 25, 0.9), rgba(9, 8, 6, 0.96));
}

.case-preview strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-metrics span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(240, 213, 138, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 750;
}

.clients {
  background: var(--white);
  color: #100d08;
}

.clients .eyebrow,
.clients p {
  color: #6f5524;
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.compact-grid {
  align-items: end;
}

.client-section {
  background: var(--white);
  color: #100d08;
}

.client-section .eyebrow,
.client-section p {
  color: #6f5524;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(16, 13, 8, 0.14);
  background: rgba(16, 13, 8, 0.14);
}

.client-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #f7efe2;
  color: #171109;
  font-style: italic;
  font-size: 1.1rem;
}

.results-section {
  background: var(--ink);
}

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

.result-grid article {
  min-height: 330px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(33, 27, 20, 0.96), rgba(7, 7, 6, 0.98));
}

.result-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.result-grid span {
  display: block;
  margin-bottom: 18px;
  font-style: italic;
  font-size: 1.2rem;
}

.client-strip span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(16, 13, 8, 0.2);
  border-radius: 999px;
  padding: 10px 18px;
  color: #16120b;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
}

.phone {
  width: min(390px, 100%);
  min-height: 660px;
  justify-self: center;
  border: 1px solid rgba(240, 213, 138, 0.5);
  border-radius: 34px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(250, 233, 180, 0.18), transparent 26%),
    #090806;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 110px;
  height: 24px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #050505;
}

.story-preview {
  display: grid;
  min-height: 590px;
  align-content: end;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.5) 42%, rgba(5, 5, 5, 0.96) 100%),
    radial-gradient(circle at 50% 18%, rgba(240, 213, 138, 0.18), transparent 40%),
    #781a19;
}

.story-preview img {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 2px solid var(--gold-bright);
  object-fit: cover;
}

.story-preview span {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-weight: 800;
  text-transform: uppercase;
}

.story-preview strong {
  margin-bottom: 22px;
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.04;
}

.story-preview a {
  color: var(--gold-bright);
  font-weight: 800;
}

.seo-band {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.7)),
    var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-grid,
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.case-card {
  min-height: 520px;
  display: grid;
  align-content: end;
}

.case-card h2,
.contact-options h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.case-card .case-kicker,
.contact-options .case-kicker {
  margin-bottom: 120px;
}

.seo-band h2,
.seo-band p {
  max-width: 920px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq .section-heading {
  margin-bottom: 18px;
}

.faq summary {
  cursor: pointer;
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18rem;
}

.faq details p {
  margin: 16px 0 0;
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  color: #100d08;
}

.work-together {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 78% 36%, rgba(240, 213, 138, 0.14), transparent 34%);
  border-top: 1px solid var(--line);
}

.work-together h2 {
  max-width: 760px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.social-row.compact {
  margin-top: 20px;
}

.social-link,
.social-row.compact a,
.social-row.compact span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--gold-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.62)),
    url("amanda-munini-hero.jpg") center / cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.team-card {
  min-height: 620px;
  display: grid;
  align-content: end;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.team-card > img,
.team-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-card > img {
  object-fit: cover;
  object-position: 52% center;
}

.team-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.56)),
    linear-gradient(135deg, rgba(240, 213, 138, 0.2), rgba(120, 26, 25, 0.42)),
    var(--panel-soft);
  color: rgba(255, 250, 240, 0.55);
  font-size: clamp(5rem, 12vw, 11rem);
  font-style: italic;
}

.team-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 5, 0.86));
  content: "";
}

.team-card > div:not(.team-placeholder) {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 52px);
}

.team-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.contact p,
.contact .eyebrow {
  color: #6f5524;
}

.contact h2,
.contact p {
  max-width: 760px;
}

.contact .button.ghost {
  color: #100d08;
  background: transparent;
  border-color: rgba(16, 13, 8, 0.2);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.error-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(28px, 6vw, 80px);
  background:
    radial-gradient(circle at 50% 42%, rgba(240, 213, 138, 0.12), transparent 30%),
    #000;
  text-align: center;
}

.error-page img {
  width: min(320px, 72vw);
  margin-bottom: clamp(48px, 8vw, 82px);
  filter: drop-shadow(0 22px 70px rgba(240, 213, 138, 0.12));
}

.error-page h1 {
  max-width: 820px;
}

.error-page p:not(.eyebrow) {
  max-width: 620px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(4px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.service-list [data-reveal]:nth-child(2),
.cinema-strip [data-reveal]:nth-child(2),
.case-grid [data-reveal]:nth-child(2) {
  --delay: 120ms;
}

.service-list [data-reveal]:nth-child(3),
.cinema-strip [data-reveal]:nth-child(3),
.case-grid [data-reveal]:nth-child(3) {
  --delay: 220ms;
}

.service-list [data-reveal]:nth-child(4) {
  --delay: 300ms;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .hero {
    min-height: 860px;
    align-items: center;
  }

  .hero-content {
    padding-bottom: 180px;
  }

  .hero-panel {
    left: 18px;
    right: auto;
    bottom: 34px;
  }

  .section-grid,
  .metric-grid,
  .cinema-strip,
  .case-grid,
  .contact-options,
  .action-grid,
  .process-grid,
  .brand-wall,
  .result-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: auto;
  }

  .metric-grid span {
    margin-bottom: 30px;
  }

  .sticky-heading {
    position: static;
  }

  .contact,
  .work-together {
    display: block;
  }

  .case-card {
    min-height: 430px;
  }

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

@media (max-width: 620px) {
  .site-header {
    display: flex;
    padding: 14px 18px 18px;
  }

  .logo-brand img {
    width: 138px;
  }

  nav {
    align-items: flex-start;
    width: min(360px, calc(100vw - 28px));
    gap: 12px;
    padding: 112px 28px 34px;
    font-size: clamp(1.75rem, 8.4vw, 2.65rem);
  }

  .lang-switch {
    transform: scale(0.9);
    transform-origin: right center;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 820px;
    padding-top: 94px;
  }

  .scroll-signature {
    height: 210svh;
  }

  .signature-logo {
    width: min(78vw, 300px);
  }

  .signature-words {
    gap: 14px;
  }

  .signature-word {
    font-size: clamp(4.2rem, 22vw, 7.8rem);
    line-height: 0.86;
  }

  .signature-amanda,
  .signature-munini {
    text-align: center;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.24)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.28) 70%);
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .page-hero {
    min-height: 680px;
    padding-top: 166px;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
  }

  .phone {
    min-height: 580px;
    border-radius: 28px;
  }

  .story-preview {
    min-height: 510px;
  }

  .cinema-strip article,
  .case-card,
  .action-grid article {
    min-height: 380px;
  }

  .team-card {
    min-height: 520px;
  }

  .brand-wall {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .scroll-signature {
    height: 100svh;
  }

  .signature-logo {
    opacity: 0;
  }

  .signature-words {
    opacity: 1;
  }

  .signature-amanda,
  .signature-munini {
    transform: none;
  }
}
.site-header::after {
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  right: clamp(18px, 4vw, 64px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}
