:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f3;
  --panel: rgba(255, 252, 247, 0.82);
  --panel-strong: #fffaf4;
  --text: #12100f;
  --muted: #645d56;
  --line: rgba(18, 16, 15, 0.11);
  --line-strong: rgba(18, 16, 15, 0.2);
  --warm: #d8c8b7;
  --shadow: 0 30px 80px rgba(23, 18, 14, 0.1);
  --shadow-soft: 0 18px 50px rgba(23, 18, 14, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shell: min(1220px, calc(100vw - 40px));
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 32%),
    linear-gradient(180deg, #fcfaf7 0%, var(--bg) 45%, #f0e7dc 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  width: 100%;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.03)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23noise)' opacity='.035'/%3E%3C/svg%3E");
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.top-social-bar {
  position: relative;
  z-index: 45;
  padding: 14px 0 0;
}

.top-social-inner {
  display: flex;
  justify-content: flex-end;
}

.top-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.76);
  border: 1px solid rgba(18, 16, 15, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.top-instagram-link:hover,
.top-instagram-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(18, 16, 15, 0.14);
}

.top-instagram-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 18px rgba(214, 36, 159, 0.18);
  flex: 0 0 auto;
}

.top-instagram-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
}

.top-instagram-icon .instagram-dot {
  fill: #ffffff;
  stroke: none;
}

.top-instagram-copy {
  display: grid;
  gap: 2px;
}

.top-instagram-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--muted);
}

.top-instagram-copy strong {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hidden {
  display: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(251, 248, 243, 0.84);
  backdrop-filter: blur(18px);
  border-color: rgba(18, 16, 15, 0.07);
  box-shadow: 0 12px 34px rgba(18, 16, 15, 0.05);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
h1,
h2,
h3 {
  font-family: 'Bodoni Moda', serif;
}

.brand {
  font-size: clamp(1.85rem, 1.25rem + 1vw, 2.6rem);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.nav-toggle {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(18, 16, 15, 0.82);
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: none;
  position: relative;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--text);
  transition: all 220ms ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 26px; }

.hero {
  padding: 34px 0 120px;
}

.hero-grid,
.trusted-grid,
.about-grid,
.investment-grid,
.cta-grid {
  display: grid;
  gap: 42px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.trusted-grid,
.investment-grid,
.cta-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: stretch;
}

.about-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.section,
.section-sm {
  position: relative;
}

.section {
  padding: 116px 0;
}

.section-sm {
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(4rem, 7vw, 7.25rem);
  max-width: 10.2ch;
}

h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  margin-bottom: 22px;
  max-width: 11.5ch;
}

.trusted .section-copy h2 {
  max-width: none;
}

.trusted .section-copy {
  padding-right: 20px;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
}

p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.section-copy.center {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 900px;
}

.section-copy.narrow {
  max-width: 540px;
}

.support-copy {
  margin-top: 22px;
}

.trust-hero-copy,
.trust-hero-panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border-radius: 36px;
}

.trust-hero-copy {
  padding: 36px;
}

.trust-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: end;
  margin: 4px 0 28px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(18, 16, 15, 0.08);
}

.trust-hero-stat span {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(4.4rem, 9vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  color: var(--text);
}

.trust-hero-stat strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.trust-hero-copy h2 {
  max-width: 10ch;
  margin-bottom: 18px;
}

.hero-subhead {
  max-width: 55ch;
  font-size: 1.06rem;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid var(--line-strong);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.button-dark {
  color: #fffaf5;
  background: #12100f;
  border-color: #12100f;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #26211d;
}

.button-light {
  background: rgba(255,255,255,0.46);
  backdrop-filter: blur(10px);
}

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

.hero-proof-grid article,
.logo-panel,
.stack-card,
.portfolio-card,
.campaign-card,
.value-row article,
.investment-panel,
.inquiry-form {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-proof-grid article {
  padding: 22px 22px 24px;
  border-radius: var(--radius-md);
}

.hero-proof-grid span,
.hero-note span,
.campaign-label,
.price-row strong,
.value-row span,
.card-caption p,
.logo-grid span,
label span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.form-status.is-success {
  color: #1f5c3f;
}

.form-status.is-error {
  color: #8b2e2e;
}

#submit-button[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hero-proof-grid strong,
.hero-note strong {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
  font-size: 0.98rem;
}

.hero-media {
  position: relative;
  min-height: 760px;
}

.hero-frame {
  position: absolute;
  inset: 0 50px 88px 0;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250,246,240,0.55) 0%, rgba(250,246,240,0.06) 45%, rgba(250,246,240,0.03) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.12));
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-note {
  position: absolute;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,252,247,0.84);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.note-top {
  right: 0;
  top: 52px;
}

.note-bottom {
  left: 0;
  bottom: 0;
}

.trust-hero-panel,
.logo-panel {
  border-radius: var(--radius-xl);
  padding: 30px 34px 34px;
}

.trust-hero-head,
.logo-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.trust-hero-head span,
.logo-panel-head span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

.trust-hero-head p,
.logo-panel-head p {
  max-width: 340px;
  text-align: right;
  font-size: 0.95rem;
}

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

.logo-grid span {
  min-height: 82px;
  padding: 14px 16px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(18, 16, 15, 0.9);
  background: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  font-weight: 600;
}

.about-visuals {
  position: relative;
  min-height: 760px;
}

.stack-card {
  border-radius: 34px;
  overflow: hidden;
  position: absolute;
}

.stack-card img {
  height: 100%;
  object-fit: cover;
}

.card-tall {
  inset: 0 120px 80px 0;
}

.card-small {
  width: 280px;
  right: 0;
  bottom: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.portfolio-grid,
.value-row {
  display: grid;
  gap: 18px;
}

.portfolio-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.portfolio-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 32px;
}

.portfolio-card.wide {
  min-height: 620px;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,14,12,0.02), rgba(17,14,12,0.68));
}

.portfolio-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.card-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 1;
}

.card-caption h3 {
  color: #fff9f2;
  line-height: 1.05;
  margin-top: 12px;
}

.card-caption p {
  color: rgba(255,248,239,0.72);
}

.reels-grid,
.campaign-grid {
  display: grid;
  gap: 18px;
}

.reels-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.campaign-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.reel-card,
.campaign-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 32px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reel-card:hover,
.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reel-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-soft);
}

.reel-media,
.campaign-media {
  position: relative;
  overflow: hidden;
  background: #151210;
}

.showcase-video,
.campaign-media img,
.campaign-media video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #151210;
}

.reel-copy,
.campaign-copy {
  padding: 24px;
}

.reel-copy h3,
.campaign-copy h3 {
  margin: 14px 0 14px;
  line-height: 1.08;
}

.reel-copy p {
  font-size: 0.96rem;
}

.campaign-copy {
  padding: 28px;
}

.campaign-copy h3 {
  margin: 14px 0 16px;
  line-height: 1.08;
}

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

.value-row article {
  padding: 24px 24px 26px;
  border-radius: 24px;
}

.value-row p {
  margin-top: 12px;
}

.investment-panel {
  border-radius: 34px;
  padding: 16px 30px;
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-row h3 {
  margin-bottom: 12px;
}

.price-row strong {
  text-align: right;
  font-size: 0.82rem;
}

.featured-row {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(216,200,183,0.16));
}

.investment-button {
  margin: 18px 0 14px;
}

.cta-grid {
  align-items: start;
}


.inquiry-form {
  border-radius: 34px;
  padding: 28px;
}

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

label {
  display: block;
}

label span {
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(18,16,15,0.1);
  background: rgba(255,255,255,0.7);
  padding: 16px 18px;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18,16,15,0.28);
  box-shadow: 0 0 0 4px rgba(18,16,15,0.05);
  background: rgba(255,255,255,0.96);
}

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

.inquiry-form .button {
  width: 100%;
  margin-top: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 750ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .trust-hero,
  .about-grid,
  .investment-grid,
  .cta-grid,
  .portfolio-grid,
  .value-row,
  .field-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-bottom: 94px;
  }

  .hero-media,
  .about-visuals {
    min-height: 620px;
  }

  .hero-frame {
    inset: 0 0 78px 0;
  }

  .note-top {
    right: 12px;
  }

  .card-tall {
    inset: 0 72px 80px 0;
  }

  .reels-grid,
  .campaign-grid {
    gap: 18px;
    margin-top: 34px;
  }

  .portfolio-card,
  .portfolio-card.wide {
    min-height: 520px;
  }

  .showcase-video,
  .campaign-media img,
  .campaign-media video {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 24px, 100vw - 24px);
    --header-h: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    background: rgba(251,248,243,0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(18,16,15,0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    padding: 18px 0 78px;
  }

  .top-instagram-copy strong {
    font-size: 0.96rem;
  }

  .top-instagram-label {
    font-size: 0.62rem;
  }

  .section {
    padding: 84px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    max-width: 100%;
  }

  .hero-subhead,
  p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .top-social-bar {
    padding-top: 10px;
  }

  .top-social-inner {
    justify-content: center;
  }

  .top-instagram-link {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

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

  .reels-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .about-visuals {
    min-height: 460px;
  }

  .hero-frame {
    inset: 0 0 76px 0;
    border-radius: 28px;
  }

  .hero-note {
    max-width: calc(100% - 22px);
    padding: 14px 16px;
    border-radius: 16px;
  }

  .note-top {
    top: 14px;
    right: 10px;
  }

  .note-bottom {
    left: 10px;
    bottom: 8px;
  }

  .trust-hero-copy,
  .trust-hero-panel,
  .logo-panel,
  .investment-panel,
  .inquiry-form {
    padding: 22px;
    border-radius: 26px;
  }

  .trust-hero-stat {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .trust-hero-head,
  .logo-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-hero-head p,
  .logo-panel-head p {
    max-width: none;
    text-align: left;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-grid span {
    min-height: 70px;
    font-size: 0.7rem;
  }

  .card-tall {
    inset: 0 36px 68px 0;
    border-radius: 26px;
  }

  .card-small {
    width: 170px;
    border-radius: 24px;
  }

  .portfolio-card,
  .portfolio-card.wide {
    min-height: 420px;
  }

  .reel-copy,
  .campaign-copy,
  .card-caption {
    padding: 22px;
  }

  .showcase-video,
  .campaign-media img,
  .campaign-media video {
    aspect-ratio: 9 / 14;
  }

  .campaign-media img,
  .campaign-media video {
    aspect-ratio: 4 / 5;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .price-row strong {
    text-align: left;
  }
}
