@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #1c1a17;
  --muted: #716b62;
  --paper: #f5f0e8;
  --white: #fffdf9;
  --line: #ded6ca;
  --green: #2d2923;
  --mint: #eadfce;
  --lime: #dcc29b;
  --sans: "Lato", Arial, sans-serif;
  --display: "Lato", Arial, sans-serif;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-stretch: normal;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.studio-header {
  position: relative;
  z-index: 10;
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(16px);
}
.studio-brand { display: inline-flex; align-items: center; }
.studio-brand__logo { display: block; width: auto; }
.studio-brand__logo--full { height: 34px; }
.studio-brand__logo--mark { display: none; width: 44px; height: 44px; }
.studio-nav { display: flex; gap: 30px; font-size: 14px; color: var(--muted); }
.studio-nav a { transition: color 180ms ease; }
.studio-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.language-switch { display: flex; align-items: center; gap: 6px; color: #aaa196; font-size: 13px; }
.language-switch button { padding: 0; border: 0; background: none; cursor: pointer; color: #a49b90; }
.language-switch button[aria-pressed="true"] { color: var(--ink); font-weight: 600; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--green); }
.button--small { min-height: 44px; padding-inline: 18px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  align-items: center;
  gap: clamp(46px, 8vw, 140px);
  padding: clamp(84px, 11vh, 140px) clamp(22px, 7vw, 120px) 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: none;
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero__glow {
  position: absolute;
  z-index: -1;
  width: 600px;
  height: 600px;
  right: -160px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 218, 197, .95), rgba(220, 194, 155, .3) 45%, transparent 70%);
  filter: blur(18px);
  animation: float-glow 8s ease-in-out infinite alternate;
}
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--ink); }
.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 7.3vw, 116px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .91;
}
.hero__intro { max-width: 670px; margin: 34px 0 0; color: var(--muted); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.5; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateY(3px); }

.hero__offer {
  position: relative;
  min-height: 390px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(19,33,26,.1);
  border-radius: 38px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 30px 80px rgba(30,65,47,.11);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transform: rotate(2deg);
}
.offer-orbit {
  position: absolute;
  width: 210px;
  height: 210px;
  top: -32px;
  right: -28px;
  border: 1px solid rgba(19,33,26,.18);
  border-radius: 50%;
}
.offer-orbit::before, .offer-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.offer-orbit::before { inset: 28px; border: 1px solid rgba(19,33,26,.13); }
.offer-orbit::after { width: 18px; height: 18px; left: 22px; top: 44px; background: var(--lime); box-shadow: 0 0 0 7px rgba(223,255,122,.28); }
.offer-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.hero__offer strong { display: flex; align-items: baseline; gap: 9px; margin-top: 10px; font-family: var(--display); font-size: clamp(42px, 4.2vw, 68px); letter-spacing: -.06em; }
.hero__offer strong small { font-family: var(--sans); font-size: 14px; letter-spacing: 0; }
.hero__offer p { max-width: 290px; margin: 20px 0 28px; font-size: 17px; line-height: 1.45; }
.offer-note { padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

@keyframes float-glow { to { transform: translate(-45px, 42px) scale(1.07); } }

@media (max-width: 980px) {
  .studio-header { grid-template-columns: 1fr auto; }
  .studio-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero__copy { position: relative; z-index: 1; }
  .hero__offer { min-height: 320px; transform: none; }
}
@media (max-width: 620px) {
  .studio-header { min-height: 76px; padding: 14px 18px; }
  .studio-brand__logo--full { display: none; }
  .studio-brand__logo--mark { display: block; width: 42px; height: 42px; }
  .header-actions { gap: 12px; }
  .button--small { display: none; }
  .hero { min-height: auto; padding: 72px 18px 48px; gap: 50px; }
  .hero h1 { font-size: clamp(50px, 16vw, 72px); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__offer { min-height: 300px; padding: 30px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Full studio preview */
body { overflow-x: clip; }
img { display: block; width: 100%; }
::selection { background: var(--lime); color: var(--ink); }
[hidden] { display: none !important; }
h1, h2, h3, h4, h5, h6 {
  font-stretch: normal;
  letter-spacing: normal !important;
  overflow-wrap: break-word;
  hyphens: auto;
}

.studio-header {
  position: sticky;
  top: 0;
  box-shadow: 0 1px 0 var(--line);
  transition: min-height 220ms ease, background 220ms ease;
}
.studio-header.is-scrolled { min-height: 72px; background: rgba(255,253,249,.95); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  z-index: 9;
  inset: 76px 0 auto;
  padding: 28px 22px 34px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(56,45,34,.09);
}
.mobile-nav a { display: block; padding: 12px 0; font: 600 28px/1.1 var(--display); letter-spacing: -.04em; }

.hero {
  min-height: calc(100svh - 92px);
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(50px, 7vw, 110px);
  padding-top: clamp(90px, 12vh, 150px);
}
.hero::before { display: none; }
.hero__copy { align-self: center; }
.hero h1 { max-width: 820px; font-size: clamp(62px, 6.25vw, 104px); font-weight: 700; letter-spacing: -.065em; line-height: .97; }
.highlight {
  display: inline;
  padding: 0 .12em .04em;
  margin-inline: -.12em 0;
  border-radius: .52em;
  background: linear-gradient(115deg, #e1d1ba, var(--mint));
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__intro { max-width: 610px; font-size: clamp(17px, 1.35vw, 21px); }
.hero__glow { right: -220px; top: -100px; opacity: .65; }

.hero__showcase {
  position: relative;
  min-height: clamp(470px, 51vw, 700px);
  align-self: end;
  background: #ded0bc;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(74,56,38,.14);
}
.hero__showcase-art { position: absolute; inset: 0; overflow: hidden; }
.art-slash { position: absolute; display: block; width: 78%; height: 15%; transform: rotate(-29deg); }
.art-slash--one { left: -18%; top: 40%; background: #c79f7c; }
.art-slash--two { width: 70%; right: -26%; bottom: 19%; background: #f4ece1; transform: rotate(39deg); }
.hero__screen {
  position: absolute;
  z-index: 1;
  width: 83%;
  left: 8.5%;
  top: 27%;
  padding: 8px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 32px 50px rgba(52,43,34,.25);
  transform: rotate(-3deg);
}
.hero__screen::before {
  content: "";
  display: block;
  height: 10px;
  margin: -1px -1px 7px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, #c69870 0 7px, transparent 7px 12px, #ddc6a5 12px 19px, transparent 19px 24px, #8e7c68 24px 31px, #f1ece4 31px);
}
.hero__screen img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.hero__price {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(280px, 65%);
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(52,43,34,.17);
  backdrop-filter: blur(10px);
}
.hero__price > span { display: block; color: var(--muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.hero__price strong { display: block; margin-top: 4px; font: 700 clamp(28px, 3vw, 44px)/1 var(--display); letter-spacing: -.055em; }
.hero__price strong small { margin-right: 5px; font: 600 12px var(--sans); letter-spacing: 0; }
.hero__price em { display: block; margin-top: 10px; color: var(--muted); font-style: normal; font-size: 10px; }
.hero__cursor {
  position: absolute;
  z-index: 3;
  left: 17%;
  top: 22%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 42px solid var(--lime);
  filter: drop-shadow(0 8px 10px rgba(52,43,34,.18));
  transform: rotate(-40deg);
  animation: cursor-drift 5s ease-in-out infinite alternate;
}

.section { padding: clamp(92px, 12vw, 180px) clamp(22px, 7vw, 120px); }
.section-heading { max-width: 950px; margin-bottom: clamp(55px, 8vw, 100px); }
.section-heading h2, .web-build h2, .local-section h2, .contact h2 {
  margin: 0;
  font: 700 clamp(46px, 5.7vw, 88px)/.98 var(--display);
  letter-spacing: -.06em;
}
.section-heading > p:last-child { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.55; }
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr);
  align-items: end;
  gap: clamp(50px, 10vw, 180px);
}
.section-heading--split > p:last-child { margin: 0 0 8px; }

.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); }
.service-card {
  position: relative;
  min-height: 190px;
  padding: 32px 12px 30px 36px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px minmax(180px, .7fr) minmax(220px, 1fr);
  align-items: start;
  gap: 20px;
}
.service-card:nth-child(2) { border-top-color: var(--ink); }
.service-card__top { display: contents; }
.service-card__top span { grid-column: 1; color: var(--muted); font-size: 12px; }
.service-card__top i { position: absolute; right: 4px; top: 27px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-style: normal; transition: background 180ms ease; }
.service-card__top i::before { content: ""; width: 15px; height: 3px; border-radius: 2px; background: var(--ink); transition: transform 180ms ease; }
.service-card__top i::after { content: ""; position: absolute; width: 7px; height: 7px; right: 10px; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); transform: rotate(45deg); transition: right 180ms ease; }
.service-card:hover .service-card__top i { background: var(--lime); }
.service-card:hover .service-card__top i::before { transform: translateX(2px); }
.service-card:hover .service-card__top i::after { right: 8px; }
.service-card h3 { grid-column: 2; margin: -5px 0 0; font: 700 clamp(26px, 2.6vw, 42px)/1 var(--display); letter-spacing: -.045em; }
.service-card p { grid-column: 3; margin: 0 52px 0 0; color: var(--muted); line-height: 1.55; }
.service-card > a { grid-column: 3; margin-top: 20px; font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; }
.service-card > ul, .service-card > strong { display: none; }
.service-card--featured {
  grid-row: span 3;
  min-height: 570px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 0;
  background: var(--mint);
  overflow: hidden;
}
.service-card--featured::after {
  content: "M";
  position: absolute;
  right: -25px;
  bottom: -70px;
  color: rgba(255,255,255,.66);
  font: 700 320px/.8 var(--display);
  letter-spacing: -.1em;
}
.service-card--featured .service-card__top { display: flex; justify-content: space-between; }
.service-card--featured .service-card__top i { position: static; border-color: rgba(19,33,26,.22); }
.service-card--featured h3 { margin: 58px 0 20px; font-size: clamp(44px, 3.8vw, 58px); }
.service-card--featured p { max-width: 460px; margin: 0; color: var(--ink); font-size: 18px; }
.service-card--featured ul { position: relative; z-index: 1; display: grid; gap: 10px; margin: 30px 0; padding: 0; list-style: none; }
.service-card--featured li { font-size: 14px; }
.service-card--featured li::before { content: "✓"; margin-right: 10px; }
.service-card--featured > strong { position: relative; z-index: 1; display: block; margin-top: auto; font: 700 clamp(42px, 5vw, 68px)/1 var(--display); letter-spacing: -.06em; }
.service-card--featured > strong small { margin-right: 8px; font: 600 13px var(--sans); letter-spacing: 0; }

.web-build {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
  background: #f1eae0;
}
.web-build__visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.browser-frame { width: 100%; max-width: 760px; border: 1px solid rgba(52,43,34,.15); border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 35px 80px rgba(74,56,38,.13); transform: rotate(-2deg); }
.browser-frame__bar { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: #f8f4ed; border-bottom: 1px solid var(--line); }
.browser-frame__bar span { width: 8px; height: 8px; border-radius: 50%; background: #d6cec2; }
.browser-frame__bar b { margin-inline: auto; color: #a3988a; font-size: 10px; font-weight: 500; }
.browser-frame__content { position: relative; min-height: 480px; padding: 70px 48px; background: var(--white); overflow: hidden; }
.mock-label { position: relative; z-index: 1; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.browser-frame__content > strong { position: relative; z-index: 1; display: block; max-width: 460px; margin-top: 30px; font: 700 clamp(48px, 5vw, 76px)/.93 var(--display); letter-spacing: -.06em; }
.mock-button { position: relative; z-index: 1; display: inline-flex; margin-top: 34px; padding: 14px 20px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; }
.mock-shape { position: absolute; width: 300px; height: 440px; right: -75px; top: 40px; border-radius: 150px 150px 30px 30px; background: linear-gradient(145deg, var(--lime), #d7c6ae 55%, #b99878); transform: rotate(18deg); }
.floating-tag { position: absolute; padding: 13px 18px; border: 1px solid rgba(52,43,34,.12); border-radius: 999px; background: #fff; box-shadow: 0 12px 30px rgba(74,56,38,.1); font-size: 12px; font-weight: 600; }
.floating-tag--one { left: -15px; top: 13%; }
.floating-tag--two { right: -20px; bottom: 14%; }
.web-build__copy > p:not(.eyebrow):not(.fine-print) { margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.deliverables { margin: 35px 0; padding: 0; border-top: 1px solid #d7cdbf; list-style: none; }
.deliverables li { display: grid; grid-template-columns: 50px 1fr; padding: 17px 0; border-bottom: 1px solid #d7cdbf; }
.deliverables span { color: var(--muted); font-size: 11px; }
.deliverables b { font-weight: 600; }
.fine-print { color: var(--muted); font-size: 11px; line-height: 1.55; }

.pricing { background: var(--white); }
.pricing-switch { display: flex; gap: 8px; width: fit-content; margin-bottom: 36px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.pricing-switch button { min-height: 44px; padding: 0 20px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; font-size: 13px; font-weight: 600; }
.pricing-switch button[aria-selected="true"] { background: var(--ink); color: #fff; }
.pricing-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.price-card { position: relative; min-height: 580px; padding: clamp(26px, 3vw, 42px); display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); }
.price-card--popular { border-color: var(--green); background: #faf6ef; }
.popular-badge { position: absolute; right: 22px; top: 22px; padding: 7px 10px; border-radius: 999px; background: var(--lime); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.price-name { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.price-card > strong { display: flex; align-items: baseline; gap: 6px; margin: 46px 0 24px; font: 700 clamp(52px, 5vw, 78px)/1 var(--display); letter-spacing: -.07em; }
.price-card > strong.price-on-request { font-size: clamp(38px, 4vw, 58px); }
.price-card > strong > span { font: 600 13px var(--sans); letter-spacing: 0; }
.price-card > strong small { font: 500 12px var(--sans); letter-spacing: 0; color: var(--muted); }
.price-card > p:not(.price-name) { min-height: 70px; margin: 0; color: var(--muted); line-height: 1.5; }
.price-card ul { display: grid; gap: 13px; margin: 28px 0 32px; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; gap: 10px; font-size: 13px; line-height: 1.4; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 700; }
.price-card > a { margin-top: auto; min-height: 50px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 600; transition: background 180ms ease, color 180ms ease; }
.price-card > a:hover { background: var(--ink); color: #fff; }
.pricing-note { max-width: 940px; margin: 26px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.projects { background: #f1ece4; }
.project-feature { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(350px, .65fr); min-height: 650px; background: var(--white); }
.project-feature__image { position: relative; min-height: 650px; padding: clamp(32px, 5vw, 76px); display: grid; place-items: center; background: #d9c9b4; overflow: hidden; }
.project-feature__image::before, .project-feature__image::after { content: ""; position: absolute; width: 65%; height: 13%; background: #b98e68; transform: rotate(-26deg); }
.project-feature__image::before { left: -15%; top: 34%; }
.project-feature__image::after { right: -16%; bottom: 28%; background: #f3e9dc; transform: rotate(34deg); }
.project-feature__image img { position: relative; z-index: 1; box-shadow: 0 32px 60px rgba(56,43,31,.24); transition: transform 450ms cubic-bezier(.2,.8,.2,1); }
.project-feature__image:hover img { transform: scale(1.025) rotate(-1deg); }
.project-feature__image > span { position: absolute; z-index: 2; left: 28px; bottom: 28px; padding: 11px 15px; border-radius: 999px; background: #fff; font-size: 11px; font-weight: 600; }
.project-feature__copy { padding: clamp(38px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.project-kicker { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.project-feature h3 { margin: 42px 0 25px; font: 700 clamp(58px, 7vw, 104px)/.85 var(--display); letter-spacing: -.075em; }
.project-feature__copy > p { color: var(--muted); font-size: 17px; line-height: 1.55; }
.project-feature dl { margin: 32px 0 42px; }
.project-feature dl div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 12px; }
.project-feature dt { color: var(--muted); }
.project-feature dd { margin: 0; }
.project-feature .text-link { align-self: flex-start; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.project-tile { padding: 16px 16px 32px; background: var(--white); }
.project-tile__image { display: block; margin-bottom: 24px; overflow: hidden; background: #e6ded2; }
.project-tile img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.project-tile:hover img { transform: scale(1.035); }
.project-tile__meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.project-tile__meta b { font-weight: 500; }
.project-tile h3 { margin: 25px 0 12px; font: 700 clamp(34px, 3.2vw, 50px)/1 var(--display); letter-spacing: -.05em; }
.project-tile p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.process { background: var(--white); }
.process-list { border-top: 1px solid var(--ink); }
.process-list article { min-height: 155px; display: grid; grid-template-columns: 90px minmax(230px, .7fr) minmax(300px, 1fr); gap: 20px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list article > span { color: var(--muted); font-size: 11px; }
.process-list h3 { margin: -5px 0 0; font: 700 clamp(30px, 3vw, 48px)/1 var(--display); letter-spacing: -.05em; }
.process-list p { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.55; }

.local-section { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); align-items: center; gap: clamp(70px, 11vw, 180px); background: var(--lime); }
.local-map { position: relative; min-height: 520px; overflow: hidden; background-image: linear-gradient(rgba(28,26,23,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(28,26,23,.12) 1px, transparent 1px); background-size: 54px 54px; }
.map-ring { position: absolute; border: 1px solid rgba(28,26,23,.24); border-radius: 50%; }
.map-ring--one { width: 330px; height: 330px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.map-ring--two { width: 520px; height: 520px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.map-pin { position: absolute; left: 50%; top: 50%; display: flex; align-items: center; gap: 8px; transform: translate(-50%,-50%); padding: 12px 17px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; }
.map-pin i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 8px rgba(220,194,155,.18); }
.local-map > b { position: absolute; right: 18px; bottom: 18px; font-size: 10px; font-weight: 500; line-height: 1.4; }
.local-copy > p:not(.eyebrow) { margin: 30px 0; font-size: 18px; line-height: 1.6; }
.local-keywords { display: flex; flex-wrap: wrap; gap: 9px; }
.local-keywords span { padding: 10px 14px; border: 1px solid rgba(28,26,23,.3); border-radius: 999px; font-size: 11px; font-weight: 600; }

.faq { background: var(--paper); }
.faq-list { max-width: 1050px; margin-left: auto; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 25px; padding: 29px 0; cursor: pointer; list-style: none; font: 600 clamp(20px, 2vw, 28px)/1.2 var(--display); letter-spacing: -.025em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-family: var(--sans); font-weight: 400; transition: transform 180ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details > p { max-width: 780px; margin: -5px 0 28px; color: var(--muted); line-height: 1.65; }

.service-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 15vw, 220px) clamp(22px, 8vw, 140px) clamp(85px, 9vw, 130px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.service-page-hero__glow {
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  right: -180px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,194,155,.72), rgba(234,223,206,.3) 48%, transparent 70%);
  filter: blur(18px);
}
.service-page-hero__inner { width: 100%; max-width: 1180px; }
.service-page-hero h1 {
  max-width: 1120px;
  margin: 0;
  font: 700 clamp(62px, 7.2vw, 112px)/.96 var(--display);
}
.service-page-hero__inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}
.service-page-index {
  display: flex;
  gap: 10px;
  padding: 26px clamp(22px, 7vw, 120px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.service-page-index a {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}
.service-page-index a:hover { background: var(--ink); color: #fff; }
.service-offering { padding: clamp(90px, 11vw, 160px) clamp(22px, 7vw, 120px); }
.service-offering--paper { background: var(--paper); }
.service-offering--white { background: var(--white); }
.service-offering--dark { background: #231f1a; color: #fff; }
.service-offering__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .6fr);
  gap: clamp(45px, 9vw, 140px);
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 90px);
}
.service-offering__heading h2 {
  max-width: 930px;
  margin: 0;
  font: 700 clamp(48px, 5.5vw, 82px)/.98 var(--display);
}
.service-offering__heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.service-offering--dark .eyebrow::before { background: #fff; }
.service-offering--dark .service-offering__heading > p { color: rgba(255,255,255,.66); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.service-detail {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
}
.service-detail--accent { background: var(--lime); border-color: transparent; }
.service-detail > span { color: var(--muted); font-size: 11px; }
.service-detail__label {
  margin: 42px 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.service-detail h3 { margin: 0 0 22px; font: 700 clamp(38px, 4vw, 62px)/1 var(--display); }
.service-detail > p:not(.service-detail__label) { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.service-feature-list { display: grid; gap: 12px; margin: 32px 0; padding: 26px 0 0; border-top: 1px solid rgba(28,26,23,.18); list-style: none; }
.service-feature-list li { display: flex; gap: 10px; font-size: 13px; }
.service-feature-list li::before { content: "✓"; font-weight: 700; }
.service-detail__price { margin-top: auto; font: 700 clamp(42px, 5vw, 70px)/1 var(--display); }
.service-detail__price small { margin-right: 8px; font: 600 13px var(--sans); }
.service-detail__price--request { max-width: 420px; font-size: clamp(36px, 4vw, 58px); }
.service-note { max-width: 940px; margin: 28px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.service-offering--dark .service-detail { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.045); }
.service-offering--dark .service-detail > span,
.service-offering--dark .service-detail__label,
.service-offering--dark .service-detail > p:not(.service-detail__label) { color: rgba(255,255,255,.64); }
.service-plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-plan {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
}
.service-plan--featured { border-color: var(--ink); background: #faf6ef; }
.service-plan > strong { display: flex; align-items: baseline; gap: 6px; margin: 42px 0 24px; font: 700 clamp(52px, 5vw, 74px)/1 var(--display); }
.service-plan > strong > span { font: 600 13px var(--sans); }
.service-plan > strong small { font: 500 12px var(--sans); color: var(--muted); }
.service-plan > p:not(.price-name) { min-height: 76px; margin: 0; color: var(--muted); line-height: 1.55; }
.service-plan ul { display: grid; gap: 13px; margin: 28px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-plan li { display: flex; gap: 10px; font-size: 13px; line-height: 1.4; }
.service-plan li::before { content: "✓"; font-weight: 700; }
.service-consultation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  padding: clamp(90px, 11vw, 160px) clamp(22px, 7vw, 120px);
  background: var(--lime);
}
.service-consultation h2 { margin: 0; font: 700 clamp(50px, 6vw, 88px)/.98 var(--display); }
.service-consultation__copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 0; font-size: 18px; line-height: 1.65; }
.service-consultation__steps { margin: 0; padding: 0; border-top: 1px solid rgba(28,26,23,.5); list-style: none; }
.service-consultation__steps li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(28,26,23,.25); }
.service-consultation__steps span { color: var(--muted); font-size: 11px; }
.service-consultation__steps b { font-size: 18px; font-weight: 600; }

.legal-hero {
  position: relative;
  isolation: isolate;
  min-height: 630px;
  display: flex;
  align-items: flex-end;
  padding: clamp(110px, 15vw, 220px) clamp(22px, 8vw, 140px) clamp(85px, 9vw, 140px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.legal-hero__glow {
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  right: -180px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,194,155,.72), rgba(234,223,206,.3) 48%, transparent 70%);
  filter: blur(18px);
}
.legal-hero__inner { width: 100%; max-width: 1160px; }
.legal-hero h1 {
  max-width: 1050px;
  margin: 0;
  font: 700 clamp(62px, 7.5vw, 116px)/.96 var(--display);
}
.legal-hero__intro {
  max-width: 690px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}
.legal-content {
  padding: clamp(85px, 10vw, 150px) clamp(22px, 7vw, 120px);
  background: var(--white);
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}
.legal-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(34px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}
.legal-card:nth-child(odd) { border-right: 1px solid var(--line); }
.legal-card > span { color: var(--muted); font-size: 11px; }
.legal-card h2 { margin: -7px 0 28px; font: 700 clamp(28px, 3vw, 46px)/1.05 var(--display); }
.legal-card p { max-width: 540px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.legal-card a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.legal-back { display: inline-block; margin-top: 60px; }

.contact { position: relative; isolation: isolate; padding: clamp(100px, 15vw, 220px) clamp(22px, 10vw, 170px) 70px; overflow: hidden; background: var(--green); color: #fff; }
.contact__glow { position: absolute; z-index: -1; width: 850px; height: 850px; right: -250px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(220,194,155,.24), transparent 67%); }
.contact .eyebrow::before { background: #fff; }
.contact h2 { max-width: 1150px; font-size: clamp(58px, 7.5vw, 116px); }
.contact > p:not(.eyebrow) { max-width: 720px; margin: 38px 0 50px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.6; }
.contact__button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; border: 0; border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); background: transparent; color: inherit; text-align: left; cursor: pointer; font: 600 clamp(26px, 3vw, 48px)/1 var(--display); letter-spacing: -.04em; }
.contact__button i { position: relative; width: 62px; height: 62px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-style: normal; }
.contact__button i::before { content: ""; width: 23px; height: 4px; border-radius: 2px; background: var(--ink); transition: transform 180ms ease; }
.contact__button i::after { content: ""; position: absolute; width: 10px; height: 10px; right: 17px; border-top: 4px solid var(--ink); border-right: 4px solid var(--ink); transform: rotate(45deg); transition: right 180ms ease; }
.contact__button:hover i::before { transform: translateX(3px); }
.contact__button:hover i::after { right: 14px; }
.contact__button[aria-expanded="true"] i { transform: rotate(90deg); }
.contact__details { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(0, 1fr); gap: 35px; padding: 34px 0 8px; }
.contact__details > p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.contact__details > div { display: grid; gap: 13px; }
.contact__details a { width: fit-content; font: 600 clamp(20px, 2.2vw, 32px)/1.15 var(--display); text-decoration: underline; text-underline-offset: 7px; }
.studio-footer { min-height: 190px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding: 36px clamp(22px, 4vw, 72px); background: #231f1a; color: #fff; border-top: 1px solid rgba(255,255,255,.14); }
.studio-footer .studio-brand__logo--full { display: block; height: 38px; }
.studio-footer .studio-brand__logo--mark { display: none; }
.studio-footer > p { color: rgba(255,255,255,.62); font-size: 13px; }
.studio-footer > div { display: flex; gap: 22px; font-size: 12px; }
.studio-footer > span { grid-column: 1 / -1; color: rgba(255,255,255,.45); font-size: 10px; }

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

@keyframes cursor-drift { to { transform: translate(32px, 18px) rotate(-31deg); } }

@media (max-width: 1100px) {
  .studio-header { grid-template-columns: 1fr auto; }
  .studio-nav, .button--small { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr 1fr; padding-inline: 42px; }
  .service-card { grid-template-columns: 54px 1fr; }
  .service-card h3 { grid-column: 2; }
  .service-card p, .service-card > a { grid-column: 2; }
  .service-card--featured { display: flex; }
  .project-feature { grid-template-columns: 1fr; }
  .project-feature__image { min-height: 540px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .studio-header { min-height: 76px; grid-template-columns: 1fr auto; }
  .studio-nav, .button--small { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 82px 24px 105px; }
  .hero h1 { max-width: 790px; }
  .hero__showcase { width: 100%; min-height: 620px; }
  .section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .service-grid, .web-build, .local-section { grid-template-columns: 1fr; }
  .service-card--featured { min-height: 500px; grid-row: auto; }
  .pricing-panel { grid-template-columns: 1fr; }
  .price-card { min-height: 510px; }
  .web-build__visual { min-height: 540px; }
  .local-map { order: 2; }
  .process-list article { grid-template-columns: 60px 1fr; }
  .process-list p { grid-column: 2; }
  .legal-grid { grid-template-columns: 1fr; }
  .service-offering__heading, .service-consultation { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-plan-grid { grid-template-columns: 1fr; }
  .service-plan { min-height: auto; }
  .legal-card:nth-child(odd) { border-right: 0; }
  .studio-footer { grid-template-columns: 1fr auto; }
  .studio-footer > p { display: none; }
}

@media (max-width: 620px) {
  .hero { padding-inline: 18px; }
  .hero h1 { font-size: clamp(50px, 15.5vw, 72px); }
  .hero__showcase { min-height: 430px; }
  .hero__screen { top: 22%; }
  .hero__price { right: 14px; bottom: 14px; padding: 17px; }
  .hero__price strong { font-size: 28px; }
  .section { padding: 90px 18px; }
  .section-heading h2, .web-build h2, .local-section h2 { font-size: clamp(42px, 13vw, 62px); }
  .service-card { min-height: auto; display: block; padding: 28px 4px; }
  .service-card__top { display: flex; margin-bottom: 34px; }
  .service-card h3 { margin-bottom: 18px; }
  .service-card p { margin-right: 0; }
  .service-card > a { display: inline-block; }
  .service-card--featured { min-height: 510px; padding: 28px; }
  .service-card--featured h3 { margin-top: 60px; font-size: clamp(36px, 10vw, 42px); }
  .service-card--featured p { font-size: 16px; }
  .web-build__visual { min-height: 440px; }
  .browser-frame__content { min-height: 340px; padding: 48px 25px; }
  .mock-shape { width: 180px; height: 330px; right: -80px; }
  .floating-tag--one { left: -2px; }
  .floating-tag--two { right: -2px; }
  .pricing-switch { width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: 18px; }
  .pricing-switch button { flex: 0 0 auto; }
  .price-card { min-height: 500px; padding: 28px; }
  .project-feature__image { min-height: 360px; padding: 34px 22px; }
  .project-feature__copy { padding: 38px 24px 48px; }
  .project-feature h3 { font-size: 60px; }
  .project-feature dl div { grid-template-columns: 70px 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .process-list article { grid-template-columns: 42px 1fr; }
  .local-section { padding-inline: 18px; }
  .local-map { min-height: 410px; }
  .map-ring--two { width: 410px; height: 410px; }
  .faq summary { font-size: 20px; }
  .service-page-hero { min-height: 600px; padding: 120px 18px 80px; }
  .service-page-hero h1 { font-size: clamp(40px, 13vw, 68px); }
  .service-page-index { gap: 8px; padding: 18px; overflow-x: auto; }
  .service-page-index a { flex: 0 0 auto; }
  .service-offering { padding: 90px 18px; }
  .service-offering__heading h2, .service-consultation h2 { font-size: clamp(42px, 12vw, 58px); }
  .service-detail { min-height: 500px; padding: 30px 24px; }
  .service-plan { padding: 30px 24px; }
  .service-consultation { padding: 90px 18px; }
  .legal-hero { min-height: 520px; padding: 110px 18px 75px; }
  .legal-hero h1 { font-size: clamp(50px, 14vw, 68px); }
  .legal-content { padding: 80px 18px; }
  .legal-card { min-height: auto; grid-template-columns: 38px 1fr; gap: 10px; padding: 34px 0; }
  .legal-card h2 { margin-bottom: 22px; font-size: clamp(28px, 9vw, 38px); }
  .legal-card p { font-size: 15px; }
  .contact { padding: 100px 18px 48px; }
  .contact h2 { font-size: clamp(50px, 14vw, 72px); }
  .contact__button i { width: 50px; height: 50px; }
  .contact__details { grid-template-columns: 1fr; gap: 22px; padding-top: 28px; }
  .contact__details a { font-size: 20px; }
  .studio-footer { grid-template-columns: 1fr; padding: 36px 18px; }
  .studio-footer > div { flex-wrap: wrap; }
}
