@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f4efeb;
  --bg-soft: #e8ddd0;
  --bg-card: #ffffff;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.72);
  --dim: #6c292e;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.22);
  --sky: #7fc4e5;
  --sky-mid: #bfe6f4;
  --sky-deep: #31a8d0;
  --wine: #dd1f27;
  --wine-soft: #e64355;
  --sun: #ffca1c;
  --header: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
html, body {
  background: var(--bg);
  color: var(--text);
}
body {
  font-family: Outfit, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
body { overflow-y: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul { list-style: none; }

.container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.container-wide { width: min(1440px, calc(100% - 40px)); margin: 0 auto; }

/* Header — always cream, never black */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  height: var(--header);
  display: flex; align-items: center;
  background: rgba(244, 239, 235, .96);
  color: var(--dim);
  box-shadow: 0 1px 0 var(--line);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(244, 239, 235, .96);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: 100%;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; color: var(--dim); width: 118px; }
.brand svg { width: 118px; height: auto; }
.nav { display: flex; justify-content: center; gap: 4px; }
.nav > li { position: relative; }
.nav a {
  display: block;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--dim);
  transition: color .2s;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav .caret { font-size: 9px; margin-left: 4px; opacity: .7; }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: .22s var(--ease);
}
.has-drop:hover > .dropdown,
.has-drop:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 18px; font-size: 13px; color: var(--text);
}
.dropdown a:hover { background: rgba(49,168,208,.12); color: var(--text); }
.dropdown .nested {
  position: absolute; left: 100%; top: -10px;
  min-width: 200px; background: #fff;
  border: 1px solid var(--line); padding: 10px 0;
  opacity: 0; visibility: hidden;
}
.dropdown li { position: relative; }
.dropdown li:hover > .nested { opacity: 1; visibility: visible; }

.socials { display: flex; gap: 14px; align-items: center; }
.socials a {
  width: 18px; height: 18px; color: var(--dim); opacity: .85;
  display: grid; place-items: center;
}
.socials a:hover { opacity: 1; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.menu-btn {
  display: none; width: 40px; height: 40px; color: var(--dim);
  position: relative; z-index: 90;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  display: block; height: 1.5px; width: 22px; background: var(--dim); position: relative;
}
.menu-btn span:before, .menu-btn span:after {
  content: ""; position: absolute; left: 0;
}
.menu-btn span:before { top: -7px; }
.menu-btn span:after { top: 7px; }

/* Hero (inner-page leftover block from 5452f40 — homepage uses kite-intro) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 72px;
  overflow: hidden;
  background: var(--sky);
}
.hero-media {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #ffffff 0%, #bfe6f4 40%, #31a8d0 100%);
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(244,239,235,.2) 60%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; width: min(1100px, calc(100% - 64px)); margin: 0 auto; }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 88px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .95;
  max-width: 14ch;
  color: var(--text);
}
.hero h1 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  color: #c0392b;
}
.hero p {
  max-width: 62ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat h6 {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.stat p { color: var(--muted); font-size: 14.5px; font-weight: 300; max-width: 28ch; }

.section { padding: 88px 0; background: var(--bg); color: var(--text); }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 20px; margin-bottom: 28px;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--text);
}
.ghost-link {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
}

.work-wrap { overflow: hidden; }
.work-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 32s linear infinite;
}
.work-wrap:hover .work-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.work-card {
  position: relative;
  width: 320px; height: 400px;
  overflow: hidden; flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .8s;
}
.work-card:hover img { transform: scale(1.08); }
.work-card figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  opacity: 1; transform: none;
  color: var(--text);
}
.work-card strong { display: block; font-size: 18px; font-weight: 500; }
.work-card span { color: var(--sky-deep); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-tabs { display: flex; flex-direction: column; gap: 6px; }
.about-tabs button {
  text-align: left;
  padding: 10px 0;
  color: var(--dim);
  font-size: 15px;
  border-bottom: 1px solid transparent;
}
.about-tabs button.is-on {
  color: var(--text);
  border-bottom-color: var(--wine);
}
.about-copy h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.about-copy p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.value { margin-top: 28px; }
.value h5 { font-size: 15px; margin-bottom: 6px; font-weight: 500; }
.value p { margin: 0; }
.about-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 50% 30%, #ffffff 0%, #bfe6f4 45%, #31a8d0 100%);
}
.about-visual img.about-mark {
  position: relative;
  width: 120px;
  height: auto;
  object-fit: contain;
  inset: auto;
}

.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.case-card {
  position: relative; min-height: 380px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
}
.case-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s var(--ease); }
.case-card:hover img { transform: scale(1.06); }
.case-card .meta {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(244,239,235,.96));
  color: var(--text);
}
.case-card .tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sky-deep); }
.case-card h3 { font-size: 26px; font-weight: 500; color: var(--text); }

.clients { padding: 40px 0 80px; overflow: hidden; background: #fff; }
.clients h2 { width: min(1280px, calc(100% - 48px)); margin: 0 auto 28px; color: var(--text); }
.logo-track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; align-items: center; }
.client-logo {
  color: rgba(17,17,17,.55);
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.client-logo em { font-family: "Cormorant Garamond", serif; font-style: italic; text-transform: none; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 28px;
  background: #fff;
  color: var(--text);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.giant {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(72px, 10vw, 140px);
  line-height: .75;
  letter-spacing: -.04em;
  color: var(--dim);
}
.footer-services { color: var(--muted); display: flex; flex-direction: column; gap: 10px; margin-top: 18px; font-size: 13px; letter-spacing: .14em; }
.footer-mark { font-size: 12px; letter-spacing: .28em; margin-top: 28px; color: var(--dim); }
.footer-tag { color: var(--muted); font-size: 14px; max-width: 28ch; }
.footer-web { margin-top: 18px; font-size: 14px; }
.footer-phone { color: var(--muted); font-size: 13px; margin-top: 10px; }
.footer-social { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.contact-box h2 { font-size: 28px; margin-bottom: 18px; font-weight: 500; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-size: 14px;
  outline: none;
  color: var(--text);
}
.form input:focus, .form select:focus, .form textarea:focus { border-bottom-color: var(--sky-deep); }
.form select { appearance: none; }
.services-dd { position: relative; }
.services-panel {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border: 1px solid var(--line); padding: 12px 14px; z-index: 5;
}
.services-dd.open .services-panel { display: block; }
.services-panel label { display: flex; gap: 8px; align-items: center; padding: 5px 0; font-size: 13px; color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 140px; height: 46px; padding: 0 22px;
  border: 1px solid var(--sun); background: var(--sun); color: #111;
  letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
  transition: .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn.ghost:hover { background: var(--dim); color: #fff; }
.form-note { grid-column: 1 / -1; font-size: 13px; color: #2d7a2d; display: none; }
.legal { margin-top: 48px; color: var(--dim); font-size: 12px; display: flex; justify-content: space-between; gap: 12px; }

.page-hero {
  min-height: 42vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--header) + 48px) 0 40px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #7fc4e5 0%, #c9eaf6 48%, #f4efeb 100%);
  color: var(--text);
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--text);
}
.page-hero p { color: var(--muted); max-width: 58ch; margin-top: 14px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 28px 0; }
.filters button {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim); padding-bottom: 4px; border-bottom: 1px solid transparent;
}
.filters button.is-on { color: var(--text); border-bottom-color: var(--wine); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-tile {
  position: relative; min-height: 280px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
}
.project-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: .6s var(--ease); }
.project-tile:hover img { transform: scale(1.07); }
.project-tile .info {
  position: absolute; inset: auto 18px 18px; opacity: 0; transform: translateY(8px); transition: .3s;
  color: var(--text);
}
.project-tile:hover .info { opacity: 1; transform: none; }
.project-tile .cat { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sky-deep); }
.project-tile h3 { font-size: 20px; font-weight: 500; }
.project-tile p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.load-more { display: flex; justify-content: center; margin: 36px 0 10px; }

.service-stage {
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 70vh;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
}
.service-visual {
  position: relative; min-height: 420px;
  background: radial-gradient(ellipse at 50% 30%, #ffffff 0%, #bfe6f4 50%, #7fc4e5 100%);
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.service-copy {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: #fff;
  color: var(--text);
}
.service-copy .num { color: var(--dim); letter-spacing: .2em; font-size: 12px; margin-bottom: 16px; }
.service-copy h1 { font-size: clamp(36px, 4.4vw, 60px); font-weight: 500; letter-spacing: -.035em; color: var(--text); }
.service-copy h2 { font-size: 20px; font-weight: 500; margin: 22px 0 10px; color: var(--text); }
.service-copy p { color: var(--muted); max-width: 52ch; }
.service-nav { display: flex; gap: 10px; margin-top: 28px; }
.nav-circle {
  width: 44px; height: 44px; border: 1px solid var(--line-strong);
  display: grid; place-items: center; border-radius: 50%;
  color: var(--text);
  background: #fff;
}
.nav-circle:hover { border-color: var(--sky-deep); }

.bang-item {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.bang-media {
  position: relative; min-height: 50vh;
  background: radial-gradient(ellipse at 50% 30%, #ffffff 0%, #bfe6f4 50%, #7fc4e5 100%);
}
.bang-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.bang-copy { padding: 120px 56px 64px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.bang-copy .kicker { letter-spacing: .2em; text-transform: uppercase; font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.bang-copy h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 500; letter-spacing: -.035em; margin-bottom: 18px; color: var(--text); }
.bang-copy p { color: var(--muted); max-width: 54ch; margin-bottom: 28px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { display: flex; flex-direction: column; gap: 12px; }
.blog-card .thumb { height: 220px; overflow: hidden; background: var(--bg-soft); }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.blog-card:hover img { transform: scale(1.06); }
.blog-card .meta { color: var(--dim); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h3 { font-size: 20px; font-weight: 500; letter-spacing: -.02em; }
.blog-card p { color: var(--muted); font-size: 14px; }
.read { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

.article { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 40px 0 80px; }
.article h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -.035em; font-weight: 500; line-height: 1.05; }
.article .meta { color: var(--dim); margin: 16px 0 28px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.article .lead { font-size: 20px; color: var(--text); margin-bottom: 22px; }
.article p { color: var(--muted); margin-bottom: 16px; font-size: 16.5px; }
.article h2 { font-size: 26px; margin: 32px 0 12px; font-weight: 500; }

.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 28px 0 64px; }
.office { border-top: 1px solid var(--line); padding-top: 18px; }
.office h4 { font-size: 20px; margin-bottom: 10px; font-weight: 500; }
.office p { color: var(--muted); font-size: 14.5px; }
.contact-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.contact-hero-grid img { width: 100%; height: 460px; object-fit: cover; }
.map-block {
  height: 220px;
  background: linear-gradient(180deg, #7fc4e5, #31a8d0);
  display: grid; place-items: center;
  letter-spacing: .2em; text-transform: uppercase; font-size: 12px;
  color: #111;
}

.project-hero {
  min-height: 52vh; position: relative; display: flex; align-items: flex-end; padding: 0 0 48px;
  background: linear-gradient(180deg, #7fc4e5 0%, #c9eaf6 50%, #f4efeb 100%);
}
.project-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero .shade { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(244,239,235,.92)); }
.project-hero .inner { position: relative; z-index: 2; width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.project-hero .cat { letter-spacing: .18em; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; color: var(--dim); }
.project-hero h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 500; letter-spacing: -.035em; color: var(--text); }
.project-body { width: min(820px, calc(100% - 48px)); margin: 48px auto 80px; }
.project-body h3 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.project-body p { color: var(--muted); font-size: 16.5px; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: min(1100px, calc(100% - 40px)); margin: 0 auto 80px; }
.gallery img { width: 100%; height: 280px; object-fit: cover; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg); color: var(--text); z-index: 70;
  padding: 110px 28px 40px;
  display: none; flex-direction: column; gap: 8px;
  overflow: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 28px; font-weight: 400; padding: 6px 0; color: var(--text); }
.mobile-nav .sub { padding-left: 12px; }
.mobile-nav .sub a { font-size: 16px; color: var(--muted); }

.empty-visual {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.7), transparent 55%),
    linear-gradient(145deg, rgba(127,196,229,.35), rgba(255,202,28,.12) 50%, transparent 70%),
    repeating-linear-gradient(-28deg, transparent, transparent 16px, rgba(17,17,17,.04) 16px, rgba(17,17,17,.04) 17px);
}
.work-card.has-empty figcaption,
.project-tile.has-empty .info,
.case-card.has-empty .meta { opacity: 1; transform: none; }
.work-group { margin-bottom: 48px; }
.work-group h3 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; color: var(--sky-deep); }
.cta-band { padding: 100px 0; text-align: center; background: var(--bg-soft); color: var(--text); }
.cta-band h2 { font-size: clamp(32px, 5vw, 64px); letter-spacing: -.035em; margin-bottom: 12px; color: var(--text); }
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 120;
  background: linear-gradient(90deg, #7fc4e5, #ffca1c, #dd1f27);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}
.reveal-media { overflow: hidden; }
.kite-draw {
  display: block;
  width: min(220px, 70%);
  height: 48px;
  margin: 10px 0 6px;
}
.kite-draw-path { fill: none; }
.client-logo img { height: 28px; width: auto; }
.selected-line { margin-top: 18px; font-size: 14px; color: var(--dim); }

/* Services — helper-style pinned horizontal scroll */
.services-horizon {
  position: relative;
  margin: 0;
  padding: 0;
  background: var(--bg);
  z-index: 2;
}
.services-horizon-pin {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.services-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.service-slide {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border-bottom: 0;
  overflow: hidden;
  position: relative;
}
.services-horizon .service-copy {
  padding: 130px 56px 64px;
  position: relative;
  z-index: 2;
  background: transparent;
}
.service-slide .service-copy h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: .92;
}
.service-slide .service-copy h2 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
}
.service-slide .service-copy h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #c0392b;
}
.services-toolbar {
  position: absolute;
  top: calc(var(--header) + 10px);
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  pointer-events: none;
}
.services-toolbar h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--text);
}
.services-dots {
  display: flex;
  gap: 14px;
  pointer-events: auto;
}
.services-dots button {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--dim);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.services-dots button.is-on {
  color: var(--text);
  border-bottom-color: var(--wine);
}
.services-horizon-pin.is-native-x {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.services-horizon-pin.is-native-x .service-slide {
  scroll-snap-align: start;
}

.svc-art {
  position: relative;
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 110px 36px 40px;
  overflow: hidden;
}
.svc-frame {
  position: relative;
  width: min(78%, 520px);
  aspect-ratio: 4 / 3;
  background: #fff;
  padding: 12px 12px 36px;
  box-shadow: 8px 16px 40px rgba(49, 168, 208, .18);
  z-index: 2;
}
.svc-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  inset: auto;
}
.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(5deg); }
.svc-giant {
  position: absolute;
  left: 6%;
  top: 18%;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(120px, 18vw, 240px);
  line-height: .7;
  color: rgba(221, 31, 39, .1);
  pointer-events: none;
  z-index: 1;
}
.svc-swatches {
  position: absolute;
  right: 10%;
  bottom: 12%;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(17,17,17,.12);
}
.swatch.sky { background: #7fc4e5; }
.swatch.sun { background: #ffca1c; }
.swatch.wine { background: #dd1f27; }
.swatch.cream { background: #e8ddd0; }
.svc-mark {
  position: absolute;
  left: 12%;
  bottom: 14%;
  width: 54px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 6px 12px rgba(17,17,17,.12));
}
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.svc-chips span {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.7);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--dim);
}

.service-slide.is-branding {
  background: linear-gradient(120deg, #e8ddd0 0%, #f4efeb 55%, #fff 100%);
}
.service-slide.is-media {
  background: radial-gradient(ellipse at 20% 20%, #fff 0%, #bfe6f4 42%, #7fc4e5 100%);
}
.service-slide.is-web {
  background: linear-gradient(180deg, #f4efeb 0%, #fff 40%, #c9eaf6 100%);
}
.service-slide.is-digital {
  background: radial-gradient(circle at 80% 20%, #ffca1c 0%, transparent 28%),
    linear-gradient(160deg, #7fc4e5 0%, #bfe6f4 40%, #f4efeb 100%);
}
.service-slide.is-marketing {
  background: linear-gradient(200deg, #fff 0%, #e8ddd0 48%, #ffca1c 160%);
}

.film-frame {
  padding: 0;
  background: #111;
  box-shadow: 0 20px 50px rgba(49,168,208,.25);
}
.film-frame::before,
.film-frame::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 18px;
  background: repeating-linear-gradient(#111 0 10px, #f4efeb 10px 16px);
  z-index: 3;
}
.film-frame::before { left: 0; }
.film-frame::after { right: 0; }
.film-frame img { padding: 0 18px; }
.svc-sun {
  position: absolute;
  right: 8%;
  top: 16%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd84d 0%, #ffca1c 45%, transparent 70%);
  animation: sunPulse 2.4s ease-out infinite;
  z-index: 1;
}
.svc-cloud {
  position: absolute;
  left: 6%;
  bottom: 10%;
  width: 180px;
  opacity: .85;
  z-index: 3;
}

.browser-frame {
  padding: 0;
  overflow: hidden;
}
.browser-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.browser-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8ddd0;
}
.browser-bar i:first-child { background: #e64355; }
.browser-bar i:nth-child(2) { background: #ffca1c; }
.browser-bar i:nth-child(3) { background: #7fc4e5; }
.svc-mini-grid {
  position: absolute;
  right: 8%;
  bottom: 12%;
  display: grid;
  gap: 8px;
  z-index: 3;
}
.mini-card {
  width: 72px;
  height: 46px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 4px 8px 18px rgba(17,17,17,.08);
  transform: rotate(6deg);
}
.mini-card.sun { background: #ffca1c; transform: rotate(-4deg); }
.mini-card.wine { background: #dd1f27; transform: rotate(2deg); }

.svc-phones {
  position: absolute;
  left: 10%;
  bottom: 12%;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.svc-phones span {
  width: 42px;
  height: 74px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #31a8d0;
  box-shadow: 4px 8px 16px rgba(49,168,208,.2);
  transform: rotate(-8deg);
}
.svc-phones span:nth-child(2) { transform: rotate(2deg); background: #ffca1c; border-color: #fff; }
.svc-phones span:nth-child(3) { transform: rotate(10deg); background: #dd1f27; border-color: #fff; }

.paper-stack {
  box-shadow:
    14px 14px 0 #fff,
    28px 28px 0 rgba(127,196,229,.45);
}
.svc-sheets {
  position: absolute;
  right: 8%;
  top: 22%;
  z-index: 1;
}
.svc-sheets span {
  display: block;
  width: 110px;
  height: 140px;
  background: #fff;
  border: 1px solid var(--line);
  transform: rotate(12deg);
  box-shadow: 6px 8px 20px rgba(17,17,17,.08);
}
.svc-sheets span:last-child {
  margin-top: -110px;
  margin-left: 24px;
  background: #ffca1c;
  transform: rotate(-8deg);
}

@media (max-width: 980px) {
  .nav, .socials { display: none; }
  .menu-btn { display: grid; place-items: center; justify-self: end; }
  .header-inner { grid-template-columns: 1fr auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line); }
  .about-grid, .service-stage, .bang-item, .contact-hero-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; }
  .project-grid, .blog-grid, .cases, .offices { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .bang-copy, .service-copy { padding: 40px 24px 48px; }
  .services-horizon .service-slide { grid-template-columns: 1fr; grid-template-rows: 42vh 1fr; }
  .services-horizon .svc-art { padding: 96px 20px 12px; }
  .services-horizon .service-copy { padding: 20px 24px 28px; }
  .svc-frame { width: min(86%, 420px); }
  .svc-giant { font-size: 96px; top: 14%; }
  .svc-cloud, .svc-sheets, .svc-mini-grid { display: none; }
  .services-toolbar { padding: 0 20px; }
  .hero-content { width: min(1100px, calc(100% - 32px)); }
  .hero { padding-bottom: 48px; }
}

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .work-card { width: 250px; height: 330px; }
  .gallery { grid-template-columns: 1fr; }
}
