:root {
  --bg: #f7f5ef;
  --surface: #fffefb;
  --ink: #141412;
  --muted: #6f6a62;
  --line: #ddd8cf;
  --accent: #a24423;
  --accent-dark: #803318;
  --accent-soft: #f3dfd3;
  --dark: #171714;
  --dark-soft: #24241f;
  --green: #234437;
  --lime: #dff27a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 28px 80px rgba(24, 22, 18, .10);
  --display: "Avenir Next", "Segoe UI", ui-sans-serif, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--accent); color: white; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.skip-link {
  position: fixed;
  z-index: 200;
  left: 18px;
  top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(221, 216, 207, .9);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-entry {
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
}
.nav-primary-link {
  padding: 10px 4px 10px 13px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}
.nav-trigger {
  display: grid;
  place-items: center;
  min-width: 30px;
  min-height: 38px;
  padding: 10px 13px 10px 5px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.nav-entry:hover,
.nav-entry:has(.nav-primary-link[aria-current="page"]),
.nav-group.is-open .nav-entry { color: var(--ink); background: rgba(255, 255, 255, .8); }
.nav-group { position: static; }
.nav-trigger::after { content: "⌄"; }
.nav-panel {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 50%;
  width: min(1080px, calc(100vw - 56px));
  padding-top: 14px;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-group.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-panel-surface {
  display: grid;
  grid-template-columns: 220px 270px minmax(0, 1fr);
  gap: 18px;
  min-height: 292px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 254, 251, .99);
  box-shadow: var(--shadow);
}
.mega-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 8px 6px;
}
.mega-kicker,
.mega-group-title {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mega-title {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.mega-intro p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
}
.mega-link-groups {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 8px 0;
}
.mega-link-groups-multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 8px;
}
.mega-link-group { display: grid; align-content: start; gap: 4px; }
.mega-group-title { margin: 0 10px 4px; }
.mega-link-group > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 11px;
  text-decoration: none;
}
.mega-link-group > a:hover,
.mega-link-group > a:focus-visible { background: var(--accent-soft); }
.mega-link-group > a > span:first-child { display: grid; gap: 2px; min-width: 0; }
.mega-link-group strong { font-family: var(--display); font-size: 12px; line-height: 1.18; }
.mega-link-group small { color: var(--muted); font-size: 9.5px; line-height: 1.25; }
.mega-link-group > a > span:last-child { color: var(--accent); font-size: 10px; }
.mega-visual { min-width: 0; min-height: 254px; }
.mega-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity .25s ease;
}
.mega-visual img[src] { opacity: 1; }
.mega-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  height: 100%;
}
.mega-project {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  text-decoration: none;
}
.mega-project-image { min-height: 190px; overflow: hidden; background: var(--accent-soft); }
.mega-project > span:last-child { display: grid; gap: 1px; padding: 9px 10px; }
.mega-project strong { font-family: var(--display); font-size: 11px; line-height: 1.2; }
.mega-project small { color: var(--muted); font-size: 9px; }
.mega-project:hover img,
.mega-project:focus-visible img { transform: scale(1.025); }
.mega-feature {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--accent-soft);
  text-decoration: none;
}
.mega-feature-image { min-height: 205px; overflow: hidden; }
.mega-feature-caption { display: flex; justify-content: space-between; gap: 16px; padding: 11px 13px; background: var(--surface); font-size: 11px; }
.mega-stack { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; height: 100%; }
.mega-stack a { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--accent-soft); }
.mega-stack span { position: absolute; right: 7px; bottom: 7px; left: 7px; padding: 8px; border-radius: 9px; background: rgba(20,20,18,.82); color: #fff; font-size: 9px; font-weight: 700; line-height: 1.2; }
.mega-prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; height: 100%; }
.mega-prices a { display: flex; flex-direction: column; justify-content: flex-end; min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(160deg,var(--surface),var(--accent-soft)); text-decoration: none; }
.mega-prices span { margin-bottom: auto; color: var(--muted); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.mega-prices strong { font-family: var(--display); font-size: 18px; line-height: 1.05; }
.mega-prices small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(230,161,134,.48);
  border-radius: 999px;
  background: rgba(196,85,45,.12);
  color: #f1ad92;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .1em;
  text-decoration: none;
  transition: .18s ease;
}
.language-switch:hover,
.language-switch:focus-visible { border-color: #e6a186; background: rgba(196,85,45,.24); color: #fff; transform: translateY(-1px); }
.phone-link { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600; }
.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after { content: ""; display: block; width: 17px; height: 2px; margin: 4px auto; background: var(--ink); transition: .2s; }
.mobile-menu {
  display: none;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 20px;
}
.mobile-menu.open { display: grid; }
.mobile-menu a {
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
}

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container.wide { width: min(1320px, calc(100% - 40px)); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-green { background: var(--green); color: #fff; }
.section-line { border-top: 1px solid var(--line); }
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lime); }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(50px, 7.8vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: clamp(23px, 2.3vw, 32px); }
h4 { font-size: 18px; }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.lead.light { color: rgba(255,255,255,.68); }
.accent { color: var(--accent); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 54px; align-items: end; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head p:last-child { color: var(--muted); max-width: 520px; }
.section-head.light p:last-child { color: rgba(255,255,255,.64); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: .18s ease;
  cursor: pointer;
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.button.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.button.ghost:hover { border-color: var(--ink); background: var(--surface); }
.button.light { background: #fff; border-color: #fff; color: var(--ink); }
.button.dark { background: var(--ink); border-color: var(--ink); color: white; }
.button.small { min-height: 40px; padding: 8px 16px; font-size: 12.5px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }

.home-hero { padding: 104px 0 70px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); gap: 70px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy .lead { max-width: 680px; margin-top: 26px; }
.hero-copy .actions { margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 26px; margin-top: 30px; color: var(--muted); font-size: 13px; font-weight: 650; }
.hero-proof span { display: inline-flex; gap: 8px; align-items: center; }
.hero-proof i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.system-visual {
  position: relative;
  min-height: 510px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow);
}
.system-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -160px;
  right: -140px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(2px);
  opacity: .75;
}
.system-label { position: relative; z-index: 2; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: 42px;
}
.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.flow-card + .flow-card::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 38px;
  width: 1px;
  height: 17px;
  background: rgba(255,255,255,.25);
}
.flow-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--accent); font-family: var(--display); font-weight: 800; }
.flow-card strong { display: block; font-family: var(--display); font-size: 15px; }
.flow-card small { display: block; color: rgba(255,255,255,.55); line-height: 1.3; }
.flow-status { color: var(--lime); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.system-note { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 13px; }

.signal-strip { padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.signal-grid .signal-item {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.48);
}
.signal-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb,currentColor 18%,transparent);
  border-radius: 16px;
  animation: signal-float 4.2s ease-in-out infinite;
}
.signal-icon svg { width: 34px; height: 34px; overflow: visible; }
.signal-item-website .signal-icon { color: #b94824; background: #f4d7c7; }
.signal-item-find .signal-icon { color: #6755c7; background: #e5e0fa; animation-delay: -.9s; }
.signal-item-follow .signal-icon { color: #247761; background: #d5eee5; animation-delay: -1.8s; }
.signal-item-reach .signal-icon { color: #b87813; background: #f7e6bd; animation-delay: -2.7s; }
.signal-vector { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.signal-vector-main { stroke-dasharray: 145; stroke-dashoffset: 145; animation: signal-draw 4.2s ease-in-out infinite; }
.signal-vector-detail { stroke-dasharray: 60; stroke-dashoffset: 60; animation: signal-draw 4.2s .22s ease-in-out infinite; }
.signal-vector-dot { fill: currentColor; transform-box: fill-box; transform-origin: center; animation: signal-pulse 2.1s ease-in-out infinite; }
.signal-vector-spark { fill: currentColor; transform-box: fill-box; transform-origin: center; animation: signal-spark 2.6s ease-in-out infinite; }
.signal-vector-check { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.signal-copy { display: grid; min-width: 0; }
.signal-grid .signal-copy strong { display: block; font-family: var(--display); font-size: 16px; line-height: 1.1; }
.signal-grid .signal-copy small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.35; }
@keyframes signal-draw { 0%,12% { stroke-dashoffset: 145; opacity: .35; } 42%,82% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -145; opacity: .35; } }
@keyframes signal-pulse { 0%,100% { transform: scale(.75); opacity: .55; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes signal-spark { 0%,100% { transform: rotate(0) scale(.78); opacity: .55; } 50% { transform: rotate(22deg) scale(1.12); opacity: 1; } }
@keyframes signal-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.service-card,
.price-card,
.plain-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.service-card { display: flex; flex-direction: column; }
.service-card .number { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin-top: 34px; }
.service-card p { margin: 14px 0 22px; color: var(--muted); }
.service-card a { margin-top: auto; color: var(--ink); text-decoration: none; font-weight: 750; font-size: 13.5px; }
.service-card a::after { content: " →"; color: var(--accent); }
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); transition: .2s; }
.service-card.dark { background: var(--dark-soft); color: white; border-color: rgba(255,255,255,.1); }
.service-card.dark p { color: rgba(255,255,255,.58); }
.service-card.dark a { color: white; }
.tag { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.tag.green { background: rgba(223,242,122,.16); color: var(--lime); }

.problem-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.problem-list { display: grid; gap: 12px; }
.problem-item { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.problem-item b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: white; background: var(--accent); font-family: var(--display); }
.problem-item strong { font-family: var(--display); font-size: 17px; }
.problem-item p { color: var(--muted); font-size: 14px; margin-top: 3px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); overflow: hidden; }
.step { padding: 34px; background: var(--dark); min-height: 245px; }
.step span { color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.step h3 { margin-top: 44px; }
.step p { margin-top: 13px; color: rgba(255,255,255,.6); }

.ownership { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.ownership-list { display: grid; gap: 10px; }
.ownership-list li { list-style: none; display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.ownership-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-size: 12px; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); text-decoration: none; }
.work-card figure { aspect-ratio: 4 / 3; overflow: hidden; background: #e9e6de; }
.work-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.work-card:hover img { transform: scale(1.035); }
.work-card div { padding: 20px; }
.work-card h3 { font-size: 22px; }
.work-card p { color: var(--muted); margin-top: 6px; font-size: 13.5px; }

.cta-panel { padding: 58px; border-radius: var(--radius-lg); background: var(--accent); color: white; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.cta-panel .eyebrow { color: rgba(255,255,255,.7); }
.cta-panel h2 { max-width: 820px; margin-top: 10px; }
.cta-panel p { color: rgba(255,255,255,.75); margin-top: 16px; max-width: 650px; }

.page-hero { padding: 92px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero .wrap { max-width: 1000px; }
.page-hero .eyebrow { margin-bottom: 17px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 92px); }
.page-hero .lead { max-width: 760px; margin-top: 24px; }
.page-hero .actions { margin-top: 30px; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.quick-facts span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 12px; font-weight: 650; }

.side-by-side { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.sticky-copy .eyebrow { margin-bottom: 12px; }
.sticky-copy p { color: var(--muted); margin-top: 17px; }
.feature-list { display: grid; gap: 14px; }
.feature { padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.feature h3 { font-size: 21px; }
.feature p { color: var(--muted); margin-top: 8px; font-size: 14px; }
.feature ul { margin-top: 14px; display: grid; gap: 7px; }
.feature li { list-style: none; color: var(--muted); font-size: 13.5px; }
.feature li::before { content: "•"; color: var(--accent); margin-right: 9px; }

/* Webshop journey: keep the current consideration visibly in focus while scrolling. */
.side-by-side .feature-list { position: relative; }
.side-by-side .feature-list::before { content: ""; position: absolute; z-index: 0; top: 40px; bottom: 40px; left: -22px; width: 1px; background: var(--line); }
.side-by-side .feature-list .feature { --focus: 0; position: relative; z-index: 1; transform: translate3d(calc(10px * (1 - var(--focus))),0,0) scale(calc(.975 + (.025 * var(--focus)))); transform-origin: left center; opacity: calc(.38 + (.62 * var(--focus))); filter: saturate(calc(.68 + (.32 * var(--focus)))); border-color: color-mix(in srgb,var(--accent) calc(58% * var(--focus)),var(--line)); box-shadow: 0 calc(18px * var(--focus)) calc(42px * var(--focus)) rgba(20,20,18,calc(.11 * var(--focus))); will-change: transform, opacity; }
.side-by-side .feature-list .feature::after { content: ""; position: absolute; top: 50%; left: -27px; width: 11px; height: 11px; border: 2px solid var(--bg); border-radius: 50%; background: var(--line); transform: translateY(-50%) scale(.8); transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .35s ease, box-shadow .45s ease; }
.side-by-side .feature-list .feature.is-scroll-active { background: color-mix(in srgb, var(--surface) 93%, #fff 7%); }
.side-by-side .feature-list .feature.is-scroll-active::after { background: var(--accent); transform: translateY(-50%) scale(1); box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 14%, transparent); }
.feature::before { display: none; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-grid.two { grid-template-columns: repeat(2, 1fr); }
.price-grid.four { grid-template-columns: repeat(4, 1fr); }
.price-card { display: flex; flex-direction: column; }
.price-card { color: var(--ink); }
.price-card.featured { background: var(--dark); color: white; border-color: var(--dark); transform: translateY(-8px); }
.price-card.featured p,
.price-card.featured li,
.price-card.featured .price-note { color: rgba(255,255,255,.62); }
.price-card .kind { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-card h3 { margin-top: 18px; }
.price-card-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 40px;
  margin-top: 18px;
}
.price-card-brand h3 { display: flex; align-items: center; margin: 0; }
.price-card-brand img { display: block; width: 126px; height: auto; }
.price-card-brand > span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .07em;
  line-height: 1.25;
  text-transform: uppercase;
}
.price-card.featured .price-card-brand > span {
  border-left-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.56);
}
.price-card-top,
.ads-calculator-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.card-platform-badge {
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: 1px solid rgba(20,20,18,.09);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(20,20,18,.08);
}
.card-platform-badge img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}
.card-platform-badge--shopify img { width: 23px; height: 23px; }
.card-platform-badge--google-business img { width: 22px; height: 22px; }
.card-platform-badge--meta,
.card-platform-badge--openai { border-color: rgba(255,255,255,.12); background: #252523; }
.card-platform-badge--meta img { width: 27px; height: 16px; }
.service-card > .card-platform-badge {
  position: absolute;
  top: 26px;
  right: 26px;
}
.price-card.featured .card-platform-badge { box-shadow: none; }
.price-card > p { color: var(--muted); margin-top: 12px; font-size: 14px; }
.price { margin-top: 26px; font-family: var(--display); font-size: 42px; font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.price small { display: block; margin-top: 8px; color: var(--muted); font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0; }
.price-card ul { display: grid; gap: 10px; margin: 24px 0; }
.price-card li { list-style: none; color: var(--muted); font-size: 13.5px; }
.price-card li::before { content: "✓"; color: var(--accent); margin-right: 9px; font-weight: 800; }
.price-card .button { margin-top: auto; }
.price-note { color: var(--muted); font-size: 11.5px; margin-top: 12px; }
.concept-note { padding: 17px 20px; border: 1px solid #e6c9bb; border-radius: 14px; background: #f8eae3; color: #733018; font-size: 13px; margin-bottom: 30px; }

.ads-calculator {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: #211f1c;
}
.ads-calculator-control,
.ads-calculator-result { min-width: 0; border-radius: 17px; }
.ads-calculator-control {
  padding: 36px;
  background: var(--accent);
  color: #fff;
}
.ads-calculator-kicker {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.ads-calculator-top .card-platform-badge { flex-basis: 34px; width: 34px; height: 34px; box-shadow: none; }
.ads-calculator-top .card-platform-badge img { width: 20px; height: 20px; }
.ads-calculator-question {
  display: block;
  max-width: 410px;
  margin-top: 30px;
  font-family: var(--display);
  font-size: clamp(25px,2.6vw,38px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.ads-calculator-budget {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(48px,5.5vw,76px);
  font-weight: 680;
  line-height: 1;
  letter-spacing: -.055em;
}
.ads-budget-range {
  width: 100%;
  height: 10px;
  margin-top: 32px;
  border-radius: 999px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg,#fff 0 var(--ads-progress),rgba(255,255,255,.28) var(--ads-progress) 100%);
  cursor: pointer;
}
.ads-budget-range::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  border: 6px solid #fff;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--dark);
  box-shadow: 0 5px 16px rgba(20,20,18,.28);
}
.ads-budget-range::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 5px 16px rgba(20,20,18,.28);
}
.ads-budget-range:focus-visible { box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.ads-calculator-scale { display: flex; justify-content: space-between; margin-top: 9px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 680; }
.ads-calculator-help { max-width: 500px; margin-top: 23px; color: rgba(255,255,255,.72); font-size: 12.5px; line-height: 1.55; }
.ads-calculator-presets { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 7px; margin-top: 26px; }
.ads-calculator-presets button {
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.ads-calculator-presets button:hover { background: rgba(255,255,255,.1); }
.ads-calculator-presets button.active { border-color: #fff; background: #fff; color: var(--ink); }
.ads-calculator-presets strong,
.ads-calculator-presets span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ads-calculator-presets strong { font-family: var(--display); font-size: 12px; }
.ads-calculator-presets span { margin-top: 3px; opacity: .68; font-size: 9px; }
.ads-calculator-result {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: #f7f4ee;
  color: var(--ink);
}
.ads-result-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 26px; }
.ads-result-head > div:first-child > span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.ads-result-head h3 { margin-top: 12px; font-size: clamp(36px,4vw,56px); }
.ads-result-price { text-align: right; }
.ads-result-price strong { display: block; font-family: var(--display); font-size: clamp(32px,3.7vw,52px); line-height: 1; letter-spacing: -.04em; }
.ads-result-price small { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 650; }
.ads-result-intro { margin-top: 22px; color: var(--muted); font-size: 15px; }
.ads-result-features { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px 22px; margin-top: 25px; }
.ads-result-features li { list-style: none; color: var(--muted); font-size: 12.5px; }
.ads-result-features li::before { content: "✓"; margin-right: 8px; color: var(--accent); font-weight: 800; }
.ads-result-breakdown { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 30px 0 26px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.ads-result-breakdown > div { min-width: 0; padding: 16px; }
.ads-result-breakdown > div + div { border-left: 1px solid var(--line); }
.ads-result-breakdown dt { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.ads-result-breakdown dd { overflow-wrap: anywhere; margin-top: 7px; font-family: var(--display); font-size: 20px; font-weight: 690; }
.ads-result-breakdown small { display: block; margin-top: 3px; color: var(--muted); font-size: 8.5px; line-height: 1.35; }
.ads-calculator-result .button { align-self: flex-start; margin-top: auto; }
.ads-calculator-note { margin-top: 18px; color: rgba(255,255,255,.58); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.price-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.price-table th,
.price-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table th { color: var(--muted); background: #f0ede6; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.price-table td strong { font-family: var(--display); }
.price-table td small { display: block; color: var(--muted); margin-top: 4px; }

.flow-diagram { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: stretch; }
.diagram-node { position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.06); }
.diagram-node:not(:last-child)::after { content: "→"; position: absolute; right: -19px; top: 50%; color: var(--lime); transform: translateY(-50%); z-index: 2; }
.diagram-node strong { display: block; font-family: var(--display); font-size: 15px; }
.diagram-node span { display: block; color: rgba(255,255,255,.57); font-size: 12px; margin-top: 6px; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); padding: 0 20px; }
summary { list-style: none; cursor: pointer; padding: 20px 32px 20px 0; font-family: var(--display); font-weight: 650; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 20px; color: var(--accent); font-size: 21px; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); padding: 0 0 20px; }

.form-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.contact-card { padding: 28px; border-radius: var(--radius); background: var(--dark); color: white; }
.contact-card p { color: rgba(255,255,255,.62); margin-top: 12px; }
.contact-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.contact-cards .contact-card { display: grid; gap: 10px; min-height: 210px; align-content: end; text-decoration: none; }
.contact-cards .contact-card > span { color: #e6a186; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-cards .contact-card > strong { max-width: calc(100% - 70px); font-family: var(--display); font-size: clamp(22px,3vw,38px); letter-spacing: -.04em; }
.contact-cards .contact-card > small { color: rgba(255,255,255,.58); font-size: 12px; }
.contact-lines { display: grid; gap: 10px; margin-top: 28px; }
.contact-lines a { color: white; text-decoration: none; font-weight: 650; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 750; }
.field input,
.field textarea,
.field select { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); padding: 13px 14px; outline: none; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 140px; resize: vertical; }
.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 12px; }
.consent input { margin-top: 3px; }
.consent a { color: var(--ink); font-weight: 700; }
.form-status { grid-column: 1 / -1; display: none; padding: 14px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); font-size: 13px; }
.form-status.show { display: block; }

.legal { max-width: 800px; }
.legal h2 { font-size: 30px; margin: 48px 0 14px; }
.legal h3 { font-size: 21px; margin: 28px 0 10px; }
.legal p,
.legal li { color: var(--muted); }
.legal ul { display: grid; gap: 8px; margin: 14px 0 14px 22px; }

/* Restaurants landing page */
.restaurant-page { overflow: hidden; }
.restaurant-hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  padding: 88px 0 78px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 100%) 0 0 / 34px 34px,
    #171714;
}
.restaurant-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: restaurant-breathe 9s ease-in-out infinite alternate;
}
.restaurant-orb-one { top: -18%; right: -5%; width: 560px; height: 560px; background: #c4552d; }
.restaurant-orb-two { bottom: -34%; left: 18%; width: 470px; height: 470px; background: #7b2b19; animation-delay: -4s; }
@keyframes restaurant-breathe { from { transform: scale(.92) translate3d(0,0,0); } to { transform: scale(1.08) translate3d(-22px,16px,0); } }
.restaurant-hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr); gap: 72px; align-items: center; }
.restaurant-hero-copy { position: relative; z-index: 2; }
.restaurant-kicker { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.restaurant-kicker span { width: 26px; height: 1px; background: #e69b7f; }
.restaurant-hero h1 { max-width: 760px; margin-top: 26px; font-family: var(--display); font-size: clamp(58px,7vw,104px); font-weight: 620; line-height: .91; letter-spacing: -.065em; }
.restaurant-hero h1 em { color: #e69b7f; font-style: normal; }
.restaurant-hero-copy > p:not(.restaurant-kicker) { max-width: 620px; margin-top: 28px; color: rgba(255,255,255,.66); font-size: 18px; line-height: 1.55; }
.restaurant-hero .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.restaurant-button-outline { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); color: #fff; }
.restaurant-button-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.restaurant-proofline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; }
.restaurant-proofline span { position: relative; padding-left: 15px; color: rgba(255,255,255,.56); font-size: 11px; font-weight: 650; }
.restaurant-proofline span::before { content: ""; position: absolute; top: .62em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #e69b7f; }
.restaurant-order-stage { position: relative; min-height: 640px; }
.restaurant-order-stage::before { content: ""; position: absolute; inset: 64px 24px 42px 80px; border: 1px solid rgba(255,255,255,.12); border-radius: 48px; background: linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.015)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); transform: rotate(5deg); }
.restaurant-phone {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 340px;
  min-height: 610px;
  padding: 16px;
  border: 8px solid #090908;
  border-radius: 46px;
  background: #f5efe5;
  color: #171714;
  box-shadow: 0 48px 100px rgba(0,0,0,.48);
  transform: translateX(-45%) rotate(5deg);
}
.restaurant-phone-top { display: grid; grid-template-columns: 1fr 72px 1fr; align-items: center; padding: 0 10px; font-size: 9px; font-weight: 750; }
.restaurant-phone-top > span:last-child { text-align: right; }
.restaurant-phone-notch { display: block; height: 22px; border-radius: 999px; background: #090908; }
.restaurant-phone-brand { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 0 7px; }
.restaurant-phone-brand > b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; background: var(--accent); color: #fff; font-family: var(--display); }
.restaurant-phone-brand span,
.restaurant-menu-item > span:nth-child(2),
.restaurant-cart > span { display: grid; }
.restaurant-phone-brand strong { font-family: var(--display); font-size: 13px; line-height: 1.1; }
.restaurant-phone-brand small { margin-top: 4px; color: #777067; font-size: 8px; }
.restaurant-phone-title { display: grid; gap: 7px; padding: 33px 7px 16px; }
.restaurant-phone-title span { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.restaurant-phone-title strong { font-family: var(--display); font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.restaurant-menu-item { display: grid; grid-template-columns: 74px minmax(0,1fr) auto; gap: 12px; align-items: center; margin-top: 9px; padding: 10px; border: 1px solid #e1d7c8; border-radius: 18px; background: #fffaf2; }
.restaurant-menu-item strong { font-family: var(--display); font-size: 12px; line-height: 1.15; }
.restaurant-menu-item small { margin-top: 5px; color: #81786d; font-size: 8px; line-height: 1.35; }
.restaurant-menu-item > b { align-self: end; font-family: var(--display); font-size: 11px; }
.restaurant-food { display: block; width: 74px; height: 74px; border-radius: 13px; background-color: #e2a060; box-shadow: inset 0 0 28px rgba(71,31,12,.25); }
.restaurant-food-one { background: radial-gradient(circle at 60% 45%,#f2d270 0 13%,transparent 14%), radial-gradient(circle at 35% 52%,#bd643c 0 18%,transparent 19%), linear-gradient(135deg,#73412d,#dba35f); }
.restaurant-food-two { background: repeating-linear-gradient(105deg,#e7b659 0 8px,#c97639 9px 15px); }
.restaurant-cart { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; padding: 16px 18px; border-radius: 18px; background: var(--accent); color: #fff; }
.restaurant-cart small { opacity: .68; font-size: 8px; }
.restaurant-cart strong { font-family: var(--display); font-size: 12px; }
.restaurant-cart > b { font-family: var(--display); font-size: 12px; }
.restaurant-floating-card { position: absolute; z-index: 3; display: grid; min-width: 190px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(30,28,25,.9); box-shadow: 0 26px 60px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.restaurant-floating-card span { color: #e69b7f; font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.restaurant-floating-card strong { margin-top: 7px; font-family: var(--display); font-size: 14px; }
.restaurant-floating-card small { margin-top: 3px; color: rgba(255,255,255,.52); font-size: 9px; }
.restaurant-floating-card-top { top: 92px; right: -16px; }
.restaurant-floating-card-bottom { bottom: 78px; left: 4px; }

.restaurant-signal { border-top: 1px solid rgba(255,255,255,.08); background: #1e1e1a; color: #fff; }
.restaurant-signal-grid { display: grid; grid-template-columns: .9fr 1.5fr auto; gap: 32px; align-items: center; min-height: 108px; }
.restaurant-signal p:first-child { color: #e69b7f; font-family: var(--display); font-size: 14px; font-weight: 700; }
.restaurant-signal p:nth-child(2) { color: rgba(255,255,255,.58); font-size: 13px; }
.restaurant-signal a { color: #fff; font-size: 12px; font-weight: 750; text-decoration: none; }
.restaurant-signal a span { margin-left: 8px; color: #e69b7f; }

.restaurant-choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.restaurant-choice { position: relative; min-height: 680px; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: #fff; }
.restaurant-choice-top { display: flex; justify-content: space-between; gap: 18px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.restaurant-choice-top b { color: inherit; letter-spacing: 0; }
.restaurant-choice h3 { max-width: 470px; margin-top: 48px; font-size: clamp(36px,4vw,56px); line-height: .98; }
.restaurant-choice > p { max-width: 500px; margin-top: 20px; color: var(--muted); }
.restaurant-choice ul { display: grid; gap: 7px; margin-top: 22px; }
.restaurant-choice li { list-style: none; color: var(--muted); font-size: 12.5px; }
.restaurant-choice li::before { content: "+"; margin-right: 9px; color: var(--accent); font-weight: 850; }
.restaurant-choice > a { position: relative; z-index: 2; display: inline-flex; gap: 9px; margin-top: 24px; color: var(--ink); font-size: 13px; font-weight: 780; text-decoration: none; }
.restaurant-choice-order { border-color: #282824; background: #191916; color: #fff; }
.restaurant-choice-order .restaurant-choice-top { color: #e69b7f; }
.restaurant-choice-order > p,
.restaurant-choice-order li { color: rgba(255,255,255,.58); }
.restaurant-choice-order > a { color: #fff; }
.restaurant-menu-sheet,
.restaurant-order-ticket { position: absolute; right: 34px; bottom: -28px; width: min(390px,72%); padding: 28px; border-radius: 24px 24px 0 0; box-shadow: 0 22px 60px rgba(34,27,20,.14); transform: rotate(-4deg); }
.restaurant-menu-sheet { border: 1px solid #ddd2c1; background: #f5efe5; }
.restaurant-menu-sheet > span,
.restaurant-order-ticket > span { display: block; margin-bottom: 18px; color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.restaurant-menu-sheet > div { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; padding: 9px 0; font-family: var(--display); font-size: 11px; }
.restaurant-menu-sheet i { border-bottom: 1px dotted #aaa093; }
.restaurant-order-ticket { display: grid; gap: 10px; right: 28px; width: min(350px,72%); border: 1px solid rgba(255,255,255,.12); background: #262621; color: #fff; transform: rotate(4deg); }
.restaurant-order-ticket > span { color: #e69b7f; }
.restaurant-order-ticket strong { font-family: var(--display); font-size: 12px; }
.restaurant-order-ticket i { margin: 7px 0; border-top: 1px dashed rgba(255,255,255,.25); }
.restaurant-order-ticket b { color: #e69b7f; font-size: 10px; }

.restaurant-demo { background: #151512; }
.restaurant-browser { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: #fff; box-shadow: 0 38px 100px rgba(0,0,0,.36); }
.restaurant-browser-bar { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; min-height: 58px; padding: 0 20px; border-bottom: 1px solid #dedbd4; background: #f0eee8; color: #5f5a52; }
.restaurant-browser-bar > div { display: flex; gap: 7px; }
.restaurant-browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d0cbc1; }
.restaurant-browser-bar > span { overflow: hidden; padding: 8px 15px; border: 1px solid #dfdbd3; border-radius: 8px; background: #fff; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.restaurant-browser-bar a { font-size: 11px; font-weight: 750; text-decoration: none; }
.restaurant-browser-bar a b { color: var(--accent); }
.restaurant-browser iframe { display: block; width: 100%; height: 680px; border: 0; background: #f7f5ef; }

.restaurant-flow-section { background: #ede9df; }
.restaurant-flow-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.restaurant-flow-grid .lead { max-width: 560px; margin: 20px 0 28px; color: var(--muted); }
.restaurant-flow-list { display: grid; gap: 10px; }
.restaurant-flow-list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; min-height: 96px; padding: 18px 22px; border: 1px solid #d9d3c8; border-radius: 18px; background: rgba(255,255,255,.7); }
.restaurant-flow-list li > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--accent); color: #fff; font-family: var(--display); font-size: 13px; font-weight: 800; }
.restaurant-flow-list li > div { display: grid; }
.restaurant-flow-list strong { font-family: var(--display); font-size: 17px; }
.restaurant-flow-list small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.restaurant-pricing .price-card { min-height: 560px; }
.restaurant-extras { display: grid; grid-template-columns: auto repeat(3,1fr); gap: 10px; align-items: center; margin-top: 26px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.restaurant-extras > span { padding-right: 18px; color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.restaurant-extras p { padding-left: 18px; border-left: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.restaurant-extras strong { display: block; color: var(--ink); font-family: var(--display); font-size: 13px; }

@media (max-width: 980px) {
  .restaurant-hero { min-height: 0; padding-top: 66px; }
  .restaurant-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .restaurant-order-stage { min-height: 610px; }
  .restaurant-signal-grid { grid-template-columns: 1fr 1.5fr; padding-block: 24px; }
  .restaurant-signal-grid a { grid-column: 1 / -1; }
  .restaurant-choice-grid { grid-template-columns: 1fr; }
  .restaurant-flow-grid { grid-template-columns: 1fr; gap: 46px; }
  .restaurant-extras { grid-template-columns: 1fr 1fr; }
  .restaurant-extras > span { grid-column: 1 / -1; }
  .restaurant-extras p:nth-of-type(odd) { border-left: 0; padding-left: 0; }
}

@media (max-width: 640px) {
  .restaurant-hero { padding: 54px 0 42px; }
  .restaurant-hero h1 { font-size: clamp(49px,15vw,72px); }
  .restaurant-hero-copy > p:not(.restaurant-kicker) { font-size: 16px; }
  .restaurant-hero .actions .button { width: 100%; justify-content: space-between; }
  .restaurant-proofline { display: grid; gap: 8px; }
  .restaurant-order-stage { min-height: 535px; margin: 0 -12px; }
  .restaurant-order-stage::before { inset: 60px 2px 22px 36px; }
  .restaurant-phone { left: 48%; width: 278px; min-height: 505px; padding: 12px; border-width: 6px; border-radius: 37px; }
  .restaurant-phone-top { grid-template-columns: 1fr 58px 1fr; }
  .restaurant-phone-notch { height: 18px; }
  .restaurant-phone-brand { margin-top: 13px; }
  .restaurant-phone-title { padding-top: 23px; }
  .restaurant-phone-title strong { font-size: 27px; }
  .restaurant-menu-item { grid-template-columns: 57px minmax(0,1fr); }
  .restaurant-menu-item > b { display: none; }
  .restaurant-food { width: 57px; height: 57px; }
  .restaurant-floating-card { min-width: 158px; padding: 13px; }
  .restaurant-floating-card-top { top: 72px; right: -6px; }
  .restaurant-floating-card-bottom { bottom: 42px; left: -4px; }
  .restaurant-signal-grid { grid-template-columns: 1fr; gap: 9px; min-height: 0; }
  .restaurant-choice { min-height: 640px; padding: 26px; border-radius: 23px; }
  .restaurant-choice h3 { margin-top: 34px; font-size: 40px; }
  .restaurant-choice-top { display: grid; gap: 5px; }
  .restaurant-menu-sheet,
  .restaurant-order-ticket { right: 20px; width: calc(100% - 40px); }
  .restaurant-browser-bar { grid-template-columns: 50px 1fr; padding: 0 12px; }
  .restaurant-browser-bar a { display: none; }
  .restaurant-browser iframe { height: 600px; }
  .restaurant-flow-list li { grid-template-columns: 48px 1fr; padding: 14px; }
  .restaurant-flow-list li > span { width: 42px; height: 42px; }
  .restaurant-extras { grid-template-columns: 1fr; }
  .restaurant-extras p { padding: 11px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .restaurant-orb { animation: none; }
}

.site-footer { padding: 58px 0 30px; background: var(--dark); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 44px; }
.footer-intro p { color: rgba(255,255,255,.55); max-width: 350px; margin-top: 14px; }
.footer-socials { margin-top: 22px; }
.footer-socials-label { display: block; margin-bottom: 10px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-socials-list { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social-link { display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; line-height: 1; text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-social-link svg { width: 15px; height: 15px; flex: 0 0 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-social-link:hover { color: white; border-color: rgba(211,83,43,.75); background: rgba(211,83,43,.12); transform: translateY(-2px); }
.footer-col h4 { color: rgba(255,255,255,.42); font-family: var(--body); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.footer-col { display: grid; align-content: start; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 11.5px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (min-width: 1041px) {
  .mobile-menu.open { display: none; }
}

@media (max-width: 1040px) {
  .desktop-nav, .phone-link { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .system-visual { min-height: 470px; }
  .card-grid.four, .price-grid.four { grid-template-columns: repeat(2, 1fr); }
  .flow-diagram { grid-template-columns: 1fr 1fr; }
  .diagram-node:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .header-inner { min-height: 64px; }
  .header-actions .button { display: none; }
  .language-switch { width: 36px; height: 36px; }
  .section { padding: 72px 0; }
  .home-hero { padding: 74px 0 50px; }
  .section-head,
  .problem-grid,
  .ownership,
  .side-by-side,
  .faq,
  .form-grid { grid-template-columns: 1fr; gap: 34px; }
  .sticky-copy { position: static; }
  .website-showcase { padding-top: 70px; padding-bottom: 72px; }
  .website-showcase-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
  .website-showcase .project-grid { grid-template-columns: 1fr; gap: 14px; }
  .website-showcase .project-card:first-child .project-shot,
  .website-showcase .project-card:not(:first-child) .project-shot { --project-shot-height: 290px; }
  .website-principles li { grid-template-columns: 54px minmax(0,1fr); gap: 13px; padding: 18px 0 22px; }
  .side-by-side .feature-list::before,
  .side-by-side .feature-list .feature::after { display: none; }
  .side-by-side .feature-list .feature { transform: none; opacity: 1; filter: none; }
  .side-by-side .feature-list .feature.is-scroll-active { transform: none; box-shadow: 0 12px 26px rgba(20,20,18,.07); }
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .price-grid,
  .price-grid.two,
  .price-grid.four,
  .portfolio-grid { grid-template-columns: 1fr; }
  .ads-calculator { grid-template-columns: 1fr; padding: 8px; border-radius: 19px; }
  .ads-calculator-control,
  .ads-calculator-result { padding: 26px 22px; border-radius: 14px; }
  .ads-calculator-question { margin-top: 23px; font-size: 28px; }
  .ads-calculator-budget { margin-top: 20px; font-size: 54px; }
  .ads-calculator-presets { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ads-result-head { align-items: flex-end; gap: 14px; }
  .ads-result-head h3 { font-size: 40px; }
  .ads-result-price strong { font-size: 33px; }
  .ads-result-features { grid-template-columns: 1fr; }
  .ads-result-breakdown { grid-template-columns: 1fr; }
  .ads-result-breakdown > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .ads-calculator-result .button { width: 100%; justify-content: center; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-panel { padding: 36px 26px; grid-template-columns: 1fr; }
  .system-visual { min-height: 510px; padding: 24px; }
  .system-note { left: 24px; right: 24px; }
  .page-hero { padding: 68px 0 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container, .container.wide, .header-inner, .mobile-menu { width: min(100% - 28px, 1180px); }
  h1 { font-size: 50px; }
  h2 { font-size: 38px; }
  .system-visual { min-height: 490px; }
  .flow-card { grid-template-columns: 38px 1fr; padding: 14px; }
  .flow-icon { width: 38px; height: 38px; }
  .flow-status { display: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-strip { padding: 10px 0; }
  .signal-grid { gap: 8px; }
  .signal-grid .signal-item { grid-template-columns: 46px minmax(0,1fr); gap: 13px; min-height: 76px; padding: 11px 13px; border-radius: 15px; }
  .signal-icon { width: 46px; height: 46px; border-radius: 14px; }
  .signal-icon svg { width: 30px; height: 30px; }
  .signal-grid .signal-copy strong { font-size: 16px; }
  .signal-grid .signal-copy small { margin-top: 3px; font-size: 10.5px; }
  .form { grid-template-columns: 1fr; }
  .field.full, .consent, .form-status { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* 2026 Brinkenberg direction based on the approved hero concept */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --ink: #141412;
  --muted: #6e6a63;
  --line: #e8e5df;
  --accent: #c4552d;
  --accent-dark: #a3431f;
  --accent-soft: #f4e2da;
  --dark: #141412;
  --dark-soft: #22221f;
  --green: #141412;
  --lime: #e6a186;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 26px 70px rgba(42, 12, 6, .18);
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

body {
  background: var(--accent-dark);
  font-family: var(--body);
  line-height: 1.55;
}

main { background: var(--bg); }

h1,
h2,
h3,
h4 { font-family: var(--display); font-weight: 520; }

h1 { letter-spacing: -.062em; line-height: .96; }
h2 { letter-spacing: -.052em; line-height: 1.02; }
h3 { letter-spacing: -.025em; }

.container { width: min(1180px, calc(100% - 48px)); }
.container.wide { width: min(1380px, calc(100% - 68px)); }
.section { padding: 108px 0; background: var(--bg); }
.section-sm { padding: 74px 0; background: var(--bg); }
.section-line { border-color: var(--line); }
.section-dark,
.section-green { background: var(--dark); }

.site-header {
  position: relative;
  top: auto;
  width: min(1480px, calc(100% - 44px));
  margin: 0 auto;
  border: 10px solid var(--bg);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: var(--dark);
  color: #fff;
  backdrop-filter: none;
  box-shadow: 0 -8px 60px rgba(42,12,6,.18);
}

.header-inner {
  width: auto;
  min-height: 82px;
  margin: 0 34px;
  gap: 28px;
}

.brand { width: 182px; color: #fff; }
.brand img,
.brand svg { display: block; width: 100%; height: auto; }

.desktop-nav { gap: 3px; }
.nav-entry {
  color: rgba(255,255,255,.67);
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 560;
}
.nav-primary-link { font: inherit; }
.nav-entry:hover,
.nav-entry:has(.nav-primary-link[aria-current="page"]),
.nav-group.is-open .nav-entry {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.nav-trigger::after { color: #e6a186; }
.nav-panel { color: #fff; }
.nav-panel-surface {
  border-color: rgba(255,255,255,.13);
  background: rgba(20,20,18,.98);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.mega-intro p,
.mega-link-group small,
.mega-project small,
.mega-prices span,
.mega-prices small { color: rgba(255,255,255,.52); }
.mega-link-group > a:hover,
.mega-link-group > a:focus-visible { background: rgba(196,85,45,.2); }
.mega-project,
.mega-feature,
.mega-stack a { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.055); }
.mega-project-image,
.mega-feature-image { background: rgba(255,255,255,.07); }
.mega-feature-caption { background: rgba(255,255,255,.055); }
.mega-prices a { border-color: rgba(255,255,255,.13); background: linear-gradient(160deg,rgba(255,255,255,.07),rgba(196,85,45,.2)); }

.header-actions .button {
  min-height: 41px;
  background: var(--bg);
  color: var(--ink);
}
.phone-link { display: none; }

.button {
  min-height: 43px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}
.button:hover { transform: translateY(-1px); filter: brightness(.97); }
.button-accent { background: var(--accent); color: #fff; }
.button-light,
.button.light { background: var(--bg); color: var(--ink); }
.button.ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.section-dark .button.ghost { border-color: rgba(255,255,255,.24); color: #fff; }

.mobile-menu {
  width: auto;
  margin: 0 24px;
  padding-bottom: 24px;
  background: var(--dark);
}
.mobile-menu a { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.menu-button { border-color: rgba(255,255,255,.18); background: transparent; }
.menu-button span,
.menu-button::before,
.menu-button::after { background: #fff; }

.home-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  width: min(1480px, calc(100% - 44px));
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid var(--bg);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 30px 90px rgba(42,12,6,.28), 0 0 0 200vmax var(--accent-dark);
  clip-path: inset(0 -200vmax -90px -200vmax);
}

.home-hero { min-height: 680px; padding: 0; }
.work-layer,
.hero-shade { position: absolute; inset: 0; }
.work-layer { overflow: hidden; background: #20201d; }
.work-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.48);
}
.work-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; }
.work-shot-main { top: 5%; right: 4%; width: 56%; height: 118%; transform: rotate(-2deg); opacity: .83; }
.work-shot-top { top: -29%; right: -4%; width: 31%; height: 72%; transform: rotate(4deg); opacity: .63; }
.work-shot-bottom { right: 28%; bottom: -45%; width: 30%; height: 74%; transform: rotate(2deg); opacity: .66; }
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,15,13,.99) 0%, rgba(15,15,13,.92) 38%, rgba(15,15,13,.40) 72%, rgba(15,15,13,.52) 100%),
    linear-gradient(0deg, rgba(15,15,13,.78) 0%, transparent 46%);
}
.hero-content,
.hero-foot { position: relative; z-index: 3; }
.home-hero .hero-content {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr);
  gap: 80px;
  align-items: end;
  min-height: 650px;
  padding: 78px 34px 92px;
}
.home-hero h1 {
  max-width: 880px;
  font-size: clamp(60px,6vw,94px);
  font-weight: 470;
  line-height: .98;
  letter-spacing: -.045em;
}
.home-hero h1 span,
.home-hero h1 em { display: block; }
.home-hero h1 em { margin-top: .06em; color: #e6a186; font-style: normal; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 630;
  letter-spacing: 0;
  text-transform: none;
}
.eyebrow i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 2px; background: var(--accent); }
.home-hero .eyebrow,
.page-hero .eyebrow { color: rgba(255,255,255,.72); }
.hero-offer { max-width: 390px; padding: 22px 0 8px; }
.hero-offer > p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.45; }
.hero-offer ul { display: grid; gap: 8px; margin: 24px 0 28px; padding: 0; list-style: none; font-family: var(--display); font-size: 14px; }
.hero-offer li::before { content: "+"; margin-right: 9px; color: #e6a186; }
.hero-foot {
  position: absolute;
  right: 34px;
  bottom: 25px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(3,minmax(100px,1fr)) 2fr;
  gap: 20px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 600;
}
.hero-foot b { color: #fff; margin-right: 5px; }
.work-note { justify-self: end; letter-spacing: .1em; text-transform: uppercase; }

.proof-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  gap: 50px;
  align-items: center;
  width: min(1444px, calc(100% - 80px));
  min-height: 122px;
  margin: -10px auto 0;
  padding: 24px 44px;
  border-radius: 0 0 16px 16px;
  background: var(--bg);
}
.proof-intro { display: flex; align-items: center; gap: 16px; }
.proof-mark { color: var(--accent); font-size: 31px; }
.proof-intro p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.35; text-transform: uppercase; }
.proof-intro b { color: var(--ink); }
.proof-projects { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.proof-projects article { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: baseline; }
.proof-projects span { grid-row: 1 / 3; color: var(--accent); font-size: 10px; font-weight: 800; }
.proof-projects strong { font-family: var(--display); font-size: 15px; }
.proof-projects small { color: var(--muted); font-size: 10px; }

.page-hero { padding: 0; min-height: 600px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(340px,.65fr);
  gap: 72px;
  align-items: end;
  width: min(1380px, calc(100% - 68px));
  min-height: 590px;
  padding: 66px 0 54px;
}
.page-hero.no-visual .page-hero-grid { grid-template-columns: minmax(0,900px); align-content: end; }
.page-hero-copy { position: relative; z-index: 2; max-width: 850px; }
.page-hero h1 { max-width: 890px; color: #fff; font-size: clamp(50px,6.2vw,88px); font-weight: 470; }
.page-hero .accent { color: #e6a186; }
.page-hero .lead { max-width: 720px; margin-top: 24px; color: rgba(255,255,255,.7); font-size: clamp(17px,1.7vw,21px); }
.page-hero .actions { margin-top: 28px; }
.page-hero-media {
  position: relative;
  z-index: 1;
  height: 470px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
  transform: rotate(1.4deg) translateY(55px);
}
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,20,18,.35), transparent 32%); pointer-events: none; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; }
.page-hero-media figcaption { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; color: #fff; font-size: 10px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.page-hero-work-grid {
  padding: 13px 13px 46px;
  background:
    radial-gradient(circle at 74% 18%,rgba(196,85,45,.24),transparent 34%),
    linear-gradient(145deg,#181815,#0d0d0c 72%);
}
.page-hero-work-grid::after {
  z-index: 4;
  background: linear-gradient(0deg,rgba(10,10,9,.88) 0,rgba(10,10,9,.12) 18%,transparent 36%);
}
.work-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-template-rows: repeat(2,minmax(0,1fr));
  gap: 11px;
  height: 100%;
}
.work-hero-site {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: #f5f4f0;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  color: #fff;
  transform: translateZ(0);
}
.work-hero-browser {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 25px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(20,20,18,.1);
  background: rgba(248,247,243,.94);
  color: rgba(20,20,18,.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.work-hero-browser i { width: 4px; height: 4px; border-radius: 50%; background: #c4552d; }
.work-hero-browser i:nth-child(2) { background: #e4a15a; }
.work-hero-browser i:nth-child(3) { background: #668f77; }
.work-hero-browser b { overflow: hidden; margin-left: 4px; font-size: 7px; font-weight: 700; letter-spacing: .03em; text-overflow: ellipsis; white-space: nowrap; }
.work-hero-shot { position: absolute; inset: 25px 0 0; overflow: hidden; background: #fff; }
.page-hero-work-grid .work-hero-shot img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: unset;
  transform: translate3d(0,0,0);
  animation: work-hero-site-scroll 15s var(--work-shot-delay,0s) cubic-bezier(.65,0,.35,1) infinite alternate;
  will-change: transform;
}
.work-hero-name {
  position: absolute;
  z-index: 3;
  right: 7px;
  bottom: 7px;
  left: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(14,14,13,.78);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease,transform .25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.work-hero-site:hover .work-hero-name,
.work-hero-site:focus-visible .work-hero-name { opacity: 1; transform: translateY(0); }
.work-hero-name i { color: #e6a186; font-style: normal; }
.page-hero-work-grid figcaption { z-index: 5; }
.quick-facts { margin-top: 24px; }
.quick-facts span { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: rgba(255,255,255,.63); }

.intro-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 110px; align-items: start; }
.intro-grid h2 { max-width: 760px; font-size: clamp(46px,5vw,74px); }
.scroll-reveal-text .scroll-word {
  color: var(--ink);
  opacity: var(--word-opacity, .24);
  will-change: opacity;
}
.intro-grid .lead { margin-bottom: 18px; }
.intro-grid > div:last-child > p:not(.lead) { color: var(--muted); }
.intro-grid .actions { margin-top: 28px; }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); text-decoration: none; font-size: 13px; font-weight: 720; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-text .scroll-word { opacity: 1 !important; }
}

.signal-strip { background: var(--bg); border-color: var(--line); }
.signal-grid .signal-item { border-color: var(--line); }
.signal-grid .signal-copy strong { font-family: var(--display); font-size: 17px; }

.section-head { margin-bottom: 48px; }
.section-head h2 { max-width: 830px; }
.section-head > p { max-width: 470px; }
.section-head.light h2,
.section-dark h2,
.section-green h2 { color: #fff; }

.service-card,
.price-card,
.plain-card,
.feature,
.problem-item,
details,
.work-card,
.table-wrap { border-color: var(--line); border-radius: var(--radius); background: var(--surface); }
.service-card,
.price-card,
.plain-card { padding: 30px; }
.service-card { min-height: 285px; }
.service-card h3 { margin-top: 44px; font-size: 26px; }
.service-card:hover { border-color: var(--accent); box-shadow: 0 16px 40px rgba(20,20,18,.07); }
.service-card.dark { background: var(--dark-soft); border-color: rgba(255,255,255,.12); }
.tag { border-radius: 4px; }
.tag.green { color: #e6a186; background: rgba(196,85,45,.18); }

.service-visual-grid { gap: 22px; align-items: stretch; }
.service-card.service-card-visual {
  min-height: 0;
  padding: 0;
  border-radius: 22px;
  background: #f7f4ee;
}
.service-card-visual .service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 275px;
  padding: 28px 30px 30px;
}
.service-card-kicker { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.shopify-partner-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 40px;
  margin-top: -5px;
  padding: 7px 12px 7px 9px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: #fff;
  color: #171715;
  box-shadow: 0 10px 24px rgba(66,26,12,.18);
}
.shopify-partner-badge svg { width: 25px; height: 25px; color: #95bf47; }
.shopify-partner-badge strong { margin-left: 7px; font-size: 12px; font-weight: 750; letter-spacing: -.01em; }
.shopify-partner-badge > span { width: 1px; height: 17px; margin: 0 8px; background: rgba(20,20,18,.18); }
.shopify-partner-badge small { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-card-visual h3 { margin-top: 28px; font-size: 30px; }
.service-card-visual p { max-width: 31ch; margin: 13px 0 25px; line-height: 1.55; }
.service-card-visual a { width: fit-content; }
.service-card-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin: 0 14px 14px;
  border: 1px solid rgba(20,20,18,.08);
  border-radius: 17px;
  background: #eee8de;
}
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.service-card-visual:hover .service-card-media img { transform: scale(1.025); }
.service-card-media--real { position: relative; background: #171715; }
.service-card-visual:hover .service-card-media--real img { transform: none; }

.real-work-mockup {
  --real-accent: #c4552d;
  --real-accent-soft: #e6a186;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 205px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%,color-mix(in srgb,var(--real-accent) 42%,transparent),transparent 34%),
    radial-gradient(circle at 88% 92%,color-mix(in srgb,var(--real-accent-soft) 24%,transparent),transparent 35%),
    linear-gradient(145deg,#10100f 0%,#20201e 58%,#11110f 100%);
  perspective: 1100px;
}
.real-work-mockup--violet { --real-accent:#6856c7; --real-accent-soft:#c8bdf4; }
.real-work-mockup--green { --real-accent:#247761; --real-accent-soft:#9bd9c7; }
.real-work-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(145deg,#000,transparent 76%);
  transform: perspective(700px) rotateX(61deg) scale(1.25) translateY(24%);
  transform-origin: center bottom;
}
.real-work-glow {
  position: absolute;
  z-index: -1;
  top: 23%;
  left: 16%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb,var(--real-accent) 38%,transparent);
  filter: blur(44px);
  animation: real-glow 7s ease-in-out infinite;
}
.real-laptop {
  position: absolute;
  z-index: 2;
  top: 13%;
  left: 7%;
  width: 76%;
  transform: rotateX(4deg) rotateY(-9deg) rotateZ(-3deg);
  transform-style: preserve-3d;
  animation: real-laptop-float 7s ease-in-out infinite;
}
.real-laptop-lid {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 2.4%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 5.2% 5.2% 2.6% 2.6%;
  background: linear-gradient(145deg,#3b3b3c,#09090a 38%,#282829);
  box-shadow: 0 28px 55px rgba(0,0,0,.48),0 0 0 1px rgba(0,0,0,.75);
}
.real-laptop-camera { position: absolute; z-index: 3; top: .8%; left: 50%; width: 1.4%; aspect-ratio: 1; border-radius: 50%; background: #080809; transform: translateX(-50%); }
.real-laptop-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 3%; background: #fff; }
.real-laptop-screen::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.15); background: linear-gradient(115deg,rgba(255,255,255,.18),transparent 26%); content: ""; pointer-events: none; }
.real-work-mockup .real-laptop-screen img,
.service-card-media--real .real-laptop-screen img,
.page-hero-media--real .real-laptop-screen img,
.mega-feature--real .real-laptop-screen img { display: block; width: 100%; height: auto; min-height: 100%; object-fit: cover; object-position: top; opacity: 1; transform: none; }
.real-laptop-base {
  position: relative;
  width: 106%;
  height: 8px;
  margin-left: -3%;
  border-radius: 0 0 55% 55%;
  background: linear-gradient(180deg,#bbb 0%,#4f4f51 32%,#171719 100%);
  box-shadow: 0 15px 25px rgba(0,0,0,.38);
  transform: rotateX(69deg) translateY(-1px);
  transform-origin: top;
}
.real-laptop-base span { display: block; width: 14%; height: 2px; margin: 0 auto; border-radius: 0 0 8px 8px; background: #858587; }
.real-phone {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 3%;
  width: 23%;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.48));
  transform: rotateX(2deg) rotateY(-12deg) rotateZ(8deg);
  transform-style: preserve-3d;
  animation: real-phone-float 6.4s -1.2s ease-in-out infinite;
}
.real-phone-shell { position: relative; aspect-ratio: 9 / 19.2; padding: 5%; overflow: hidden; border: 1px solid rgba(255,255,255,.4); border-radius: 18% / 8.5%; background: linear-gradient(145deg,#434345,#0a0a0b 37%,#242426); box-shadow: inset 0 0 0 1px rgba(0,0,0,.65); }
.real-phone-screen { width: 100%; height: 100%; overflow: hidden; border-radius: 15% / 7%; background: #fff; }
.real-work-mockup .real-phone-screen img,
.service-card-media--real .real-phone-screen img,
.page-hero-media--real .real-phone-screen img,
.mega-feature--real .real-phone-screen img { display: block; width: 100%; height: auto; min-height: 100%; object-fit: cover; object-position: top; opacity: 1; transform: none; }
.real-phone-island { position: absolute; z-index: 3; top: 2.8%; left: 50%; width: 34%; height: 3.2%; border-radius: 99px; background: #050506; transform: translateX(-50%); }
.real-work-label { position: absolute; z-index: 6; display: flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(14,14,13,.78); color: #fff; box-shadow: 0 8px 18px rgba(0,0,0,.24); backdrop-filter: blur(8px); }
.real-work-label i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--real-accent-soft); box-shadow: 0 0 10px var(--real-accent); }
.real-work-label span { display: flex; align-items: baseline; gap: 5px; min-width: 0; }
.real-work-label strong { overflow: hidden; font-family: var(--display); font-size: 8px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.real-work-label small { color: rgba(255,255,255,.46); font-size: 6px; text-transform: uppercase; letter-spacing: .08em; }
.real-work-label-desktop { left: 5%; bottom: 7%; }
.real-work-label-phone { right: 3%; top: 7%; }
.mega-feature--real { grid-template-rows: minmax(0,1fr) auto; }
.mega-feature--real .real-work-mockup { min-height: 215px; }
.page-hero-media--real { background: #121210; }
.page-hero-media--real::after { z-index: 8; }
.page-hero-media--real .real-work-mockup { height: 100%; min-height: 100%; }
.page-hero-media--real figcaption { z-index: 9; }

@keyframes real-laptop-float { 0%,100% { transform: rotateX(4deg) rotateY(-9deg) rotateZ(-3deg) translate3d(0,0,0); } 50% { transform: rotateX(3deg) rotateY(-7deg) rotateZ(-2.4deg) translate3d(0,-5px,0); } }
@keyframes real-phone-float { 0%,100% { transform: rotateX(2deg) rotateY(-12deg) rotateZ(8deg) translate3d(0,0,14px); } 50% { transform: rotateX(1deg) rotateY(-9deg) rotateZ(6.5deg) translate3d(-3px,-7px,22px); } }
@keyframes real-glow { 0%,100% { opacity: .66; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.08); } }
.service-card.service-card-featured { border-color: var(--accent); background: var(--accent); color: #fff; }
.service-card-featured .number { color: rgba(255,255,255,.76); }
.service-card-featured p { color: rgba(255,255,255,.82); }
.service-card-featured a { color: #fff; }
.service-card-featured a::after { color: #fff; }
.service-card-featured .service-card-media { border-color: rgba(255,255,255,.32); }

.problem-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.problem-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 52%;
  left: -310px;
  width: min(54vw,760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 29% 27%, rgba(244,181,143,.98) 0 17%, rgba(231,139,94,.78) 31%, transparent 55%),
    radial-gradient(circle at 72% 30%, rgba(196,85,45,.92) 0 23%, rgba(164,64,35,.55) 43%, transparent 64%),
    radial-gradient(circle at 70% 76%, rgba(100,39,28,.88) 0 19%, rgba(143,52,30,.5) 39%, transparent 62%),
    radial-gradient(circle at 28% 72%, rgba(229,119,70,.84) 0 24%, rgba(242,165,117,.44) 46%, transparent 66%);
  filter: blur(42px) saturate(1.06);
  opacity: .26;
  transform: translate3d(0,-50%,0) scale(.96) rotate(-5deg);
  transform-origin: 50% 50%;
  -webkit-mask-image: radial-gradient(circle, #000 0 43%, rgba(0,0,0,.9) 55%, rgba(0,0,0,.32) 68%, transparent 80%);
  mask-image: radial-gradient(circle, #000 0 43%, rgba(0,0,0,.9) 55%, rgba(0,0,0,.32) 68%, transparent 80%);
  animation: problem-orb-breathe 11s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, opacity;
}
.problem-section > .container { position: relative; z-index: 1; }

@keyframes problem-orb-breathe {
  0% { opacity: .21; transform: translate3d(0,-50%,0) scale(.96) rotate(-5deg); }
  100% { opacity: .31; transform: translate3d(34px,-52%,0) scale(1.055) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .problem-section::before { animation: none; opacity: .26; transform: translate3d(0,-50%,0); }
}

.portfolio-grid { gap: 20px; }
.work-card figure { aspect-ratio: 4 / 5; }
.work-card div { padding: 19px 20px 21px; }
.work-card h3 { font-size: 21px; }
.work-card p { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.section-work { background: #f0ede7; }
.project-overview-link { display: inline-flex; width: fit-content; margin-top: 18px; }
.project-filter-panel {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
  margin: -8px 0 28px;
}
.project-filter-group {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.5);
}
.project-filter-group > span {
  display: block;
  margin: 0 4px 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-filter-group > div { display: flex; flex-wrap: wrap; gap: 7px; }
.project-filter-group button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font: 700 10.5px/1 var(--body);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.project-filter-group button:hover { border-color: var(--accent); color: var(--ink); }
.project-filter-group button.active { border-color: var(--dark); background: var(--dark); color: #fff; }
.project-filter-group button span { opacity: .55; font-size: 9px; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}
.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(20,20,18,0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.project-card[hidden] { display: none; }
.project-card:hover { transform: translateY(-4px); border-color: rgba(196,85,45,.38); box-shadow: 0 22px 46px rgba(20,20,18,.10); }
.project-card-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
  cursor: zoom-in;
}
.project-card-preview:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.project-browser { display: block; overflow: hidden; border-bottom: 1px solid var(--line); background: #e9e6df; }
.project-browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #f3f0ea;
}
.project-browser-bar > i {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d1c8;
}
.project-browser-bar > span {
  min-width: 0;
  max-width: 210px;
  overflow: hidden;
  margin: 0 auto;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.86);
  color: var(--muted);
  font: 650 10.5px/1 var(--body);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-shot {
  --project-shot-height: 300px;
  position: relative;
  display: block;
  height: var(--project-shot-height);
  overflow: hidden;
  background: #e9e6df;
}
.project-thumb {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform 7s cubic-bezier(.33,0,.2,1);
  will-change: transform;
}
.project-scroll-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(20,20,18,.72);
  color: #fff;
  font: 750 9px/1 var(--body);
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (hover:hover) and (pointer:fine) {
  .project-card:hover .project-thumb,
  .project-card:focus-within .project-thumb { transform: translateY(calc(var(--project-shot-height) - 100%)); }
  .project-card:hover .project-scroll-hint,
  .project-card:focus-within .project-scroll-hint { opacity: 1; transform: none; }
}
.project-card-body { display: flex; min-height: 236px; flex-direction: column; padding: 20px; }
.project-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.project-card-heading h3 { font-size: 22px; line-height: 1.05; }
.project-card-heading p { margin-top: 6px; color: var(--accent-dark); font-size: 10px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.project-domain { flex: 0 0 auto; max-width: 42%; overflow: hidden; color: var(--muted); font-size: 9.5px; text-overflow: ellipsis; white-space: nowrap; }
.project-description { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.project-market-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 12px 0 18px; }
.project-market-tags span { padding: 5px 7px; border-radius: 999px; background: var(--accent-soft); color: var(--muted); font-size: 8px; font-weight: 750; letter-spacing: .035em; }
.project-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.project-card-actions button,
.project-card-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 750 11px/1 var(--body);
  text-decoration: none;
  cursor: pointer;
}
.project-card-actions button { background: var(--bg); color: var(--ink); }
.project-card-actions button:hover { border-color: var(--ink); }
.project-card-actions a { gap: 6px; border-color: var(--accent); background: var(--accent); color: #fff; }
.project-card-actions a:hover { border-color: var(--accent-dark); background: var(--accent-dark); }

/* SEO page: visual product story instead of repeated generic card sections. */
.seo-plan-section { overflow: hidden; background: #f1eee8; }
.seo-editorial-head { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.55fr); gap: 60px; align-items: end; margin-bottom: 48px; }
.seo-editorial-head h2 { max-width: 760px; margin-top: 12px; }
.seo-editorial-head > p { max-width: 440px; color: var(--muted); }
.seo-plan-layout { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(300px,.55fr); gap: 28px; align-items: stretch; }
.seo-dashboard-frame { position: relative; margin: 0; overflow: hidden; border-radius: 26px; }
.seo-dashboard-frame img { display: block; width: 100%; height: auto; }
.seo-dashboard-frame figcaption { padding: 11px 14px 3px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.seo-dashboard-frame-light { padding: 10px 10px 9px; border: 1px solid rgba(20,20,18,.12); background: #fff; box-shadow: 0 26px 70px rgba(20,20,18,.13); transform: rotate(-.35deg); }
.seo-dashboard-frame-light img { border-radius: 18px; }
.seo-plan-points { display: flex; flex-direction: column; justify-content: center; }
.seo-plan-points article { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 15px; padding: 24px 0; border-bottom: 1px solid rgba(20,20,18,.13); }
.seo-plan-points article:first-child { padding-top: 0; }
.seo-plan-points article:last-child { padding-bottom: 0; border-bottom: 0; }
.seo-plan-points article > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--dark); color: #fff; font-size: 9px; font-weight: 800; }
.seo-plan-points article:nth-child(2) > span { background: #6554bd; }
.seo-plan-points article:nth-child(3) > span { background: #287a65; }
.seo-plan-points h3 { font-size: 22px; }
.seo-plan-points p { margin-top: 6px; color: var(--muted); font-size: 13.5px; }
.seo-measure-section { position: relative; overflow: hidden; }
.seo-measure-section::before { position: absolute; top: -230px; left: 46%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle,rgba(196,85,45,.28),transparent 68%); content: ""; filter: blur(18px); pointer-events: none; }
.seo-measure-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(320px,.65fr) minmax(0,1.35fr); gap: 58px; align-items: center; }
.seo-measure-copy h2 { max-width: 650px; margin-top: 12px; color: #fff; }
.seo-measure-copy > p { max-width: 550px; margin-top: 20px; color: rgba(255,255,255,.62); }
.seo-measure-copy ul { display: grid; gap: 0; margin-top: 34px; padding: 0; list-style: none; }
.seo-measure-copy li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-size: 13px; }
.seo-measure-copy li span { color: #e6a186; font-size: 9px; font-weight: 800; }
.seo-dashboard-frame-dark { padding: 9px 9px 10px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.055); box-shadow: 0 34px 90px rgba(0,0,0,.46); transform: rotate(.4deg); }
.seo-dashboard-frame-dark img { border-radius: 18px; }
.seo-dashboard-frame-dark figcaption { color: rgba(255,255,255,.48); }
.seo-process-section { background: var(--surface); }
.seo-process-track { position: relative; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--bg); }
.seo-process-track::before { position: absolute; top: 52px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg,var(--accent),#6554bd,#287a65); content: ""; opacity: .36; }
.seo-process-track article { position: relative; z-index: 1; min-height: 250px; padding: 34px 32px; border-right: 1px solid var(--line); }
.seo-process-track article:nth-child(3) { border-right: 0; }
.seo-process-track article > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid color-mix(in srgb,var(--accent) 48%,var(--line)); border-radius: 50%; background: var(--surface); color: var(--accent); font-size: 9px; font-weight: 800; box-shadow: 0 0 0 8px var(--bg); }
.seo-process-track article:nth-child(2) > span { border-color: #6554bd; color: #6554bd; }
.seo-process-track article:nth-child(3) > span { border-color: #287a65; color: #287a65; }
.seo-process-track h3 { margin-top: 42px; font-size: 26px; }
.seo-process-track p { max-width: 30ch; margin-top: 10px; color: var(--muted); font-size: 13.5px; }
.seo-process-track > .button { grid-column: 1 / -1; margin: 0 18px 18px; justify-content: center; }
.seo-ai-callout { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 40px; align-items: end; margin-top: 26px; padding: 38px 40px; overflow: hidden; border: 1px solid rgba(196,85,45,.24); border-radius: 24px; background: linear-gradient(120deg,#fff4ee,#f5f0ff 56%,#e9f5f1); }
.seo-ai-callout::after { position: absolute; right: -55px; bottom: -90px; width: 190px; height: 190px; border: 1px solid rgba(196,85,45,.24); border-radius: 50%; content: ""; }
.seo-ai-callout > * { position: relative; z-index: 1; }
.seo-ai-callout h3 { max-width: 720px; margin-top: 10px; font-size: clamp(28px,3vw,42px); }
.seo-ai-callout p:not(.eyebrow) { max-width: 720px; margin-top: 12px; color: var(--muted); }
@media (max-width: 1040px) {
  .seo-plan-layout,
  .seo-measure-layout { grid-template-columns: 1fr; }
  .seo-plan-points { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
  .seo-plan-points article { grid-template-columns: 40px minmax(0,1fr); padding: 22px 0 0; border-top: 1px solid rgba(20,20,18,.13); border-bottom: 0; }
  .seo-plan-points article:first-child { padding-top: 22px; }
}
@media (max-width: 780px) {
  .seo-editorial-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
  .seo-plan-layout { gap: 26px; }
  .seo-dashboard-frame { border-radius: 18px; }
  .seo-dashboard-frame-light,
  .seo-dashboard-frame-dark { padding: 6px; transform: none; }
  .seo-dashboard-frame-light img,
  .seo-dashboard-frame-dark img { border-radius: 13px; }
  .seo-plan-points { grid-template-columns: 1fr; gap: 0; }
  .seo-plan-points article { padding: 18px 0; }
  .seo-plan-points article:first-child { padding-top: 18px; }
  .seo-measure-layout { gap: 34px; }
  .seo-process-track { grid-template-columns: 1fr; }
  .seo-process-track::before { top: 36px; bottom: 110px; left: 49px; width: 1px; height: auto; }
  .seo-process-track article { min-height: 0; padding: 26px 26px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .seo-process-track article:nth-child(3) { border-bottom: 0; }
  .seo-process-track h3 { margin: -34px 0 0 58px; font-size: 23px; }
  .seo-process-track p { margin: 8px 0 0 58px; }
  .seo-process-track > .button { grid-column: auto; }
  .seo-ai-callout { grid-template-columns: 1fr; gap: 22px; padding: 30px 26px; }
}

/* Websites page: project proof first, then an editorial alternative to another card grid. */
.website-showcase { padding-top: 132px; padding-bottom: 98px; }
.website-showcase-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.5fr); gap: 42px; align-items: end; margin-bottom: 42px; }
.website-showcase-head h2 { max-width: 690px; margin-top: 12px; }
.website-showcase-head > p { max-width: 390px; color: var(--muted); }
.website-showcase .project-grid { grid-template-columns: 1.22fr .89fr .89fr; gap: 16px; }
.website-showcase .project-card:first-child { grid-row: span 1; }
.website-showcase .project-card:first-child .project-shot { --project-shot-height: 390px; }
.website-showcase .project-card:first-child .project-card-body { min-height: 208px; }
.website-showcase .project-card:not(:first-child) .project-shot { --project-shot-height: 270px; }
.website-principles-section { background: var(--surface); }
.website-principles { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.website-principles::before { content: ""; position: absolute; top: 23px; bottom: 23px; left: 19px; width: 1px; background: linear-gradient(var(--accent),var(--line) 24%,var(--line) 76%,var(--accent)); }
.website-principles li { position: relative; display: grid; grid-template-columns: 62px minmax(0,1fr); gap: 19px; padding: 20px 0 26px; border-bottom: 1px solid var(--line); }
.website-principles li:last-child { padding-bottom: 0; border-bottom: 0; }
.website-principles li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--accent); font: 800 10px/1 var(--body); letter-spacing: .04em; }
.website-principles h3 { font-size: clamp(20px,2.1vw,27px); letter-spacing: -.035em; }
.website-principles p { max-width: 48ch; margin-top: 7px; color: var(--muted); }
.website-principles li:hover > span { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 0 0 7px var(--accent-soft); }
.website-principles li > span { transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.project-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 3vh 3vw;
  background: rgba(20,20,18,.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.project-modal[hidden] { display: none; }
.project-modal-frame {
  width: min(1420px,94vw);
  height: min(92dvh,940px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  animation: project-modal-in .26s cubic-bezier(.2,.7,.2,1);
}
@keyframes project-modal-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
.project-modal-bar {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto minmax(110px,auto) minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  background: #f3f0ea;
}
.project-modal-bar button,
.project-modal-bar a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: 750 11px/1 var(--body);
  text-decoration: none;
  cursor: pointer;
}
.project-modal-bar a { border-color: var(--accent); background: var(--accent); color: #fff; }
.project-modal-bar strong { font-family: var(--display); font-size: 15px; }
.project-modal-bar > span { min-width: 0; overflow: hidden; color: var(--muted); font-size: 11px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.project-modal-body { flex: 1; overflow: auto; overscroll-behavior: contain; background: #ddd8cf; text-align: center; }
.project-modal-body img { width: min(1100px,100%); height: auto; display: block; margin: 0 auto; background: #fff; }
body.project-modal-open { overflow: hidden; }
.work-profile-cta--wide { width: 100%; min-height: 560px; }
.route-werk .portfolio-grid { grid-template-columns: repeat(12,1fr); }
.route-werk .work-card,
.route-werk .work-profile-cta { grid-column: span 4; }
.route-werk .work-card--wide { grid-column: span 8; }
.route-werk .work-card--wide figure { aspect-ratio: 16 / 10; }
.work-profile-cta {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--accent-dark);
  color: white;
  isolation: isolate;
}
.work-profile-cta > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 50%;
  transition: transform .6s ease;
}
.work-profile-cta:hover > img { transform: scale(1.025); }
.work-profile-cta::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg,rgba(20,20,18,.28) 0%,rgba(20,20,18,0) 34%,rgba(20,20,18,.92) 78%,rgba(20,20,18,.98) 100%),
    linear-gradient(135deg,rgba(162,68,35,.18),transparent 54%);
  pointer-events: none;
}
.work-profile-cta__meta,
.work-profile-cta__content { position: absolute; z-index: 2; right: 22px; left: 22px; }
.work-profile-cta__meta {
  top: 22px;
  width: max-content;
  max-width: calc(100% - 44px);
  display: grid;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(20,20,18,.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.work-profile-cta__meta strong { font-size: 12px; line-height: 1.25; }
.work-profile-cta__meta span { color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.35; }
.work-profile-cta__content { bottom: 24px; }
.work-profile-cta__content .eyebrow { margin-bottom: 9px; color: #ef9a76; }
.work-profile-cta__content h3 { max-width: 320px; font-size: clamp(30px,2.7vw,39px); line-height: 1.02; }
.work-profile-cta__content > p:not(.eyebrow) { max-width: 300px; margin: 13px 0 21px; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.5; }
.work-profile-cta__content .button { padding: 11px 15px; font-size: 11px; }
.showcase-grid { grid-template-columns: repeat(3,1fr); }

.steps { border-radius: var(--radius); }
.step { min-height: 260px; }
.step span { color: #e6a186; }
.ownership-list li::before { background: var(--accent-soft); color: var(--accent-dark); }
.flow-diagram { gap: 10px; }
.diagram-node { border-radius: 12px; background: rgba(255,255,255,.055); }
.diagram-node:not(:last-child)::after { color: #e6a186; }

.price-grid.single-price,
.single-price { grid-template-columns: minmax(300px,560px); }
.price-card.featured { transform: none; background: var(--dark); border-color: var(--dark); }
.price-card .price { font-size: clamp(32px,3vw,43px); }
.section-dark .price-card.featured { border-color: rgba(255,255,255,.16); background: var(--dark-soft); }
.concept-note { border-color: #e1b6a4; background: #f5e4dc; }

.cta-panel { border-radius: 18px; background: var(--accent); }
.contact-card { border-radius: 18px; }
.field input,
.field textarea,
.field select { border-radius: 9px; }

.site-footer { padding-top: 70px; background: var(--dark); }
.site-footer .brand { width: 190px; }
.footer-intro p { max-width: 420px; }
.footer-platforms {
  display: grid;
  grid-template-columns: minmax(180px,.6fr) minmax(0,2.4fr);
  gap: 34px;
  align-items: start;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.footer-platforms-head { max-width: 260px; }
.footer-platforms-kicker {
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-platforms-head > p:last-child {
  margin-top: 7px;
  color: rgba(255,255,255,.43);
  font-size: 12px;
  line-height: 1.5;
}
.footer-platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.footer-platform-label {
  min-width: 0;
  min-height: 44px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.82);
}
.footer-platform-label:hover { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.055); }
.footer-platform-label strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.25;
}
.footer-platform-label small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.44);
  font-size: 7.5px;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-platform-mark {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.footer-platform-mark img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.footer-platform-mark--light { background: #fff; }
.footer-platform-mark--dark { background: #252523; }
.footer-platform-divider { flex: 0 0 1px; width: 1px; height: 22px; background: rgba(255,255,255,.18); }
.footer-platform-lockup-shopify { display: block; width: 78px; height: auto; }
.footer-platform-lockup-meta { display: block; width: 58px; height: 26px; object-fit: contain; }
.footer-platform-label--shopify strong,
.footer-platform-label--meta strong { color: #fff; font-family: var(--display); font-size: 11px; }
.footer-bottom { margin-top: 30px; }

@media (max-width: 1120px) {
  .nav-entry { font-size: 11.5px; }
  .nav-primary-link { padding-left: 8px; }
  .nav-trigger { min-width: 24px; padding-right: 8px; }
  .brand { width: 160px; }
  .header-inner { margin-inline: 24px; }
  .page-hero-grid { grid-template-columns: minmax(0,1fr) minmax(300px,.55fr); gap: 44px; }
}

@media (min-width: 1041px) and (max-width: 1120px) {
  .nav-panel { width: calc(100vw - 40px); }
  .nav-panel-surface { grid-template-columns: 190px 220px minmax(0,1fr); gap: 12px; padding: 14px; }
  .mega-title { font-size: 20px; }
  .mega-intro p { font-size: 11px; }
  .mega-link-group > a { padding: 8px; }
  .mega-project-image { min-height: 170px; }
}

@media (max-width: 1040px) {
  .header-inner { min-height: 72px; }
  .brand { width: 170px; }
  .header-actions .button { display: inline-flex; }
  .home-hero .hero-content { grid-template-columns: 1fr; gap: 36px; align-content: end; }
  .hero-offer { max-width: 540px; }
  .work-shot-main { width: 74%; right: -8%; opacity: .67; }
  .hero-shade { background: linear-gradient(90deg,rgba(15,15,13,.98) 0%,rgba(15,15,13,.84) 62%,rgba(15,15,13,.56) 100%); }
  .page-hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .page-hero-media { position: absolute; right: -7%; bottom: -10%; width: 54%; height: 92%; opacity: .34; transform: rotate(3deg); }
  .page-hero-media--real { opacity: .55; }
  .page-hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,var(--dark) 0%,rgba(20,20,18,.92) 54%,rgba(20,20,18,.56) 100%); pointer-events: none; }
  .page-hero-copy { z-index: 3; }
  .proof-strip { grid-template-columns: 1fr; gap: 20px; }
  .service-visual-grid { grid-template-columns: repeat(2,1fr); }
  .route-werk .work-card,
  .route-werk .work-card--wide,
  .route-werk .work-profile-cta { grid-column: span 6; }
  .route-werk .work-card--wide figure { aspect-ratio: 4 / 5; }
}

@media (max-width: 780px) {
  .site-header,
  .home-hero,
  .page-hero { width: calc(100% - 18px); border-width: 6px; }
  .site-header { border-radius: 20px 20px 0 0; }
  .header-inner { margin-inline: 14px; min-height: 66px; }
  .brand { width: 148px; }
  .header-actions .button { display: none; }
  .home-hero { min-height: 760px; }
  .home-hero .hero-content { min-height: 0; padding: 72px 20px 112px; align-content: start; gap: 28px; }
  .home-hero h1 { max-width: 600px; font-size: clamp(43px,11.5vw,54px); line-height: .98; letter-spacing: -.05em; }
  .home-hero h1 em { margin-top: .1em; }
  .home-hero .eyebrow { margin-bottom: 14px; font-size: 10px; }
  .hero-offer { max-width: 520px; padding: 0; }
  .hero-offer > p { font-size: 15px; }
  .hero-offer ul { gap: 6px; margin: 18px 0 22px; }
  .home-hero .hero-offer .actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .home-hero .hero-offer .button { width: 100%; justify-content: space-between; }
  .hero-foot { right: 20px; bottom: 20px; left: 20px; grid-template-columns: repeat(3,1fr); }
  .work-note { display: none; }
  .work-shot-main { width: 110%; height: 108%; right: -44%; opacity: .44; }
  .work-shot-top,
  .work-shot-bottom { display: none; }
  .proof-strip { width: calc(100% - 54px); margin-top: -6px; padding: 24px 20px; }
  .proof-projects { grid-template-columns: 1fr; gap: 16px; }
  .intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-visual-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card-visual .service-card-body { min-height: 235px; padding: 24px 24px 26px; }
  .service-card-visual h3 { margin-top: 23px; font-size: 28px; }
  .service-card-media { margin: 0 10px 10px; border-radius: 15px; }
  .problem-section::before { top: 35%; left: -320px; width: 480px; opacity: .2; }
  .page-hero { min-height: 590px; }
  .page-hero-grid { width: calc(100% - 40px); min-height: 580px; padding: 70px 0 50px; }
  .page-hero h1 { font-size: clamp(44px,11vw,62px); }
  .website-showcase { padding-top: 88px; }
  .page-hero-media { right: -35%; width: 88%; opacity: .28; }
  .page-hero-media--real { right: -29%; width: 92%; opacity: .4; }
  .route-werk .portfolio-grid { grid-template-columns: 1fr; }
  .route-werk .work-card,
  .route-werk .work-card--wide,
  .route-werk .work-profile-cta { grid-column: 1; }
  .showcase-grid { grid-template-columns: 1fr; }
  .price-grid.single-price,
  .single-price { grid-template-columns: 1fr !important; }
}

@media (max-width: 520px) {
  .container,
  .container.wide { width: calc(100% - 28px); }
  .section { padding: 76px 0; }
  .home-hero { min-height: 790px; }
  .home-hero .hero-content { padding: 58px 16px 106px; gap: 24px; }
  .home-hero h1 { font-size: clamp(41px,11.4vw,49px); }
  .hero-offer > p { line-height: 1.5; }
  .hero-offer ul { font-size: 13px; }
  .page-hero h1 { font-size: 44px; }
  .page-hero .lead { font-size: 16px; }
  .quick-facts span { font-size: 10.5px; }
  .footer-grid { gap: 28px; }
  .contact-cards { grid-template-columns: 1fr; }
  .work-profile-cta { min-height: 540px; }
  .work-profile-cta__meta,
  .work-profile-cta__content { right: 18px; left: 18px; }
  .work-profile-cta__content .button { width: 100%; justify-content: center; }
}

@media (max-width: 1040px) {
  .project-filter-panel { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-shot { --project-shot-height: 280px; }
}

@media (max-width: 780px) {
  .project-filter-group > div { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
  .project-filter-group > div::-webkit-scrollbar { display: none; }
  .project-filter-group button { flex: 0 0 auto; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-body { min-height: 0; }
  .project-shot { --project-shot-height: 280px; }
  .project-scroll-hint { display: none; }
  .project-modal { padding: 0; }
  .project-modal-frame { width: 100vw; height: 100dvh; border: 0; border-radius: 0; }
  .project-modal-bar { grid-template-columns: auto minmax(0,1fr) auto; gap: 8px; }
  .project-modal-bar > span { display: none; }
  .project-modal-bar strong { overflow: hidden; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
  .work-profile-cta--wide { min-height: 600px; }
  .footer-platforms { grid-template-columns: 1fr; gap: 18px; }
  .footer-platforms-head { max-width: 340px; }
}

@media (max-width: 520px) {
  .footer-platforms-list { gap: 7px; }
  .footer-platform-label { min-height: 42px; padding: 6px 9px; }
  .footer-platform-mark { flex-basis: 28px; width: 28px; height: 28px; }
  .footer-platform-mark img { width: 17px; height: 17px; }
  .footer-platform-lockup-shopify { width: 74px; }
  .footer-platform-lockup-meta { width: 54px; height: 24px; }
  .real-work-label { display: none; }
  .real-laptop { top: 16%; left: 3%; width: 82%; }
  .real-phone { right: 3%; width: 25%; }
}

@media (prefers-reduced-motion: reduce) {
  .project-card,
  .project-thumb,
  .project-scroll-hint { transition: none !important; }
  .project-thumb { transform: none !important; }
  .project-modal-frame { animation: none; }
  .signal-icon,
  .signal-vector-main,
  .signal-vector-detail,
  .signal-vector-dot,
  .signal-vector-spark { animation: none !important; }
  .signal-vector-main,
  .signal-vector-detail { stroke-dashoffset: 0; }
  .real-laptop,
  .real-phone,
  .real-work-glow { animation: none !important; }
}

/* App-like primary navigation for phones */
.mobile-bottom-nav { display: none; }

@media (max-width: 780px) {
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 130;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    width: min(calc(100% - 20px),520px);
    min-height: 68px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(20,20,18,.94);
    box-shadow: 0 18px 48px rgba(20,20,18,.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(-50%);
  }

  .mobile-bottom-nav a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 56px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 17px;
    color: rgba(255,255,255,.56);
    font-size: 9px;
    font-weight: 720;
    letter-spacing: .01em;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-bottom-nav a::after {
    position: absolute;
    right: 17px;
    bottom: 4px;
    left: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-bottom-nav a[aria-current="page"] {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 20px rgba(162,68,35,.32);
    transform: translateY(-1px);
  }

  .mobile-bottom-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .mobile-bottom-icon {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
  }

  .mobile-bottom-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bottom-nav a,
  .mobile-bottom-nav a::after { transition: none !important; }
}

/* Site-wide visual layer: animated gradients, UI motion and graphic cards */
.page-hero-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-atmosphere::before,
.page-hero-atmosphere::after {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  content: "";
  filter: blur(24px);
  opacity: .34;
  will-change: transform;
}
.page-hero-atmosphere::before {
  top: -250px;
  left: 34%;
  background: radial-gradient(circle at 35% 35%,#ff9c72 0,#c4552d 30%,rgba(196,85,45,0) 72%);
  animation: ambient-drift-one 12s ease-in-out infinite;
}
.page-hero-atmosphere::after {
  right: -210px;
  bottom: -260px;
  background: radial-gradient(circle at 40% 40%,#7161d8 0,#352c7a 32%,rgba(53,44,122,0) 72%);
  animation: ambient-drift-two 15s ease-in-out infinite;
}
.page-hero-grid { position: relative; z-index: 2; }

.page-hero-media { animation: hero-device-float 7s ease-in-out infinite; }
.page-hero-media img { transform: scale(1.015); }
.page-hero-scan {
  position: absolute;
  z-index: 3;
  top: -20%;
  right: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(180deg,transparent,rgba(230,161,134,.16),transparent);
  mix-blend-mode: screen;
  animation: hero-scan 6.8s linear infinite;
  pointer-events: none;
}
.page-hero-focus {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(196,85,45,.13),0 0 26px rgba(196,85,45,.38);
  animation: hero-focus-pulse 3.4s ease-in-out infinite;
  pointer-events: none;
}
.page-hero-focus::before,
.page-hero-focus::after {
  position: absolute;
  background: rgba(255,255,255,.72);
  content: "";
}
.page-hero-focus::before { top: 50%; right: 12px; left: 12px; height: 1px; }
.page-hero-focus::after { top: 12px; bottom: 12px; left: 50%; width: 1px; }

.page-hero-abstract {
  position: relative;
  z-index: 1;
  height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),
    radial-gradient(circle at 72% 20%,rgba(196,85,45,.34),transparent 42%),
    #10100f;
  background-size: 28px 28px,28px 28px,auto,auto;
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
  transform: rotate(1.2deg) translateY(54px);
}
.abstract-screen {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(22,22,20,.86);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.abstract-screen-main {
  top: 58px;
  left: 42px;
  width: 78%;
  border-radius: 18px;
  animation: abstract-panel-float 7.5s ease-in-out infinite;
}
.abstract-screen-main svg { display: block; width: 100%; height: auto; }
.abstract-screen-bar { display: flex; gap: 6px; padding: 13px 15px; border-bottom: 1px solid rgba(255,255,255,.1); }
.abstract-screen-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.2); }
.abstract-screen-bar i:first-child { background: #c4552d; }
.abstract-path,
.abstract-detail { fill: none; stroke: #e6a186; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 520; animation: abstract-path-draw 6s ease-in-out infinite; }
.abstract-detail { stroke: rgba(255,255,255,.23); stroke-width: 4; stroke-dasharray: 180; animation-delay: -.7s; }
.abstract-node { fill: #171714; stroke: #e6a186; stroke-width: 3; transform-box: fill-box; transform-origin: center; animation: abstract-node-pulse 2.8s ease-in-out infinite; }
.abstract-node-b { animation-delay: -.8s; }
.abstract-node-c { animation-delay: -1.6s; }
.abstract-screen-side {
  right: 24px;
  bottom: 52px;
  display: grid;
  gap: 11px;
  width: 38%;
  padding: 19px;
  border-radius: 16px;
  animation: abstract-panel-float 7.5s -2.4s ease-in-out infinite;
}
.abstract-screen-side span { color: #e6a186; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.abstract-screen-side b { display: block; height: 7px; border-radius: 99px; background: rgba(255,255,255,.12); }
.abstract-screen-side b:nth-child(2) { width: 82%; }
.abstract-screen-side b:nth-child(3) { width: 56%; background: rgba(196,85,45,.68); }
.abstract-screen-side b:nth-child(4) { width: 70%; }
.abstract-orbit {
  position: absolute;
  border: 1px solid rgba(230,161,134,.42);
  border-radius: 50%;
  animation: abstract-orbit 9s linear infinite;
}
.abstract-orbit::after { position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: #e6a186; box-shadow: 0 0 18px #c4552d; content: ""; }
.abstract-orbit-one { right: -65px; top: -64px; width: 220px; height: 220px; }
.abstract-orbit-two { bottom: -78px; left: -82px; width: 190px; height: 190px; animation-direction: reverse; animation-duration: 12s; }

main > .section:not(.section-dark):not(.section-green):not(.section-work) { position: relative; overflow: hidden; }
main > .section:not(.section-dark):not(.section-green):not(.section-work)::after {
  position: absolute;
  z-index: 0;
  right: -180px;
  bottom: -210px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,rgba(230,161,134,.34),rgba(196,85,45,.1) 38%,transparent 72%);
  content: "";
  filter: blur(12px);
  opacity: .5;
  animation: section-glow 13s ease-in-out infinite;
  pointer-events: none;
}
main > .section:nth-of-type(2n):not(.section-dark):not(.section-green):not(.section-work)::after {
  right: auto;
  left: -190px;
  background: radial-gradient(circle at 52% 45%,rgba(113,97,216,.23),rgba(79,66,158,.08) 38%,transparent 72%);
  animation-delay: -5s;
}
.section > .container { position: relative; z-index: 1; }

.service-card:not(.service-card-visual),
.price-card,
.feature,
.step,
.plain-card,
.contact-card { isolation: isolate; }
.service-card:not(.service-card-visual)::before,
.price-card::before,
.feature::before,
.step::before,
.plain-card::before,
.contact-card::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 18px;
  width: 62px;
  height: 62px;
  border: 1px solid color-mix(in srgb,var(--card-visual,#c4552d) 38%,transparent);
  border-radius: 19px;
  background:
    radial-gradient(circle at 38% 35%,color-mix(in srgb,var(--card-visual,#c4552d) 78%,white),transparent 13%),
    radial-gradient(circle at 50% 50%,color-mix(in srgb,var(--card-visual,#c4552d) 30%,transparent),transparent 66%);
  box-shadow: inset 0 0 24px color-mix(in srgb,var(--card-visual,#c4552d) 14%,transparent);
  content: "";
  opacity: .78;
  animation: card-signal 4.8s ease-in-out infinite;
  pointer-events: none;
}
.service-card:nth-child(3n+2),.price-card:nth-child(3n+2),.feature:nth-child(3n+2),.step:nth-child(3n+2) { --card-visual:#6b58ca; }
.service-card:nth-child(3n),.price-card:nth-child(3n),.feature:nth-child(3n),.step:nth-child(3n) { --card-visual:#25826b; }
.service-card.dark::before,
.step::before,
.price-card.featured::before,
.contact-card::before { opacity: .92; }
.feature { min-height: 148px; padding-right: 98px; }
.feature h3 { max-width: 25ch; }
.service-card:not(.service-card-visual) h3 { max-width: calc(100% - 56px); }
.ownership-list li::before { animation: list-icon-pulse 4s ease-in-out infinite; }
.ownership-list li:nth-child(2n)::before { background: #e4def8; color: #6755c7; animation-delay: -1s; }
.ownership-list li:nth-child(3n)::before { background: #d5eee5; color: #247761; animation-delay: -2s; }
.cta-panel { position: relative; isolation: isolate; overflow: hidden; }
.cta-panel::before,
.cta-panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.cta-panel::before { top: -120px; right: 15%; width: 280px; height: 280px; animation: abstract-orbit 18s linear infinite; }
.cta-panel::after { right: -80px; bottom: -140px; width: 260px; height: 260px; background: radial-gradient(circle,rgba(255,255,255,.16),transparent 65%); animation: section-glow 10s ease-in-out infinite; }

/* Diensten: verschillende composities per fase in plaats van herhaalde kaartgrids. */
.route-diensten .services-build { background: #f0ede7; }
.services-editorial-head {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(300px,.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}
.services-editorial-head h2 { max-width: 850px; }
.services-editorial-head > p { max-width: 500px; color: var(--muted); font-size: 17px; }
.services-build-bento {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  grid-template-rows: repeat(2,330px);
  gap: 18px;
}
.services-bento-card {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(20,20,18,.1);
  border-radius: 26px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 22px 55px rgba(55,34,22,.09);
  transition: transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s ease,border-color .35s ease;
}
.services-bento-card:hover { z-index: 2; border-color: rgba(196,85,45,.52); box-shadow: 0 28px 72px rgba(55,34,22,.16); transform: translateY(-5px); }
.services-bento-card--primary { grid-column: span 7; grid-row: span 2; flex-direction: column; background: #171715; color: #fff; }
.services-bento-card--site,
.services-bento-card--basis { grid-column: span 5; background: #fbfaf7; }
.services-bento-card--basis { background: #e8e3f5; }
.services-bento-copy { position: relative; z-index: 2; padding: 30px 32px; }
.services-bento-copy > span { display: block; margin-bottom: 18px; color: var(--accent); font-size: 10px; font-weight: 820; letter-spacing: .12em; }
.services-bento-card--primary .services-bento-copy > span { color: #e6a186; }
.services-bento-copy h3 { max-width: 15ch; font-size: clamp(28px,3.2vw,46px); }
.services-bento-card:not(.services-bento-card--primary) .services-bento-copy h3 { max-width: 13ch; font-size: clamp(24px,2.2vw,33px); }
.services-bento-copy p { max-width: 44ch; margin-top: 14px; color: rgba(255,255,255,.62); }
.services-bento-copy b { display: inline-flex; gap: 8px; margin-top: 23px; font-size: 12px; }
.services-bento-copy b i { color: var(--accent); font-style: normal; }
.services-bento-card figure { overflow: hidden; margin: 0; }
.services-bento-card--primary figure { flex: 1; margin: 0 16px 16px; border-radius: 19px; }
.services-bento-card:not(.services-bento-card--primary) figure { position: absolute; inset: 0 0 0 43%; z-index: -1; }
.services-bento-card:not(.services-bento-card--primary) .services-bento-copy { width: 58%; align-self: center; }
.services-bento-card figure::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(251,250,247,.96),rgba(251,250,247,.2) 72%); content: ""; }
.services-bento-card--primary figure::after { display: none; }
.services-bento-card--basis figure::after { background: linear-gradient(90deg,rgba(232,227,245,.98),rgba(232,227,245,.16) 72%); }
.services-bento-card figure { position: relative; }
.services-bento-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.services-bento-card:hover figure img { transform: scale(1.04); }

.services-discovery { overflow: hidden; }
.services-discovery-layout { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(390px,.82fr); gap: 76px; align-items: center; }
.services-discovery-visual {
  position: relative;
  isolation: isolate;
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: #090909;
  box-shadow: 0 35px 85px rgba(0,0,0,.5);
  transform: rotate(-1deg);
}
.services-discovery-visual::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(10,10,9,.82),transparent 38%); content: ""; pointer-events: none; }
.services-discovery-visual > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.services-visual-scan { position: absolute; z-index: 2; top: -15%; right: 0; left: 0; height: 18%; background: linear-gradient(transparent,rgba(230,161,134,.16),transparent); animation: services-dashboard-scan 7s linear infinite; pointer-events: none; }
.services-discovery-status { position: absolute; z-index: 3; right: 20px; bottom: 20px; left: 20px; display: flex; flex-wrap: wrap; gap: 7px; }
.services-discovery-status span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(12,12,11,.75); color: rgba(255,255,255,.76); font-size: 9px; font-weight: 750; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.services-discovery-status i { width: 6px; height: 6px; border-radius: 50%; background: #e6a186; box-shadow: 0 0 12px rgba(230,161,134,.78); }
.services-discovery-copy h2 { max-width: 680px; color: #fff; font-size: clamp(43px,5vw,70px); }
.services-discovery-copy > p:not(.eyebrow) { max-width: 550px; margin-top: 22px; color: rgba(255,255,255,.62); font-size: 17px; }
.services-link-list { display: grid; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.services-link-list a { display: grid; grid-template-columns: 35px minmax(0,1fr) auto; gap: 16px; align-items: center; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #fff; text-decoration: none; transition: padding .25s ease,background .25s ease; }
.services-link-list a:hover { padding-right: 12px; padding-left: 12px; background: rgba(255,255,255,.04); }
.services-link-list a > span { color: #e6a186; font-size: 10px; font-weight: 800; }
.services-link-list strong { display: block; font-family: var(--display); font-size: 21px; }
.services-link-list small { display: block; margin-top: 4px; color: rgba(255,255,255,.53); font-size: 11px; line-height: 1.4; }
.services-link-list a > i { color: #e6a186; font-style: normal; }

.route-diensten .services-follow { background: #f7f4ee; }
.services-follow-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(420px,.9fr); gap: 22px; align-items: stretch; }
.services-follow-visual {
  position: relative;
  isolation: isolate;
  min-height: 630px;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #171715;
  box-shadow: 0 28px 65px rgba(40,29,22,.18);
}
.services-follow-main { width: 100%; height: 100%; object-fit: cover; opacity: .94; }
.services-follow-inset { position: absolute; right: 22px; bottom: 66px; width: 47%; aspect-ratio: 4 / 3; object-fit: cover; border: 7px solid rgba(247,244,238,.92); border-radius: 18px; box-shadow: 0 25px 50px rgba(0,0,0,.38); transform: rotate(2.5deg); }
.services-follow-visual::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(12,12,11,.88),transparent 42%); content: ""; pointer-events: none; }
.services-follow-visual figcaption { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; color: #fff; font-size: 10px; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.services-follow-list { display: grid; gap: 14px; }
.services-follow-list > a { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 0; padding: 28px 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; color: var(--ink); text-decoration: none; transition: border-color .3s ease,transform .3s ease,box-shadow .3s ease; }
.services-follow-list > a::after { position: absolute; top: 24px; right: 24px; width: 56px; height: 56px; border-radius: 18px; background: radial-gradient(circle at 40% 38%,#e6a186,rgba(196,85,45,.14) 25%,transparent 68%); content: ""; opacity: .6; }
.services-follow-list > a:nth-child(2)::after { background: radial-gradient(circle at 40% 38%,#9e8ce2,rgba(107,88,202,.14) 25%,transparent 68%); }
.services-follow-list > a:nth-child(3)::after { background: radial-gradient(circle at 40% 38%,#65b49c,rgba(37,130,107,.14) 25%,transparent 68%); }
.services-follow-list > a:hover { border-color: var(--accent); box-shadow: 0 18px 42px rgba(40,29,22,.1); transform: translateX(-5px); }
.services-follow-list span { color: var(--accent); font-size: 9px; font-weight: 820; letter-spacing: .12em; }
.services-follow-list h3 { max-width: calc(100% - 62px); margin-top: 12px; font-size: 28px; }
.services-follow-list p { max-width: 44ch; margin-top: 9px; color: var(--muted); font-size: 13px; }
.services-follow-list b { margin-top: 16px; font-size: 11px; }

.route-diensten .services-sequence { background: #c4552d; color: #fff; }
.services-sequence .container { display: grid; grid-template-columns: minmax(0,.76fr) minmax(540px,1.24fr); gap: 86px; align-items: center; }
.services-sequence .eyebrow { color: rgba(255,255,255,.72); }
.services-sequence .eyebrow i { background: #fff; }
.services-sequence h2 { max-width: 620px; color: #fff; }
.services-sequence-track { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.services-sequence-track::before { position: absolute; top: 32px; right: 16%; left: 16%; height: 1px; background: rgba(255,255,255,.38); content: ""; }
.services-sequence-track li { position: relative; display: grid; justify-items: center; padding: 0 16px; text-align: center; }
.services-sequence-track li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: #c4552d; font-size: 11px; font-weight: 820; }
.services-sequence-track strong { margin-top: 20px; font-family: var(--display); font-size: 24px; }
.services-sequence-track small { max-width: 21ch; margin-top: 8px; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.45; }

@keyframes services-dashboard-scan { to { transform: translateY(700%); } }

@media (max-width: 1040px) {
  .services-editorial-head { grid-template-columns: 1fr; gap: 22px; }
  .services-build-bento { grid-template-rows: repeat(2,300px); }
  .services-discovery-layout,
  .services-follow-layout { grid-template-columns: 1fr; gap: 34px; }
  .services-discovery-visual { height: 500px; transform: none; }
  .services-follow-visual { min-height: 520px; }
  .services-follow-list { grid-template-columns: repeat(3,1fr); }
  .services-follow-list > a { min-height: 280px; padding: 24px; }
  .services-follow-list h3 { font-size: 23px; }
  .services-sequence .container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 780px) {
  .services-build-bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .services-bento-card--primary,
  .services-bento-card--site,
  .services-bento-card--basis { grid-column: 1; grid-row: auto; min-height: 420px; }
  .services-bento-card--primary { min-height: 570px; }
  .services-bento-card:not(.services-bento-card--primary) { flex-direction: column; }
  .services-bento-card:not(.services-bento-card--primary) .services-bento-copy { width: 100%; align-self: auto; }
  .services-bento-card:not(.services-bento-card--primary) figure { position: absolute; inset: 45% 0 0; }
  .services-bento-card:not(.services-bento-card--primary) figure::after { background: linear-gradient(180deg,rgba(251,250,247,.9),transparent 64%); }
  .services-bento-card--basis figure::after { background: linear-gradient(180deg,rgba(232,227,245,.92),transparent 64%); }
  .services-bento-copy { padding: 26px; }
  .services-discovery-visual { height: 380px; border-radius: 22px; }
  .services-discovery-status { right: 12px; bottom: 12px; left: 12px; }
  .services-discovery-copy h2 { font-size: clamp(39px,11vw,54px); }
  .services-link-list a { grid-template-columns: 28px minmax(0,1fr) auto; gap: 10px; }
  .services-follow-visual { min-height: 430px; }
  .services-follow-inset { right: 14px; bottom: 54px; width: 58%; border-width: 5px; }
  .services-follow-list { grid-template-columns: 1fr; }
  .services-follow-list > a { min-height: 225px; }
  .services-sequence-track { grid-template-columns: 1fr; gap: 28px; }
  .services-sequence-track::before { top: 32px; bottom: 32px; left: 31px; width: 1px; height: auto; }
  .services-sequence-track li { grid-template-columns: 64px 1fr; justify-items: start; column-gap: 18px; padding: 0; text-align: left; }
  .services-sequence-track strong { align-self: center; margin: 0; }
  .services-sequence-track small { grid-column: 2; max-width: 32ch; margin-top: -22px; }
}

@keyframes ambient-drift-one { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(80px,54px,0) scale(1.12); } }
@keyframes ambient-drift-two { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-74px,-42px,0) scale(1.16); } }
@keyframes hero-device-float { 0%,100% { transform: rotate(1.4deg) translateY(55px); } 50% { transform: rotate(.6deg) translateY(43px); } }
@keyframes hero-scan { 0% { transform: translateY(-25%); opacity: 0; } 12% { opacity: 1; } 72% { opacity: .75; } 100% { transform: translateY(560%); opacity: 0; } }
@keyframes hero-focus-pulse { 0%,100% { transform: scale(.9); opacity: .5; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes work-hero-site-scroll {
  0%,12% { transform: translate3d(0,0,0); }
  88%,100% { transform: translate3d(0,calc(-100% + 172px),0); }
}
@keyframes abstract-panel-float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-10px,0); } }
@keyframes abstract-path-draw { 0%,12% { stroke-dashoffset: 520; opacity: .35; } 45%,82% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -520; opacity: .3; } }
@keyframes abstract-node-pulse { 0%,100% { transform: scale(.8); filter: drop-shadow(0 0 0 rgba(196,85,45,0)); } 50% { transform: scale(1.12); filter: drop-shadow(0 0 10px rgba(196,85,45,.7)); } }
@keyframes abstract-orbit { to { transform: rotate(360deg); } }
@keyframes section-glow { 0%,100% { transform: translate3d(0,0,0) scale(.94); opacity: .32; } 50% { transform: translate3d(34px,-25px,0) scale(1.1); opacity: .6; } }
@keyframes card-signal { 0%,100% { transform: translateY(0) rotate(0); box-shadow: inset 0 0 24px color-mix(in srgb,var(--card-visual,#c4552d) 14%,transparent); } 50% { transform: translateY(-4px) rotate(3deg); box-shadow: inset 0 0 34px color-mix(in srgb,var(--card-visual,#c4552d) 28%,transparent),0 8px 24px color-mix(in srgb,var(--card-visual,#c4552d) 13%,transparent); } }
@keyframes list-icon-pulse { 0%,100% { transform: scale(.94); } 50% { transform: scale(1.08); } }

@media (max-width: 1040px) {
  .page-hero-abstract { position: absolute; right: -7%; bottom: -10%; width: 54%; height: 92%; opacity: .5; transform: rotate(3deg); }
  .page-hero-work-grid { opacity: .46; }
  @keyframes work-hero-site-scroll {
    0%,12% { transform: translate3d(0,0,0); }
    88%,100% { transform: translate3d(0,calc(-100% + 205px),0); }
  }
}

@media (max-width: 780px) {
  .page-hero-abstract { right: -35%; width: 88%; opacity: .3; }
  .page-hero-work-grid { right: -29%; width: 78%; opacity: .34; }
  .page-hero-work-grid .work-hero-shot img { animation: none; transform: none; }
  .abstract-screen-main { top: 74px; left: 25px; width: 84%; }
  .abstract-screen-side { right: 12px; bottom: 62px; width: 45%; }
  .feature { min-height: 136px; padding-right: 88px; }
  .service-card:not(.service-card-visual)::before,
  .price-card::before,
  .feature::before,
  .step::before,
  .plain-card::before,
  .contact-card::before { width: 54px; height: 54px; border-radius: 16px; }
  main > .section:not(.section-dark):not(.section-green):not(.section-work)::after { width: 280px; height: 280px; opacity: .38; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-atmosphere::before,
  .page-hero-atmosphere::after,
  .page-hero-media,
  .page-hero-scan,
  .page-hero-focus,
  .abstract-screen,
  .abstract-path,
  .abstract-detail,
  .abstract-node,
  .abstract-orbit,
  main > .section::after,
  .service-card::before,
  .price-card::before,
  .feature::before,
  .step::before,
  .plain-card::before,
  .contact-card::before,
  .ownership-list li::before,
  .cta-panel::before,
  .cta-panel::after { animation: none !important; }
  .services-visual-scan { animation: none !important; }
  .page-hero-work-grid .work-hero-shot img { animation: none !important; transform: none !important; }
  .page-hero-media { transform: rotate(1.4deg) translateY(55px); }
  .abstract-path,
  .abstract-detail { stroke-dashoffset: 0; }
  .side-by-side .feature-list .feature { --focus: 1 !important; transform: none; opacity: 1; filter: none; box-shadow: none; }
}

/* Case studies */
.case-page { background: #f7f5ef; }
.case-index-hero,
.case-hero {
  position: relative;
  overflow: hidden;
  background: #171714;
  color: #fff;
}
.case-index-hero::before,
.case-hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -180px;
  top: -340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,85,45,.34), transparent 68%);
  pointer-events: none;
}
.case-index-hero > .container,
.case-hero > .container { position: relative; z-index: 1; }
.case-index-hero { padding: 118px 0 96px; }
.case-index-hero h1 {
  max-width: 940px;
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -.07em;
}
.case-index-hero h1 span { color: #e6a186; }
.case-index-hero > .container > p:last-child { max-width: 680px; margin-top: 34px; color: rgba(255,255,255,.7); font-size: 20px; }
.case-index-section { background: #f1eee7; }
.case-index-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.case-index-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9d3ca;
  border-radius: 28px;
  background: #fffefb;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 52px rgba(24,22,18,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-index-card:hover { transform: translateY(-5px); box-shadow: 0 26px 68px rgba(24,22,18,.13); }
.case-index-card-featured { grid-column: 1 / -1; grid-template-columns: 1.15fr .85fr; min-height: 600px; }
.case-index-label { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 8px 12px; border-radius: 999px; background: rgba(20,20,18,.9); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-index-image { height: 360px; overflow: hidden; background: #ded9d0; }
.case-index-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.case-index-card-featured .case-index-image { height: 100%; min-height: 600px; }
.case-index-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 34px; }
.case-index-copy h2 { font-family: var(--display); font-size: clamp(30px,4vw,52px); line-height: 1.02; letter-spacing: -.045em; }
.case-index-card:not(.case-index-card-featured) .case-index-copy h2 { font-size: clamp(27px,3vw,40px); }
.case-index-copy p { max-width: 50ch; margin-top: 20px; color: var(--muted); }
.case-index-copy span { margin-top: auto; padding-top: 36px; color: var(--accent); font-weight: 800; }

.case-hero { padding: 34px 0 66px; }
.case-hero-shop { background: #1d2a25; }
.bodyboost-hero { background: #151c26; }
.case-switch,
.case-crumb { display: flex; align-items: center; gap: 8px; min-height: 42px; margin-bottom: 42px; color: rgba(255,255,255,.65); font-size: 12px; }
.case-switch > span { margin-right: 6px; }
.case-switch a,
.case-crumb a { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff; text-decoration: none; }
.case-switch a[aria-current="page"] { background: #fff; color: #171714; }
.case-crumb { justify-content: space-between; }
.case-hero-grid { display: grid; grid-template-columns: minmax(0,.94fr) minmax(480px,1.06fr); gap: 72px; align-items: center; }
.case-hero-copy h1 { max-width: 870px; margin-top: 22px; font-family: var(--display); font-size: clamp(52px,6.2vw,92px); line-height: .91; letter-spacing: -.065em; }
.case-hero-copy > p:not(.eyebrow) { max-width: 650px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: clamp(17px,1.5vw,21px); }
.case-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }
.case-text-link { color: #fff; font-size: 13px; font-weight: 750; text-decoration: none; }
.case-browser { min-width: 0; overflow: hidden; border: 1px solid rgba(20,20,18,.12); border-radius: 22px; background: #fff; box-shadow: 0 28px 76px rgba(0,0,0,.16); }
.case-browser-bar { display: grid; grid-template-columns: 8px 8px 8px minmax(0,1fr); gap: 6px; align-items: center; height: 40px; padding: 0 14px; background: #ece9e2; }
.case-browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #b5afa6; }
.case-browser-bar > div { justify-self: center; min-width: 0; max-width: 72%; overflow: hidden; color: #777168; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.case-browser img { width: 100%; height: 600px; object-fit: cover; object-position: top; }
.case-browser-hero { transform: rotate(1.25deg); border-color: rgba(255,255,255,.18); box-shadow: 0 36px 100px rgba(0,0,0,.42); }
.case-metric-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; margin-top: 64px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.16); }
.case-metric { display: flex; flex-direction: column; min-height: 150px; padding: 26px; background: rgba(255,255,255,.07); }
.case-metric strong { font-family: var(--display); font-size: clamp(38px,4vw,60px); line-height: 1; letter-spacing: -.045em; }
.case-metric span { margin-top: 10px; font-weight: 750; }
.case-metric small { margin-top: auto; padding-top: 10px; color: rgba(255,255,255,.54); font-size: 11px; }

.case-section { padding: 112px 0; }
.case-section-soft { background: #efebe3; }
.case-section-dark { background: #171714; color: #fff; }
.case-two-col { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: 92px; align-items: start; }
.case-kicker { color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.case-kicker.light { color: #e6a186; }
.case-section h2 { max-width: 760px; margin-top: 15px; font-family: var(--display); font-size: clamp(42px,5.2vw,74px); line-height: .96; letter-spacing: -.055em; }
.case-copy > p { margin-top: 18px; color: var(--muted); font-size: 18px; }
.case-section-dark .case-copy > p,
.case-light-copy { margin-top: 20px; color: rgba(255,255,255,.68); font-size: 18px; }
.case-before-after { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 38px; }
.case-before-after > div { display: grid; min-height: 132px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.case-before-after small { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.case-before-after strong { margin-top: 5px; font-family: var(--display); font-size: 28px; }
.case-before-after span { align-self: end; color: var(--muted); font-size: 12px; }
.case-before-after > b { color: var(--accent); font-size: 24px; }
.case-heading { max-width: 850px; margin-bottom: 46px; }
.case-heading > p:last-child { max-width: 680px; margin-top: 20px; color: var(--muted); font-size: 18px; }
.case-heading.light > p:last-child { color: rgba(255,255,255,.65); }
.case-step-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.case-step-grid article { min-height: 280px; padding: 28px; border: 1px solid #d6d0c6; border-radius: 22px; background: #fffefb; }
.case-step-grid article > span { color: var(--accent); font-family: var(--display); font-size: 13px; font-weight: 800; }
.case-step-grid h3 { margin-top: 70px; font-family: var(--display); font-size: 26px; letter-spacing: -.03em; }
.case-step-grid p { margin-top: 12px; color: var(--muted); font-size: 14px; }
.case-result-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 14px; }
.case-result-grid > article { min-height: 250px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); }
.case-result-main { padding: 28px; }
.case-result-main > span { color: rgba(255,255,255,.62); font-size: 12px; text-transform: uppercase; }
.case-result-main h3 { margin-top: 18px; font-family: var(--display); font-size: clamp(38px,5vw,68px); letter-spacing: -.05em; }
.case-result-main h3 i { color: #e6a186; font-style: normal; }
.case-result-main > strong { display: inline-block; margin-top: 8px; color: #dff27a; font-size: 20px; }
.case-bars { display: grid; gap: 8px; margin-top: 30px; }
.case-bars i { display: block; width: var(--bar); height: 8px; border-radius: 999px; background: rgba(255,255,255,.24); }
.case-bars i:last-child { background: var(--accent); }
.case-result-grid .case-metric { min-height: 250px; }
.case-source-note { margin-top: 22px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.case-section-dark .case-source-note { color: rgba(255,255,255,.48); }
.case-visual-split { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr); gap: 82px; align-items: center; }
.case-visual-split-reverse { grid-template-columns: minmax(380px,.92fr) minmax(0,1.08fr); }
.case-visual-split .case-browser img { height: 700px; }
.case-donut { display: grid; place-items: center; width: 190px; height: 190px; margin-top: 34px; border-radius: 50%; background: conic-gradient(#2e8b57 0 99.3%, #e0dbd2 99.3% 100%); }
.case-donut > div { display: grid; place-items: center; width: 142px; height: 142px; border-radius: 50%; background: #fffefb; }
.case-donut strong { font-family: var(--display); font-size: 38px; letter-spacing: -.05em; }
.case-donut span { color: var(--muted); font-size: 11px; }
.case-check-list { display: grid; gap: 10px; margin-top: 26px; list-style: none; }
.case-check-list li { position: relative; padding: 12px 14px 12px 42px; border: 1px solid var(--line); border-radius: 12px; background: #fffefb; font-weight: 700; }
.case-check-list li::before { content: "✓"; position: absolute; left: 15px; color: #2e8b57; }
.case-commerce-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.case-commerce-grid > article { min-height: 410px; padding: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.07); }
.case-commerce-grid > article > span { color: rgba(255,255,255,.54); font-size: 11px; text-transform: uppercase; }
.case-commerce-grid > article > strong { display: block; margin-top: 50px; font-family: var(--display); font-size: clamp(58px,7vw,96px); line-height: .9; letter-spacing: -.06em; }
.case-commerce-grid h3 { margin-top: 12px; font-family: var(--display); font-size: 28px; }
.case-commerce-grid > article > b { display: inline-block; margin-top: 24px; padding: 8px 12px; border-radius: 999px; background: #dff27a; color: #171714; font-size: 12px; }
.case-commerce-grid > article > p { margin-top: 26px; color: rgba(255,255,255,.52); font-size: 12px; }
.case-commerce-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 26px; }
.case-commerce-details.is-two { grid-template-columns: repeat(2,1fr); }
.case-commerce-details span { display: grid; padding: 14px; border-radius: 13px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.62); font-size: 11px; }
.case-commerce-details b { color: #fff; font-family: var(--display); font-size: 22px; }
.case-feed { display: flex; align-items: center; gap: 64px; margin-top: 20px; padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); }
.case-feed .case-donut { flex: 0 0 auto; margin: 0; }
.case-feed-list { display: grid; flex: 1; gap: 10px; }
.case-feed-list span { display: grid; grid-template-columns: 14px 80px 1fr; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.case-feed-list i { width: 9px; height: 9px; border-radius: 50%; background: #2e8b57; }
.case-feed-list i.limited { background: #d99d27; }
.case-feed-list i.rejected { background: #b44937; }
.case-proof { border-top: 1px solid var(--line); background: #f1eee7; }
.case-source-list { display: grid; gap: 9px; }
.case-source-list article { display: grid; grid-template-columns: 32px 1fr auto; gap: 14px; align-items: center; padding: 18px; border: 1px solid #d8d2c8; border-radius: 14px; background: #fffefb; }
.case-source-index { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #e5f0e9; color: #216540; font-weight: 900; }
.case-source-list strong { font-family: var(--display); }
.case-source-list p { color: var(--muted); font-size: 12px; }
.case-source-list b { padding: 6px 9px; border-radius: 999px; background: #e5f0e9; color: #216540; font-size: 9px; text-transform: uppercase; }
.case-source-list article.is-open .case-source-index,
.case-source-list article.is-open b { background: #f5e7d3; color: #8a5818; }
.case-next { padding: 74px 0; background: var(--accent); color: #fff; }
.case-next p { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-next a:not(.case-next-secondary) { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-top: 12px; color: #fff; text-decoration: none; }
.case-next a:not(.case-next-secondary) span { max-width: 850px; font-family: var(--display); font-size: clamp(34px,5vw,68px); line-height: .98; letter-spacing: -.05em; }
.case-next a:not(.case-next-secondary) b { white-space: nowrap; }
.case-next-secondary { display: inline-block; margin-top: 28px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 750; text-decoration: none; }
.case-next-secondary:hover { color: #fff; }
.case-parts-results { margin-bottom: 18px; }
.case-parts-page .case-hero-copy h1 { font-size: clamp(48px,5.4vw,80px); }
.case-parts-page .case-hero-grid { align-items: start; }
.case-parts-page .case-browser-hero { margin-top: 44px; transform: none; }
.case-parts-page .case-visual-split { align-items: start; }
.case-commerce-grid-extra { margin-top: 18px; }
.case-commerce-grid-extra > article { min-height: 360px; }
.case-results-heading h2 { font-size: clamp(34px,4vw,54px); }
.case-proof-compact { padding: 84px 0; }
.case-proof-compact h2 { font-size: clamp(32px,3.6vw,50px); }
.case-bodyboost-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.case-bodyboost-facts article { display: grid; min-height: 150px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.07); }
.case-bodyboost-facts strong { font-family: var(--display); font-size: 25px; }
.case-bodyboost-facts span { align-self: end; color: rgba(255,255,255,.58); font-size: 12px; }
.project-card-actions { grid-template-columns: repeat(auto-fit,minmax(112px,1fr)); }

@media (max-width: 1080px) {
  .case-hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .case-browser-hero { width: min(850px,100%); transform: none; }
  .case-parts-page .case-browser-hero { margin-top: 0; }
  .case-step-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .case-result-grid { grid-template-columns: 1fr 1fr; }
  .case-result-main { grid-column: 1 / -1; }
  .case-two-col,
  .case-visual-split,
  .case-visual-split-reverse { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 780px) {
  .case-index-hero { padding: 84px 0 68px; }
  .case-index-card-featured { grid-template-columns: 1fr; min-height: 0; }
  .case-index-card-featured .case-index-image { min-height: 390px; height: 390px; }
  .case-index-grid { grid-template-columns: 1fr; }
  .case-hero { padding-top: 20px; }
  .case-switch { align-items: flex-start; flex-wrap: wrap; margin-bottom: 32px; }
  .case-switch > span { flex-basis: 100%; }
  .case-hero-copy h1 { font-size: clamp(48px,14vw,72px); }
  .case-metric-row { grid-template-columns: 1fr; }
  .case-metric { min-height: 120px; }
  .case-section { padding: 76px 0; }
  .case-step-grid,
  .case-result-grid,
  .case-commerce-grid { grid-template-columns: 1fr; }
  .case-result-main { grid-column: auto; }
  .case-browser img,
  .case-visual-split .case-browser img { height: 480px; }
  .case-before-after { grid-template-columns: 1fr; }
  .case-before-after > b { transform: rotate(90deg); justify-self: center; }
  .case-feed { align-items: flex-start; flex-direction: column; gap: 34px; padding: 24px; }
  .case-feed-list { width: 100%; }
  .case-next a:not(.case-next-secondary) { align-items: flex-start; flex-direction: column; }
  .case-bodyboost-facts { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .case-index-hero h1 { font-size: 48px; }
  .case-index-copy { padding: 26px; }
  .case-index-card-featured .case-index-image,
  .case-index-image { height: 330px; min-height: 330px; }
  .case-hero-copy h1 { font-size: 46px; }
  .case-browser-bar > div { max-width: 64%; }
  .case-browser img,
  .case-visual-split .case-browser img { height: 410px; }
  .case-step-grid { grid-template-columns: 1fr; }
  .case-step-grid article { min-height: 220px; }
  .case-step-grid h3 { margin-top: 38px; }
  .case-commerce-details { grid-template-columns: 1fr; }
  .case-source-list article { grid-template-columns: 32px 1fr; }
  .case-source-list b { grid-column: 2; justify-self: start; }
  .project-card-actions { grid-template-columns: 1fr; }
}
