@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("assets/fonts/dm-sans.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-tight.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f3f1ed;
  --paper-deep: #e9e6e0;
  --ink: #162636;
  --black: #090a0b;
  --muted: #555a65;
  --rule: rgba(10, 18, 36, 0.12);
  --accent: #25ac88;
  --accent-deep: #005065;
  --white: #f8f7f4;
  --page-pad: clamp(24px, 2.2vw, 44px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 99;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.opening {
  height: 100vh;
  height: 100dvh;
  min-height: 800px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(500px, 39.8%) 1fr;
  border-bottom: 1px solid var(--rule);
}

.service-rail {
  height: 100%;
  min-height: 800px;
  padding: 28px 28px 30px 34px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.brand {
  width: max-content;
  min-height: 63px;
  display: inline-flex;
  align-items: flex-start;
}

.brand img {
  width: 210px;
  height: auto;
}

.service-stack {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr 1.01fr .93fr;
  gap: 7px;
}

.service-card {
  isolation: isolate;
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 13px;
  color: white;
  background: #111;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}

.service-card:first-child img { object-position: 59% center; }
.service-card:nth-child(2) img { object-position: 48% center; }
.service-card:nth-child(3) img { object-position: 51% center; }

.service-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4,6,8,.88) 0%, rgba(4,6,8,.48) 48%, rgba(4,6,8,.04) 84%);
}

.service-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-index {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1;
}

.service-title {
  margin-top: clamp(20px, 2.1vh, 31px);
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(27px, 2.05vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.035em;
}

.service-copy {
  margin-top: clamp(14px, 1.5vh, 22px);
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.48;
  color: rgba(255,255,255,.88);
}

.circle-arrow {
  margin-top: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.service-card:hover img,
.service-card:focus-visible img { transform: scale(1.035); filter: contrast(1.06); }
.service-card:hover .circle-arrow,
.service-card:focus-visible .circle-arrow { color: white; background: var(--accent-deep); transform: translateX(4px); }
.service-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.hero-panel {
  isolation: isolate;
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 800px;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
  height: 100px;
  display: flex;
  align-items: flex-start;
  padding: 43px 58px 0 68px;
}

.desktop-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  font-size: 15px;
}

.desktop-nav a {
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--accent-deep); }

.desktop-nav .nav-contact {
  margin-left: auto;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent);
}

.desktop-nav .nav-contact span {
  display: inline-block;
  margin-left: 16px;
  font-size: 21px;
  transition: transform .25s ease;
}

.desktop-nav .nav-contact:hover span { transform: translateX(4px); }
.mobile-brand, .menu-toggle, .mobile-menu { display: none; }

.hero-copy {
  position: absolute;
  z-index: 3;
  left: 7.4%;
  top: 33.6%;
  width: min(49%, 540px);
}

.hero-copy h1,
.section-heading h2,
.work-intro h2,
.company-statement h2,
.insights-head h2,
.contact h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero-copy h1 {
  font-size: clamp(47px, 3.12vw, 61px);
  line-height: 1.03;
  text-transform: uppercase;
}

.hero-copy h1 span,
.contact h2 span { color: var(--accent); }

.hero-copy p {
  width: min(92%, 405px);
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.text-link {
  width: max-content;
  margin-top: 38px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}

.text-link span {
  font-size: 22px;
  transition: transform .25s ease;
}

.text-link:hover span,
.text-link:focus-visible span { transform: translateX(5px); }

.hero-visual {
  position: absolute;
  inset: 9.8% 0 0 42.5%;
  z-index: 1;
  margin: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(243,241,237,.72) 8%, rgba(243,241,237,0) 28%);
  pointer-events: none;
}

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

.hero-note {
  position: absolute;
  z-index: 3;
  left: 6.2%;
  bottom: 6.3%;
}

.hero-note span,
.section-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section { padding: clamp(90px, 11vw, 170px) clamp(28px, 5vw, 80px); }
.section-kicker { color: var(--muted); }
.section-kicker.light { color: rgba(255,255,255,.6); }

.section-heading {
  margin: clamp(60px, 7vw, 100px) 0 clamp(76px, 9vw, 132px);
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 10vw;
  align-items: end;
}

.section-heading h2,
.work-intro h2,
.company-statement h2,
.insights-head h2 {
  font-size: clamp(54px, 4.8vw, 108px);
  line-height: .96;
}

.section-heading p {
  max-width: 440px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.capability-list { border-top: 1px solid var(--rule); }

.capability-row {
  min-height: 170px;
  padding: 35px 0;
  display: grid;
  grid-template-columns: 8% 30% 1fr 54px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.row-number { color: var(--muted); font-size: 14px; }
.capability-row h3 { margin: 0; font-family: "Inter Tight", sans-serif; font-size: clamp(30px, 3vw, 48px); font-weight: 400; letter-spacing: -.035em; }
.capability-row p { max-width: 600px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.capability-row > a { width: 48px; height: 48px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; font-size: 22px; transition: .25s ease; }
.capability-row > a:hover, .capability-row > a:focus-visible { color: white; background: var(--accent-deep); transform: translateX(4px); }

.work { color: white; background: var(--black); }
.work-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 5vw; align-items: start; margin-bottom: clamp(70px, 9vw, 132px); }
.work-intro h2 { grid-column: 2; }

.case-study { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(38px, 6vw, 90px); align-items: stretch; }
.case-study > img { width: 100%; height: clamp(480px, 25vw, 790px); object-fit: cover; object-position: 54% center; }
.case-copy { padding: 14px 0 10px; display: flex; flex-direction: column; align-items: flex-start; }
.case-copy > span, .insight-card > span { color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.case-copy h3 { margin: auto 0 30px; font-family: "Inter Tight", sans-serif; font-size: clamp(37px, 4.3vw, 68px); line-height: 1.01; font-weight: 400; letter-spacing: -.04em; }
.case-copy p { max-width: 500px; margin: 0; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.6; }
.light-link { margin-top: 50px; }

.company-grid { margin-top: clamp(60px, 8vw, 120px); display: grid; grid-template-columns: 1.35fr .8fr; gap: 12vw; }
.company-statement h2 { font-size: clamp(52px, 6vw, 95px); }
.company-statement p { max-width: 740px; margin: 50px 0 0; color: var(--muted); font-size: clamp(18px, 1.6vw, 25px); line-height: 1.55; }
.company-principles { margin: 0; border-top: 1px solid var(--rule); }
.company-principles div { min-height: 130px; padding: 30px 0; display: grid; grid-template-columns: 55px 1fr; border-bottom: 1px solid var(--rule); }
.company-principles dt { color: var(--muted); font-size: 13px; }
.company-principles dd { margin: 0; font-family: "Inter Tight", sans-serif; font-size: clamp(25px, 2.5vw, 39px); letter-spacing: -.03em; }

.insights { border-top: 1px solid var(--rule); background: var(--paper-deep); }
.insights-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.insights-head h2 { font-size: clamp(54px, 6vw, 96px); }
.insight-grid { margin-top: clamp(74px, 9vw, 135px); display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); }
.insight-card { min-height: 450px; padding: clamp(30px, 4vw, 62px); background: var(--paper-deep); display: flex; flex-direction: column; }
.insight-card > span { color: var(--muted); }
.insight-card h3 { max-width: 650px; margin: auto 0 55px; font-family: "Inter Tight", sans-serif; font-size: clamp(34px, 4vw, 62px); line-height: 1.03; font-weight: 400; letter-spacing: -.04em; }
.insight-card a { width: max-content; padding-bottom: 9px; border-bottom: 1px solid var(--accent); }
.insight-card a span { margin-left: 18px; }

.contact { min-height: 90svh; color: white; background: var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.contact h2 { margin-top: clamp(65px, 8vw, 120px); font-size: clamp(72px, 6vw, 160px); line-height: .88; text-transform: uppercase; }
.contact-form { margin-top: clamp(90px, 11vw, 170px); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px clamp(40px, 7vw, 110px); }
.form-field { position: relative; display: flex; flex-direction: column; gap: 17px; }
.form-field > span { color: rgba(255,255,255,.58); font-size: 12px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0 34px 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.32);
  border-radius: 0;
  outline: none;
  color: white;
  background: transparent;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(21px, 2vw, 31px);
  transition: border-color .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--accent); }
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2325ac88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 18px;
}
.form-field select option { color: var(--ink); background: var(--paper); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-message { grid-column: 1 / -1; }
.form-submit-row { margin-top: 50px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.form-status { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }
.form-status.is-error { color: #ffb6aa; }
.form-submit { padding: 0 0 11px; border: 0; border-bottom: 1px solid var(--accent); color: white; background: transparent; font-size: 17px; cursor: pointer; }
.form-submit span { display: inline-block; margin-left: 25px; font-size: 22px; transition: transform .2s ease; }
.form-submit:hover span,
.form-submit:focus-visible span { transform: translateX(5px); }
.contact-bottom { margin-top: 100px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.22); display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.contact-email { padding-bottom: 10px; border-bottom: 1px solid var(--accent); font-family: "Inter Tight", sans-serif; font-size: clamp(24px, 3vw, 46px); }
.contact-email span { margin-left: 18px; }
.footer-meta { display: flex; align-items: flex-end; gap: 70px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.5; }
.footer-meta p { margin: 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Work and product showcase */
.showcase-page { background: var(--paper); }
.showcase-header {
  height: 104px;
  padding: 25px clamp(28px, 4vw, 64px);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.showcase-brand { position: relative; z-index: 12; flex: 0 0 auto; }
.showcase-brand img { width: 190px; height: auto; }
.showcase-nav { width: auto; margin-left: auto; gap: clamp(34px, 4.5vw, 72px); }
.showcase-nav .is-current { padding-bottom: 10px; border-bottom: 1px solid var(--accent); }
.showcase-hero { min-height: 76svh; padding: clamp(90px, 11vw, 165px) clamp(28px, 5vw, 80px) clamp(80px, 9vw, 140px); display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid var(--rule); }
.showcase-hero-grid { margin-top: clamp(75px, 10vw, 155px); display: grid; grid-template-columns: 1.7fr .8fr; gap: 10vw; align-items: end; }
.showcase-hero h1 { margin: 0; font-family: "Inter Tight", sans-serif; font-size: clamp(72px, 5.6vw, 122px); line-height: .88; font-weight: 400; letter-spacing: -.055em; text-transform: uppercase; }
.showcase-hero p { max-width: 470px; margin: 0 0 10px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.showcase-gallery { padding: clamp(90px, 10vw, 155px) clamp(28px, 5vw, 80px); }
.showcase-controls { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; }
.showcase-controls h2 { margin: 0; font-family: "Inter Tight", sans-serif; font-size: clamp(42px, 5vw, 78px); line-height: 1; font-weight: 400; letter-spacing: -.045em; }
.showcase-controls > p { max-width: 330px; margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.showcase-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 28px; }
.showcase-filters button { padding: 0 0 8px; border: 0; border-bottom: 1px solid transparent; color: var(--muted); background: transparent; cursor: pointer; font-size: 14px; }
.showcase-filters button:hover,
.showcase-filters button:focus-visible,
.showcase-filters button.is-active { color: var(--ink); border-bottom-color: var(--accent); }
.showcase-list { margin-top: clamp(75px, 9vw, 135px); border-top: 1px solid var(--rule); }
.showcase-project { padding: clamp(60px, 7vw, 105px) 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(45px, 8vw, 125px); align-items: stretch; }
.showcase-project[hidden] { display: none; }
.showcase-project:nth-child(even) figure { order: 2; }
.showcase-project:nth-child(even) .showcase-project-copy { order: 1; }
.showcase-project figure { height: clamp(460px, 35vw, 720px); margin: 0; overflow: hidden; background: var(--black); }
.showcase-project figure > img:not(.product-logo) { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.showcase-project:hover figure > img:not(.product-logo) { transform: scale(1.025); }
.showcase-project-copy { padding: 8px 0; display: flex; flex-direction: column; align-items: flex-start; }
.showcase-project-copy > span { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.showcase-project-copy h3 { margin: auto 0 30px; font-family: "Inter Tight", sans-serif; font-size: clamp(42px, 4vw, 78px); line-height: .98; font-weight: 400; letter-spacing: -.015em; }
.showcase-project-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.showcase-project-copy a { margin-top: 48px; padding-bottom: 9px; border-bottom: 1px solid var(--accent); }
.showcase-project-copy a span { margin-left: 22px; font-size: 20px; }
.product-visual { isolation: isolate; position: relative; }
.showcase-project .product-visual .product-logo { position: absolute; z-index: 3; width: auto; height: auto; object-fit: contain; }
.showcase-project .product-editorial { object-fit: cover; object-position: center; }
.showcase-project .product-visual--supromail { background: #fff; box-shadow: inset 0 0 0 1px rgba(47,128,102,.12); }
.product-logo--supromail { top: 38px; left: 42px; max-width: 186px; mix-blend-mode: multiply; }
.showcase-project .product-visual--anonime { background: #e8f7f0; }
.product-logo--anonime { top: 38px; left: 42px; max-width: 184px; }
.showcase-project .product-visual--instafind { background: #f9fbfc; }
.product-logo--instafind { top: 38px; left: 42px; max-width: 202px; padding: 9px 12px; background: rgba(248,247,244,.9); }
.product-link--supromail { border-bottom-color: #5aa38a !important; }
.product-link--anonime { border-bottom-color: #079868 !important; }
.product-link--instafind { border-bottom-color: #56c5ff !important; }
.client-work-gallery { border-top: 1px solid var(--rule); background: var(--paper-deep); }
.showcase-heading-group .section-kicker { margin-bottom: clamp(42px, 5vw, 72px); }
.showcase-heading-group h2 { max-width: 780px; }
.client-work-list { margin-top: clamp(75px, 9vw, 135px); }
.showcase-project .product-visual--playcred { color: white; background: #020604; }
.playcred-lockup { position: absolute; top: 38px; left: 42px; z-index: 3; display: flex; align-items: center; gap: 14px; }
.playcred-lockup img { width: 46px; height: 55px; object-fit: contain; }
.playcred-lockup span { font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.playcred-message { position: absolute; left: 42px; top: 36%; z-index: 3; }
.playcred-message > span { color: #22c55e; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.playcred-message p { margin: 20px 0 0; color: white; font-family: "Inter Tight", sans-serif; font-size: clamp(42px, 4.35vw, 66px); line-height: .98; letter-spacing: -.045em; }
.playcred-message strong { color: #22c55e; font-weight: 400; }
.playcred-court { position: absolute; right: -12%; bottom: -14%; z-index: 1; width: 74%; aspect-ratio: 1 / 1; border: 1px solid rgba(34,197,94,.25); border-radius: 50%; }
.playcred-court::before,
.playcred-court::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(34,197,94,.15); border-radius: 50%; }
.playcred-court::before { width: 66%; height: 66%; }
.playcred-court::after { width: 20%; height: 20%; }
.showcase-project .product-visual--metroreach { background: #f8faf9; box-shadow: inset 0 0 0 1px rgba(22,101,52,.12); }
.product-logo--metroreach { top: 38px; left: 42px; max-width: 214px; }
.product-link--playcred { border-bottom-color: #22c55e !important; }
.product-link--metroreach { border-bottom-color: #166534 !important; }
.showcase-cta { min-height: 88svh; padding: clamp(90px, 10vw, 155px) clamp(28px, 5vw, 80px) 45px; color: white; background: var(--ink); display: flex; flex-direction: column; }
.showcase-cta-grid { margin-top: clamp(65px, 8vw, 120px); display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.showcase-cta h2 { margin: 0; font-family: "Inter Tight", sans-serif; font-size: clamp(72px, 7.5vw, 150px); line-height: .88; font-weight: 400; letter-spacing: -.055em; text-transform: uppercase; }
.showcase-cta h2 span { color: var(--accent); }
.showcase-copyright { margin: auto 0 0; padding-top: 90px; color: rgba(255,255,255,.45); font-size: 13px; }

@media (max-width: 1240px) {
  .opening { grid-template-columns: minmax(430px, 39%) 1fr; }
  .service-rail { padding-left: 26px; padding-right: 22px; }
  .desktop-nav { gap: 32px; }
  .site-header { padding-left: 48px; padding-right: 42px; }
  .hero-copy { left: 6.7%; width: 52%; }
  .hero-copy h1 { font-size: clamp(42px, 3.3vw, 52px); }
  .hero-visual { left: 39%; }
}

@media (min-width: 961px) and (max-height: 800px) {
  .service-rail { padding: 20px 22px 20px 26px; }
  .brand { min-height: 54px; }
  .brand img { width: 180px; }
  .service-content { padding: 18px 22px; }
  .service-index { font-size: 14px; }
  .service-title { margin-top: 12px; font-size: 25px; }
  .service-copy { margin-top: 8px; font-size: 12px; line-height: 1.35; }
  .circle-arrow { width: 35px; height: 35px; font-size: 18px; }
  .hero-copy { top: 31%; }
  .hero-copy p { margin-top: 18px; }
  .hero-copy .text-link { margin-top: 25px; }
}

@media (max-width: 960px) {
  .opening { height: auto; min-height: 100svh; overflow: visible; display: flex; flex-direction: column; }
  .hero-panel { order: 1; height: auto; min-height: auto; overflow: visible; }
  .service-rail { order: 2; height: auto; min-height: auto; padding: 18px 20px 64px; border-right: 0; }
  .service-rail > .brand { display: none; }
  .service-stack { display: grid; grid-template-rows: repeat(3, minmax(360px, 56vw)); gap: 10px; }

  .site-header { height: 92px; padding: 22px 22px 0; align-items: flex-start; }
  .desktop-nav { display: none; }
  .mobile-brand { display: flex; align-items: center; position: relative; z-index: 12; }
  .mobile-brand img { width: 146px; height: auto; }
  .menu-toggle { margin-left: auto; width: 44px; height: 44px; padding: 0; border: 0; display: grid; place-content: center; gap: 7px; position: relative; z-index: 12; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 25px; height: 1px; display: block; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 11; padding: 120px 24px 40px; background: var(--paper); display: flex; flex-direction: column; gap: 0; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 20px 0; border-bottom: 1px solid var(--rule); font-family: "Inter Tight", sans-serif; font-size: 36px; letter-spacing: -.03em; }
  .mobile-menu a:last-child { margin-top: auto; border-bottom-color: var(--accent); font-size: 24px; }
  .mobile-menu a span { float: right; }

  .hero-copy { position: relative; left: auto; top: auto; width: auto; padding: 82px 24px 54px; }
  .hero-copy h1 { font-size: clamp(44px, 12.3vw, 72px); line-height: .98; }
  .hero-copy p { width: 90%; max-width: 500px; margin-top: 28px; font-size: 16px; }
  .text-link { margin-top: 34px; }
  .hero-visual { position: relative; inset: auto; height: min(720px, 123vw); margin: 0 0 0 12%; overflow: hidden; }
  .hero-visual::after { background: linear-gradient(90deg, var(--paper), rgba(243,241,237,0) 17%); }
  .hero-visual img { object-position: 57% center; }
  .hero-note { position: relative; left: auto; bottom: auto; padding: 43px 24px 64px; }

  .section-heading { grid-template-columns: 1fr; gap: 45px; }
  .capability-row { grid-template-columns: 46px 1fr 50px; }
  .capability-row p { grid-column: 2 / 4; }
  .case-study { grid-template-columns: 1fr; }
  .case-study > img { height: 70vw; }
  .case-copy h3 { margin-top: 100px; }
  .company-grid { grid-template-columns: 1fr; }
  .insights-head { flex-direction: column; }
  .contact-bottom { align-items: flex-start; flex-direction: column; }
  .showcase-header { height: 92px; padding: 20px 22px; }
  .showcase-brand img { width: 146px; }
  .showcase-header .menu-toggle { display: grid; }
  .showcase-header .mobile-menu { display: flex; }
  .showcase-hero { min-height: 68svh; }
  .showcase-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .showcase-controls { align-items: flex-start; flex-direction: column; }
  .showcase-filters { justify-content: flex-start; }
  .showcase-project { grid-template-columns: 1fr; }
  .showcase-project:nth-child(even) figure,
  .showcase-project:nth-child(even) .showcase-project-copy { order: initial; }
  .showcase-project figure { height: 70vw; }
  .showcase-project-copy h3 { margin-top: 85px; }
  .product-logo--supromail,
  .product-logo--anonime { top: 28px; left: 28px; max-width: 150px; }
  .product-logo--instafind { top: 30px; left: 30px; max-width: 160px; }
  .product-logo--metroreach { top: 28px; left: 28px; max-width: 180px; }
  .playcred-lockup { top: 28px; left: 28px; }
  .playcred-message { left: 28px; }
  .showcase-cta-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .service-stack { grid-template-rows: repeat(3, 360px); }
  .service-content { padding: 24px; }
  .service-title { font-size: 32px; }
  .service-copy { font-size: 15px; }
  .section { padding: 86px 22px; }
  .section-heading { margin: 56px 0 75px; }
  .section-heading h2,
  .work-intro h2,
  .company-statement h2,
  .insights-head h2 { font-size: 49px; }
  .section-heading p { font-size: 16px; }
  .capability-row { min-height: 0; padding: 34px 0; grid-template-columns: 37px 1fr 45px; gap: 12px; }
  .capability-row h3 { font-size: 31px; }
  .capability-row p { font-size: 15px; }
  .capability-row > a { width: 42px; height: 42px; }
  .work-intro { display: block; }
  .work-intro h2 { margin-top: 55px; }
  .case-study > img { height: 108vw; }
  .case-copy h3 { margin-top: 72px; font-size: 43px; }
  .company-statement p { margin-top: 35px; font-size: 18px; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 390px; }
  .insight-card h3 { font-size: 39px; }
  .contact { min-height: 85svh; }
  .contact h2 { font-size: 16vw; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 42px; }
  .form-message { grid-column: auto; }
  .form-submit-row { align-items: flex-start; flex-direction: column-reverse; }
  .footer-meta { width: 100%; justify-content: space-between; gap: 30px; }
  .showcase-hero h1 { font-size: 17vw; }
  .showcase-hero p { font-size: 16px; }
  .showcase-filters { gap: 15px 22px; }
  .showcase-project figure { height: 98vw; }
  .showcase-project-copy h3 { margin-top: 65px; font-size: 45px; }
  .showcase-controls > p { max-width: 280px; }
  .showcase-heading-group .section-kicker { margin-bottom: 36px; }
  .playcred-lockup img { width: 37px; height: 44px; }
  .playcred-lockup span { font-size: 18px; }
  .playcred-message { top: 34%; }
  .playcred-message p { margin-top: 14px; font-size: 11vw; }
  .product-logo--metroreach { max-width: 150px; }
  .showcase-cta { min-height: 78svh; }
  .showcase-cta h2 { font-size: 16vw; }
}

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