@import url("https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@78..125,400..800&display=swap");

@font-face {
  font-family: "Ramesha";
  src: url("assets/fonts/Ramesha-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ramesha";
  src: url("assets/fonts/Ramesha-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ramesha";
  src: url("assets/fonts/Ramesha-Italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --graphite: #242421;
  --ash: #62615b;
  --line: #d8d3c7;
  --paper: #f5f1e9;
  --bone: #ebe5d9;
  --white: #fffdf8;
  --surgical: #6f8378;
  --surgical-dark: #3f5149;
  --gold: #ad8f58;
  --copper: #8c5f44;
  --acid: #d8f12f;
  --blood: #8f1d1d;
  --shadow: 0 24px 70px rgba(17, 17, 15, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(245, 241, 233, 0.9);
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(148px, 15vw, 210px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--ash);
  font-size: 0.86rem;
  font-stretch: 94%;
}

.main-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  font-stretch: 92%;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 64px);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-muted {
  background: var(--bone);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 6vw, 76px) clamp(20px, 5vw, 64px) clamp(42px, 6vw, 80px);
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(17, 17, 15, 0), rgba(111, 131, 120, 0.16));
  pointer-events: none;
}

.hero-signature {
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: min(62vw, 820px);
  opacity: 0.045;
  filter: invert(1);
  pointer-events: none;
}

.hero-grid,
.problem-grid,
.film-layout,
.insight-layout,
.art-grid,
.fit-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--surgical);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #a8b8af;
}

h1,
h2 {
  font-family: "Ramesha", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.88;
  font-weight: 700;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.55vw, 5.35rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.2;
  font-stretch: 92%;
}

.hero-subtitle,
.lead-text,
.insight-copy,
.film-copy p,
.final-cta p,
.section-heading p {
  color: rgba(17, 17, 15, 0.72);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  font-stretch: 94%;
}

.section-dark .hero-subtitle,
.section-dark .section-heading p,
.section-dark .microcopy {
  color: rgba(255, 253, 248, 0.72);
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  font-stretch: 92%;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 253, 248, 0.28);
  color: var(--white);
}

.final-cta .button-primary {
  background: var(--ink);
  color: var(--white);
}

.microcopy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ash);
  font-size: 0.92rem;
}

.hero-visual,
.film-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: clamp(430px, 58vh, 640px);
}

.hero-visual img,
.film-image img,
.hero-visual video,
.film-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual video,
.film-image video {
  display: block;
  position: absolute;
  inset: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 15, 0.02), rgba(17, 17, 15, 0.48));
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.32);
  color: var(--white);
  font-size: 0.9rem;
}

.hero-visual figcaption span {
  color: #ccd8d1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto clamp(34px, 6vw, 64px);
}

.section-heading.narrow {
  max-width: 860px;
  text-align: center;
}

.lead-text p:last-child,
.insight-copy p:last-child,
.film-copy p:last-of-type {
  margin-bottom: 0;
}

.pain-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.pain-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.pain-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.pain-list p {
  margin: 0;
  color: var(--graphite);
}

.insight-layout {
  align-items: start;
}

.alignment-strip {
  width: min(100%, var(--max));
  margin: clamp(34px, 5vw, 54px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alignment-strip span,
.use-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.46);
  color: var(--graphite);
  font-size: 0.88rem;
}

.art-direction {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 253, 248, 0.08);
}

.art-direction::before {
  content: "FIGUEIRA";
  position: absolute;
  left: -4vw;
  bottom: -0.28em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 248, 0.08);
  font-family: "Ramesha", Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.art-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  align-items: stretch;
}

.art-copy {
  display: grid;
  align-content: center;
  max-width: 620px;
}

.art-copy p:last-child {
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
}

.art-copy .eyebrow {
  color: var(--acid);
}

.art-copy h2 {
  max-width: 600px;
  color: var(--white);
  font-size: clamp(3.8rem, 6.6vw, 7rem);
  letter-spacing: 0;
}

.art-copy h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 8px;
  margin-top: 28px;
  background: var(--blood);
}

.media-board {
  position: relative;
  min-height: clamp(620px, 62vw, 820px);
}

.art-video-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: min(100%, 760px);
  height: 100%;
  min-height: clamp(620px, 62vw, 820px);
  margin-left: auto;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 0;
  background: #050504;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
}

.art-video-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(216, 241, 47, 0.34);
  pointer-events: none;
}

.art-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0.58)),
    linear-gradient(90deg, rgba(143, 29, 29, 0.2), rgba(216, 241, 47, 0.05));
}

.art-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.12);
}

.art-video-frame figcaption {
  position: absolute;
  right: 34px;
  bottom: clamp(96px, 13vw, 150px);
  left: 34px;
  z-index: 3;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.art-video-frame figcaption span {
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.art-video-frame figcaption strong {
  max-width: 440px;
  font-family: "Ramesha", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 0.88;
  font-weight: 700;
}

.art-video-caption {
  position: absolute;
  top: 26px;
  left: 18px;
  z-index: 4;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.art-video-caption span {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.art-video-caption span:nth-child(2) {
  margin-left: 0;
  background: var(--blood);
  color: var(--white);
}

.art-video-caption span:nth-child(3) {
  margin-left: 0;
  background: var(--white);
  color: var(--ink);
}

.method-grid,
.solutions-grid,
.case-grid,
.case-showcase,
.process-list {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-grid article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.36);
}

.method-grid strong {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 500;
}

.method-grid p,
.solution-card p,
.case-card p,
.proof-formats li,
.process-list p {
  margin-bottom: 0;
  color: rgba(17, 17, 15, 0.66);
}

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

.solution-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 253, 248, 0.36);
  background: rgba(255, 253, 248, 0.075);
}

.solution-card span {
  display: block;
  margin-bottom: 48px;
  color: #a8b8af;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.solution-card p {
  color: rgba(255, 253, 248, 0.66);
}

.film-layout {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.film-image {
  min-height: clamp(420px, 60vw, 650px);
}

.film-copy {
  max-width: 680px;
}

.use-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

.case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.case-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  min-height: 520px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  overflow: hidden;
}

.case-story.featured {
  background: var(--ink);
  color: var(--white);
}

.case-content {
  max-width: 640px;
}

.case-content span {
  display: block;
  margin-bottom: 22px;
  color: var(--surgical-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-story.featured .case-content span,
.case-story.featured .case-content p,
.case-story.featured .case-content li {
  color: rgba(255, 253, 248, 0.68);
}

.case-story.featured .case-content span {
  color: #a8b8af;
}

.case-content h3 {
  font-family: "Ramesha", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 0.96;
  font-weight: 600;
}

.case-content p,
.case-content li {
  color: rgba(17, 17, 15, 0.68);
}

.case-content ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.case-content a {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-content blockquote {
  margin: 24px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--graphite);
  font-family: "Ramesha", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.case-proof {
  position: relative;
  align-self: stretch;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #161a1a;
  box-shadow: 0 24px 70px rgba(17, 17, 15, 0.22);
}

.case-phone {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(16px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 52% 18%, rgba(173, 143, 88, 0.18), transparent 32%),
    radial-gradient(circle at 24% 70%, rgba(111, 131, 120, 0.18), transparent 34%),
    #030303;
}

.phone-shell {
  position: relative;
  width: min(100%, 430px);
  height: min(88vh, 650px);
  overflow: hidden;
  border: 1px solid rgba(173, 143, 88, 0.72);
  border-radius: 34px;
  background: #0b0e0d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.42);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 84px 0 74px;
  background:
    linear-gradient(rgba(8, 10, 10, 0.78), rgba(8, 10, 10, 0.82)),
    radial-gradient(circle at 20% 30%, rgba(255, 253, 248, 0.05), transparent 12%),
    repeating-linear-gradient(45deg, rgba(255, 253, 248, 0.035) 0 1px, transparent 1px 24px);
  opacity: 0.92;
}

.phone-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  height: 84px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  background: linear-gradient(180deg, rgba(21, 24, 23, 0.98), rgba(13, 15, 15, 0.96));
}

.avatar-blur {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #171717 0 10px, transparent 11px),
    radial-gradient(circle at 50% 70%, #171717 0 18px, transparent 19px),
    linear-gradient(135deg, #d8b860, #9f7330);
  box-shadow: 0 0 0 1px rgba(255, 253, 248, 0.14);
}

.avatar-blur.doctor {
  filter: blur(1.5px) saturate(0.9);
}

.phone-top strong {
  display: block;
  color: rgba(255, 253, 248, 0.92);
  font-size: 1.02rem;
  line-height: 1.1;
}

.phone-top span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.88rem;
}

.blurred-name {
  filter: blur(3px);
  user-select: none;
}

.phone-top i,
.phone-input i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 10px 0 var(--gold), 0 20px 0 var(--gold);
}

.chat-canvas {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  align-content: start;
  height: calc(100% - 158px);
  padding: 22px 22px 18px;
  overflow: hidden;
}

.chat-date {
  justify-self: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
}

.bubble {
  position: relative;
  max-width: 86%;
  padding: 14px 16px 22px;
  border-radius: 18px;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.34;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
}

.bubble.incoming {
  justify-self: start;
  background: linear-gradient(180deg, rgba(39, 45, 45, 0.95), rgba(26, 31, 31, 0.97));
}

.bubble.outgoing {
  justify-self: end;
  background: linear-gradient(180deg, rgba(27, 92, 54, 0.96), rgba(16, 64, 39, 0.98));
}

.bubble.small,
.bubble.short {
  max-width: 72%;
}

.bubble mark {
  display: inline;
  padding: 0;
  background: transparent;
  color: #d8b860;
  font-weight: 900;
}

.bubble time {
  position: absolute;
  right: 13px;
  bottom: 6px;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.74rem;
  font-weight: 700;
}

.phone-input {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.phone-input span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.48);
  font-size: 1.04rem;
}

.phone-input i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d8b860, #a77532);
  box-shadow: none;
}

.case-card,
.proof-formats,
.fit-card {
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.56);
  padding: clamp(24px, 3vw, 34px);
}

.proof-formats {
  max-width: none;
}

.case-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--surgical-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-formats ul,
.fit-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
}

.fit-grid {
  align-items: stretch;
}

.fit-card {
  background: var(--white);
}

.fit-card.invert {
  background: var(--ink);
  color: var(--white);
}

.fit-card.invert .eyebrow {
  color: #a8b8af;
}

.fit-card li {
  padding-left: 4px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(255, 253, 248, 0.14);
}

.process-list li {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--ink);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 50%;
  color: #ccd8d1;
  font-family: Georgia, "Times New Roman", serif;
}

.process-list p {
  color: rgba(255, 253, 248, 0.64);
}

.final-cta {
  padding: clamp(82px, 11vw, 150px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(rgba(245, 241, 233, 0.9), rgba(245, 241, 233, 0.94)),
    url("assets/site-inni-poster.jpg") center / cover;
}

.final-cta-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.final-cta .button {
  margin: 18px auto 22px;
}

.final-cta .microcopy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.site-footer .brand-symbol,
.site-footer .brand-wordmark {
  filter: invert(1);
}

.site-footer .brand {
  gap: 14px;
}

.site-footer .brand span {
  font-family: "Ramesha", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: none;
}

.site-footer p,
.footer-links {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .problem-grid,
  .film-layout,
  .insight-layout,
  .art-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

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

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

  .case-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-visual,
  .film-image {
    min-height: 360px;
  }

  .brand-wordmark {
    width: 154px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .hero-signature {
    width: 110vw;
    right: -48vw;
    bottom: -58vw;
  }

  .media-board {
    min-height: 540px;
  }

  .art-video-frame {
    width: 100%;
    min-height: 540px;
  }

  .art-video-caption {
    left: 12px;
  }

  .case-story {
    min-height: 0;
    padding: 22px;
  }

  .case-proof {
    min-height: 340px;
  }

  .pain-list article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .method-grid,
  .solutions-grid,
  .case-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .process-list li {
    min-height: 0;
  }

  .method-grid strong,
  .solution-card span,
  .process-list span {
    margin-bottom: 24px;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
