:root {
  --ink: #2c1830;
  --ink-soft: #66516b;
  --plum: #35133a;
  --plum-2: #522258;
  --violet: #8f63a0;
  --lilac: #d9c7e6;
  --lilac-soft: #eee5f3;
  --blush: #ecc9d4;
  --cream: #faf7f8;
  --paper: #ffffff;
  --line: rgba(53, 19, 58, 0.14);
  --shadow: 0 24px 70px rgba(52, 26, 56, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: white; background: var(--plum-2); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--plum);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 247, 248, 0.86);
  box-shadow: 0 8px 30px rgba(53, 19, 58, 0.08);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--plum);
  box-shadow: 0 10px 25px rgba(53, 19, 58, 0.18);
  font: italic 600 19px/1 var(--serif);
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 14px; letter-spacing: 0.01em; }
.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}
.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: white !important;
  background: var(--plum);
  box-shadow: 0 12px 25px rgba(53, 19, 58, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--plum-2); }
.menu-toggle { display: none; }

/* Type and shared UI */
.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h1 em, h2 em { font-weight: 500; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 5.5vw, 5.5rem); }
.button {
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--plum); box-shadow: 0 16px 30px rgba(53, 19, 58, 0.18); }
.button-primary:hover { background: var(--plum-2); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,0.5); }
.button-ghost:hover { border-color: var(--plum); background: white; }
.button-secondary { color: var(--plum); border-color: rgba(53,19,58,0.24); background: transparent; }
.button-secondary:hover { color: white; background: var(--plum); }

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  padding: 150px 0 95px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(53,19,58,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,19,58,0.025) 1px, transparent 1px),
    radial-gradient(circle at 80% 14%, rgba(217,199,230,0.85), transparent 37%),
    radial-gradient(circle at 10% 90%, rgba(236,201,212,0.7), transparent 36%),
    var(--cream);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}
.hero::before {
  content: "UGC";
  position: absolute;
  top: 44%;
  left: -1vw;
  color: rgba(53,19,58,0.035);
  font: 600 min(22vw, 300px)/0.7 var(--serif);
  letter-spacing: -0.08em;
  pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one {
  width: 230px;
  height: 230px;
  top: 16%;
  right: 2%;
  border: 1px solid rgba(53,19,58,0.11);
}
.hero-orb-two {
  width: 90px;
  height: 90px;
  left: 6%;
  bottom: 15%;
  background: rgba(255,255,255,0.48);
  box-shadow: inset 0 0 0 1px rgba(53,19,58,0.08);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
}
.hero-copy { padding-top: 24px; }
.hero h1 {
  max-width: 730px;
  margin: 22px 0 28px;
  font-size: clamp(4.2rem, 7.6vw, 7.7rem);
}
.hero h1 em { display: block; color: var(--plum-2); }
.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-socials {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
}
.hero-socials a { color: var(--ink); font-size: 12px; font-weight: 700; }
.hero-socials span { margin-left: 5px; color: var(--ink-soft); font-weight: 500; }
.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.hero-visual::before {
  position: absolute;
  content: "";
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(217,199,230,0.45));
  box-shadow: inset 0 0 0 1px rgba(53,19,58,0.07);
}
.phone {
  position: relative;
  z-index: 3;
  width: 320px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 48px;
  background: #171119;
  box-shadow: 0 44px 80px rgba(53,19,58,0.26), 0 0 0 8px rgba(255,255,255,0.45);
  transform: rotate(4deg);
}
.phone-main img { width: 100%; aspect-ratio: 0.86; border-radius: 38px; object-fit: cover; object-position: center top; }
.phone-bar {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: #171119;
  transform: translateX(-50%);
}
.phone-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  color: white;
  background: rgba(34,18,37,0.78);
  backdrop-filter: blur(14px);
}
.phone-caption span { display: block; margin-bottom: 3px; font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.76; }
.phone-caption strong { font-family: var(--serif); font-size: 20px; font-style: italic; }
.visual-note,
.mini-card {
  position: absolute;
  z-index: 5;
  padding: 14px 17px;
  border: 1px solid rgba(53,19,58,0.09);
  border-radius: 16px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 16px 40px rgba(53,19,58,0.12);
  backdrop-filter: blur(15px);
}
.visual-note { top: 15%; right: -1%; display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.note-dot { width: 8px; height: 8px; border-radius: 50%; background: #6caf82; box-shadow: 0 0 0 5px rgba(108,175,130,0.14); }
.mini-card span { display: block; margin-bottom: 3px; color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.mini-card strong { display: block; max-width: 155px; font: italic 600 18px/1.05 var(--serif); }
.mini-card-left { left: -7%; bottom: 24%; transform: rotate(-4deg); }
.mini-card-right { right: -7%; bottom: 10%; transform: rotate(5deg); }
.star { position: absolute; z-index: 4; color: var(--plum-2); font-size: 30px; }
.star-one { top: 10%; left: 12%; }
.star-two { right: 6%; top: 47%; font-size: 19px; }
.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-indicator i { width: 1px; height: 35px; display: block; background: var(--plum-2); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.35); transform-origin: top; opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

/* Marquee */
.brand-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--plum); }
.brand-strip-track {
  width: max-content;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 26px;
  color: white;
  animation: marquee 28s linear infinite;
}
.brand-strip span { font: italic 500 22px/1 var(--serif); white-space: nowrap; }
.brand-strip i { color: var(--blush); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* About */
.about { position: relative; }
.about-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}
.about-visual { min-height: 680px; position: relative; }
.editorial-image {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
}
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-image-main { width: 72%; height: 570px; left: 0; top: 0; padding: 12px; transform: rotate(-2deg); }
.editorial-image-main img { border-radius: 5px; object-position: center top; }
.editorial-image-accent { width: 49%; height: 360px; right: 0; bottom: 0; border: 9px solid white; transform: rotate(4deg); }
.editorial-image-accent img { object-position: center top; }
.vertical-label {
  position: absolute;
  left: -50px;
  bottom: 190px;
  color: var(--violet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.about-copy h2 { max-width: 660px; margin: 18px 0 34px; }
.about-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 16px; line-height: 1.85; }
.about-copy strong { color: var(--plum); }
.about-copy blockquote {
  margin: 34px 0;
  padding: 5px 0 5px 26px;
  border-left: 2px solid var(--blush);
  font: italic 500 clamp(1.5rem, 2.4vw, 2.05rem)/1.25 var(--serif);
}
.focus-list { display: flex; flex-wrap: wrap; gap: 9px; }
.focus-list span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--plum-2); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: white; }

/* Section headings */
.section-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: 80px;
}
.section-heading h2 { margin-top: 12px; max-width: 820px; }
.section-heading > p { margin-bottom: 7px; color: var(--ink-soft); }

/* Portfolio */
.portfolio { color: white; background: var(--plum); }
.portfolio .section-kicker { color: var(--blush); }
.portfolio .section-heading > p { color: rgba(255,255,255,0.66); }
.filters { margin-bottom: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.filter {
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: .25s ease;
}
.filter:hover,
.filter.is-active { color: var(--plum); border-color: var(--blush); background: var(--blush); }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--paper);
  transition: transform .35s ease, box-shadow .35s ease, opacity .25s ease;
}
.project-card:hover { transform: translateY(-7px); box-shadow: 0 30px 65px rgba(0,0,0,.22); }
.project-card.is-hidden { display: none; }
.project-card-featured,
.project-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.12fr .88fr; }
.project-card-wide { grid-template-columns: .88fr 1.12fr; }
.project-card-featured .project-media,
.project-card-wide .project-media { min-height: 450px; }
.project-media { height: 350px; position: relative; overflow: hidden; background: var(--lilac-soft); }
.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,16,38,0) 45%, rgba(35,16,38,.5));
  pointer-events: none;
}
.project-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .project-media img { transform: scale(1.035); }
.project-index { position: absolute; z-index: 2; top: 16px; left: 18px; color: rgba(255,255,255,.93); font: italic 600 28px/1 var(--serif); text-shadow: 0 2px 10px rgba(0,0,0,.24); }
.project-pill { position: absolute; z-index: 2; right: 15px; top: 15px; padding: 8px 12px; border-radius: 999px; color: var(--plum); background: rgba(255,255,255,.86); backdrop-filter: blur(10px); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-copy { padding: 30px 30px 32px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-copy h3 { margin: 10px 0 11px; font: italic 600 clamp(2rem, 3vw, 3rem)/1 var(--serif); }
.project-copy p { margin-bottom: 24px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.text-link { margin-top: auto; padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; color: var(--plum); background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.text-link span { margin-left: 5px; }

/* Social showcase */
.social-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(236,201,212,.72), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(217,199,230,.8), transparent 30%),
    var(--lilac-soft);
}
.social-showcase::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(53,19,58,.08) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent); }
.showcase-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .76fr 1.24fr; align-items: center; gap: 70px; }
.showcase-copy h2 { margin: 14px 0 26px; }
.showcase-copy > p:not(.section-kicker) { max-width: 460px; margin-bottom: 32px; color: var(--ink-soft); }
.phone-gallery { min-height: 620px; position: relative; }
.content-phone {
  position: absolute;
  width: 250px;
  padding: 8px;
  overflow: hidden;
  border-radius: 34px;
  background: #1b121d;
  box-shadow: 0 32px 60px rgba(53,19,58,.2);
  transition: transform .35s ease, z-index .1s;
}
.content-phone:hover { z-index: 5; transform: translateY(-12px) rotate(0deg) scale(1.02); }
.content-phone img { width: 100%; aspect-ratio: .78; border-radius: 27px; object-fit: cover; object-position: center top; }
.content-phone-notch { position: absolute; z-index: 2; top: 15px; left: 50%; width: 68px; height: 18px; border-radius: 999px; background: #1b121d; transform: translateX(-50%); }
.play-chip { position: absolute; z-index: 2; left: 19px; right: 19px; bottom: 18px; padding: 11px 13px; border-radius: 999px; color: white; background: rgba(40,21,43,.78); backdrop-filter: blur(10px); text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.phone-a { left: 0; top: 110px; transform: rotate(-9deg); }
.phone-b { left: 32%; top: 25px; z-index: 3; transform: rotate(1deg); }
.phone-c { right: 0; top: 120px; transform: rotate(9deg); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 310px; position: relative; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55); transition: background .3s ease, transform .3s ease; }
.service-card:hover { z-index: 2; background: white; transform: translateY(-4px); box-shadow: 0 25px 55px rgba(53,19,58,.1); }
.service-number { position: absolute; top: 24px; right: 27px; color: rgba(53,19,58,.25); font: italic 600 20px/1 var(--serif); }
.service-card svg { width: 38px; height: 38px; margin-bottom: 48px; fill: none; stroke: var(--plum-2); stroke-width: 1.35; }
.service-card h3 { margin-bottom: 10px; font: italic 600 29px/1.05 var(--serif); }
.service-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }

/* Process */
.process { color: white; background: #241127; }
.process .section-kicker { color: var(--blush); }
.process-heading { max-width: 870px; margin-bottom: 55px; }
.process-heading h2 { margin-top: 14px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.process-list li { padding: 30px 10px; border-bottom: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: 100px 1fr; align-items: start; transition: padding .25s ease, background .25s ease; }
.process-list li:hover { padding-left: 24px; padding-right: 24px; background: rgba(255,255,255,.035); }
.process-list > li > span { color: var(--blush); font: italic 500 24px/1 var(--serif); }
.process-list div { display: grid; grid-template-columns: .5fr 1fr; gap: 50px; align-items: start; }
.process-list h3 { margin-bottom: 0; font: italic 600 34px/1 var(--serif); }
.process-list p { max-width: 580px; margin-bottom: 0; color: rgba(255,255,255,.65); font-size: 14px; }

/* Contact */
.contact-card {
  min-height: 620px;
  position: relative;
  padding: clamp(50px, 8vw, 100px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 88% 20%, rgba(217,199,230,.27), transparent 30%),
    radial-gradient(circle at 7% 95%, rgba(236,201,212,.24), transparent 32%),
    var(--plum);
}
.contact-card::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.11); border-radius: inherit; pointer-events: none; }
.contact-card > *:not(.contact-decoration) { position: relative; z-index: 2; }
.eyebrow-light { color: var(--blush); }
.contact-card h2 { max-width: 920px; margin: 22px 0 24px; font-size: clamp(3.3rem, 7vw, 7rem); }
.contact-card > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.7); }
.contact-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.button-light { color: var(--plum); background: white; }
.button-outline-light { color: white; border-color: rgba(255,255,255,.4); background: transparent; }
.button-outline-light:hover { color: var(--plum); background: white; }
.contact-details { margin-top: 80px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: 14px 34px; color: rgba(255,255,255,.7); font-size: 12px; }
.contact-details a:hover { color: white; }
.contact-decoration { position: absolute; z-index: 1; right: -50px; bottom: -65px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: grid; place-items: center; }
.contact-decoration::before,
.contact-decoration::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.contact-decoration::before { inset: 35px; }
.contact-decoration::after { inset: 78px; }
.contact-decoration span { color: rgba(255,255,255,.12); font: italic 600 100px/1 var(--serif); }
.contact-decoration i { position: absolute; top: 48px; left: 25px; color: var(--blush); font-size: 28px; font-style: normal; }

/* Footer */
.site-footer { padding: 35px 0 45px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { width: 42px; height: 42px; font-size: 16px; }
.footer-brand p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.footer-links { display: flex; gap: 22px; color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.footer-links a:hover { color: var(--plum); }
.copyright { grid-column: 1/-1; margin: 4px 0 0; color: rgba(53,19,58,.45); font-size: 10px; }

/* Modal */
.project-modal { width: min(960px, calc(100vw - 30px)); max-height: calc(100svh - 30px); padding: 0; border: 0; border-radius: 28px; color: var(--ink); background: white; box-shadow: 0 40px 120px rgba(26,9,28,.4); }
.project-modal::backdrop { background: rgba(28,12,30,.73); backdrop-filter: blur(7px); }
.modal-shell { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 590px; }
.modal-media { min-height: 590px; overflow: hidden; background: var(--lilac-soft); }
.modal-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.modal-copy { position: relative; padding: 70px 55px 50px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.modal-close { position: absolute; z-index: 2; top: 18px; right: 20px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; font-size: 24px; line-height: 1; }
.modal-category { margin-bottom: 9px; color: var(--violet); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.modal-copy h2 { margin-bottom: 15px; font-size: clamp(2.8rem, 5vw, 4.5rem); }
.modal-role { margin-bottom: 22px; padding: 7px 11px; border-radius: 999px; color: var(--plum-2); background: var(--lilac-soft); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.modal-copy > p:not(.modal-category) { margin-bottom: 30px; color: var(--ink-soft); }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in-view { opacity: 1; transform: none; }

/* Focus */
a:focus-visible,
button:focus-visible { outline: 3px solid var(--blush); outline-offset: 4px; }

/* Responsive */
@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 35px; }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .mini-card-left { left: -14%; }
  .mini-card-right { right: -14%; }
  .about-grid { gap: 70px; }
  .about-visual { min-height: 580px; }
  .editorial-image-main { height: 490px; }
  .editorial-image-accent { height: 310px; }
  .phone-gallery { transform: scale(.88); transform-origin: center; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 90px 0; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    background: rgba(255,255,255,.72);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1.5px; display: block; background: var(--plum); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 78px 16px auto;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 25px;
    display: grid;
    gap: 18px;
    background: rgba(250,247,248,.97);
    box-shadow: 0 25px 60px rgba(53,19,58,.18);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a { font-size: 15px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-socials { justify-content: center; }
  .hero-visual { min-height: 600px; margin-top: -20px; transform: none; }
  .hero-visual::before { width: min(430px, 87vw); height: min(430px, 87vw); }
  .phone { width: min(320px, 72vw); }
  .mini-card-left { left: 5%; }
  .mini-card-right { right: 3%; }
  .visual-note { right: 5%; }
  .scroll-indicator { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { width: min(620px, 100%); margin-inline: auto; }
  .about-copy { max-width: 680px; }
  .vertical-label { left: -34px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 590px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-copy { max-width: 650px; }
  .phone-gallery { width: min(700px, 100%); margin-inline: auto; transform: scale(.94); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list li { grid-template-columns: 70px 1fr; }
  .process-list div { grid-template-columns: .55fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 27px; }
  body { font-size: 15px; }
  .site-header { padding: 11px 0; }
  .brand-copy { display: none; }
  .brand-mark { width: 43px; height: 43px; }
  .hero { min-height: auto; padding: 115px 0 72px; }
  .hero::before { top: 54%; font-size: 46vw; }
  .hero h1 { font-size: clamp(3.55rem, 18vw, 5rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-socials { gap: 8px 18px; }
  .hero-socials a { font-size: 11px; }
  .hero-visual { min-height: 500px; }
  .phone { width: min(285px, 78vw); border-radius: 42px; }
  .phone-main img { border-radius: 33px; }
  .mini-card { padding: 11px 13px; }
  .mini-card strong { max-width: 120px; font-size: 15px; }
  .mini-card-left { left: -1%; bottom: 21%; }
  .mini-card-right { right: -1%; bottom: 6%; }
  .visual-note { top: 10%; right: 0; }
  .brand-strip-track { gap: 20px; padding: 15px 0; }
  .brand-strip span { font-size: 19px; }
  .section { padding: 75px 0; }
  h2 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .about-grid { margin-top: 35px; }
  .about-visual { min-height: 480px; }
  .editorial-image-main { width: 77%; height: 410px; }
  .editorial-image-accent { width: 53%; height: 260px; }
  .vertical-label { display: none; }
  .about-copy blockquote { font-size: 1.45rem; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-featured,
  .project-card-wide { grid-column: auto; display: block; }
  .project-media,
  .project-card-featured .project-media,
  .project-card-wide .project-media { height: 330px; min-height: 0; }
  .project-copy { padding: 24px; }
  .phone-gallery { min-height: 480px; transform: none; }
  .content-phone { width: 190px; }
  .phone-a { left: -4%; top: 90px; }
  .phone-b { left: 50%; top: 10px; transform: translateX(-50%) rotate(1deg); }
  .phone-b:hover { transform: translateX(-50%) translateY(-10px) rotate(0deg); }
  .phone-c { right: -4%; top: 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; padding: 28px; }
  .service-card svg { margin-bottom: 36px; }
  .process-list li { grid-template-columns: 45px 1fr; padding: 26px 0; }
  .process-list li:hover { padding-inline: 8px; }
  .process-list div { grid-template-columns: 1fr; gap: 10px; }
  .process-list h3 { font-size: 29px; }
  .contact-card { min-height: 650px; padding: 45px 25px; }
  .contact-card h2 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .contact-actions { display: grid; }
  .contact-actions .button { width: 100%; }
  .contact-details { margin-top: 55px; display: grid; gap: 8px; }
  .contact-decoration { width: 270px; height: 270px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-row: 2; }
  .copyright { grid-row: 3; }
  .modal-shell { grid-template-columns: 1fr; }
  .modal-media { min-height: 290px; height: 38vh; }
  .modal-copy { padding: 40px 25px 32px; }
  .modal-close { position: fixed; top: 25px; right: 25px; color: var(--plum); box-shadow: 0 8px 25px rgba(53,19,58,.2); }
}

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