:root {
  --paper: #fffdf7;
  --cream: #fff7df;
  --ink: #18161f;
  --muted: #696675;
  --line: #ddd8cf;
  --purple: #7657ff;
  --lilac: #dcd2ff;
  --blue: #78a9ff;
  --yellow: #ffe85c;
  --coral: #ff806c;
  --pink: #ff99c8;
  --mint: #9ce5c8;
  --green: #286956;
  --shell: min(1180px, calc(100% - 40px));
  --display: "Geologica", "Inter", sans-serif;
  --body: "Inter", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: max(12px, env(safe-area-inset-top)) 0 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
}

.ready .site-header {
  animation: hero-header-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-wrap {
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  background: rgba(255, 253, 247, .86);
  border: 1px solid rgba(24, 22, 31, .1);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(44, 34, 22, .05);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.site-header.scrolled .nav-wrap {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44, 34, 22, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 9px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 62vw);
  object-fit: contain;
}

.brand-light .brand-logo {
  height: 52px;
  max-width: min(280px, 80vw);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  width: 22px;
  height: 22px;
  padding: 4px;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
}

.brand-mark i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--yellow);
}

.brand-mark i:nth-child(1) { height: 5px; }
.brand-mark i:nth-child(2) { height: 9px; background: var(--pink); }
.brand-mark i:nth-child(3) { height: 13px; background: var(--mint); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: #504d59;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-out, transform 150ms ease-out;
}

.desktop-nav a:hover { color: var(--purple); transform: translateY(-1px); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #504d59;
  background: none;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 150ms ease-out, transform 150ms ease-out;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--purple);
  transform: translateY(-1px);
}
.nav-dropdown-toggle span {
  font-size: 10px;
  transition: transform 160ms ease;
}
.nav-dropdown.is-open .nav-dropdown-toggle span {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 2px 12px;
  min-width: 320px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 6px 0 var(--yellow);
  transform: translateX(-50%);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}
.nav-dropdown-menu[hidden] { display: none; }
.nav-dropdown-menu-locations {
  grid-template-columns: 1fr;
  min-width: 200px;
}
.nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
}
.nav-dropdown-menu a:hover {
  color: var(--ink);
  background: var(--cream);
  transform: none;
}

.mobile-services {
  border-bottom: 1px solid var(--line);
}
.mobile-services summary {
  padding: 12px;
  font-family: var(--display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.mobile-services summary::-webkit-details-marker { display: none; }
.mobile-services-list {
  display: grid;
  gap: 2px;
  padding: 0 8px 10px;
}
.mobile-services-list a {
  padding: 10px 12px !important;
  border-bottom: 0 !important;
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease-out, background 150ms ease-out;
}

.nav-cta:hover { background: var(--purple); transform: translateY(-1px); }

.menu-button { display: none; }
.mobile-menu { display: none; }

/* Hero */

.hero {
  position: relative;
  min-height: 820px;
  padding: 142px 0 82px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.transformation::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(72, 56, 40, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 56, 40, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

.hero-colour { position: absolute; z-index: -3; inset: 0; pointer-events: none; }

.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(65px);
  opacity: .55;
}

.blob-one { width: 440px; height: 440px; top: -190px; left: -80px; background: var(--yellow); }
.blob-two { width: 520px; height: 520px; top: 20px; right: -190px; background: var(--lilac); }
.blob-three { width: 280px; height: 280px; bottom: -150px; left: 42%; background: var(--pink); }

.hero-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}

.hero-copy { position: relative; z-index: 2; }

.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: #5c5965;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kicker span {
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(118, 87, 255, .14);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 700;
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--purple);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3%;
  right: -3%;
  bottom: 3px;
  height: 13px;
  background: var(--yellow);
  border-radius: 50%;
  transform: rotate(-1deg);
  opacity: .8;
}

.hero-lede {
  max-width: 540px;
  margin: 28px 0 0;
  color: #5e5a66;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease-out, background 160ms ease-out, color 160ms ease-out, box-shadow 160ms ease-out;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--yellow);
}

.button-dark:hover { color: #fff; background: var(--purple); box-shadow: 7px 7px 0 var(--yellow); }

.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.text-link span { color: var(--purple); transition: transform 160ms ease-out; }
.text-link:hover span { transform: translateY(3px); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}

.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  font-size: 9px;
  font-weight: 800;
}
.avatar-stack span:nth-child(2) { background: var(--yellow); }
.avatar-stack span:nth-child(3) { background: var(--pink); }
.hero-proof p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.hero-proof strong { color: var(--ink); }

/* Interactive browser */

.showcase-wrap {
  position: relative;
  width: min(100%, 650px);
  justify-self: end;
  perspective: 1200px;
}

.showcase-hint {
  position: absolute;
  z-index: 5;
  right: -28px;
  bottom: -16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-4deg);
  color: var(--purple);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.showcase-hint svg { width: 70px; height: 38px; stroke: currentColor; stroke-width: 2; }

.browser {
  --scene-bg: #e7f0ff;
  --scene-main: #ff6f4d;
  --scene-dark: #17233f;
  --scene-soft: #ffba51;
  --scene-art: #2e63ce;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 22, 31, .2);
  border-radius: 15px;
  box-shadow: 18px 20px 0 rgba(118, 87, 255, .16), 0 28px 70px rgba(46, 34, 75, .18);
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.browser:hover { transform: rotateY(0) rotateX(0) translateY(-4px); box-shadow: 13px 17px 0 rgba(118, 87, 255, .2), 0 35px 80px rgba(46, 34, 75, .2); }
.browser[data-scene="clinic"] { --scene-bg: #e5fff6; --scene-main: #2d8b73; --scene-dark: #143f38; --scene-soft: #a8efd7; --scene-art: #70c7ac; }
.browser[data-scene="cafe"] { --scene-bg: #fff0f5; --scene-main: #e84a83; --scene-dark: #4c2337; --scene-soft: #ffc349; --scene-art: #8c3c64; }

.browser-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 13px;
  background: #f7f5f0;
  border-bottom: 1px solid #dedad2;
}

.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #ff7e73; }
.browser-dots i:nth-child(2) { background: #ffd75f; }
.browser-dots i:nth-child(3) { background: #68d79e; }

.browser-url {
  justify-self: center;
  width: 100%;
  max-width: 260px;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  gap: 7px;
  color: #85818a;
  background: #fff;
  border: 1px solid #e7e2da;
  border-radius: 5px;
  font-size: 9px;
}

.browser-status { justify-self: end; color: #498169; font-size: 8px; font-weight: 800; text-transform: uppercase; }

.site-preview {
  min-height: 500px;
  color: var(--scene-dark);
  background: var(--scene-bg);
  transition: color 180ms ease-out, background 180ms ease-out;
}

.preview-nav {
  height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--scene-dark) 15%, transparent);
}

.preview-logo { font-family: var(--display); font-size: 15px; font-weight: 800; }
.preview-logo span { color: var(--scene-main); }
.preview-nav > div { display: flex; gap: 13px; }
.preview-nav > div i { width: 22px; height: 3px; background: var(--scene-dark); opacity: .18; border-radius: 3px; }
.preview-nav button, .preview-button {
  justify-self: end;
  padding: 9px 11px;
  color: #fff;
  background: var(--scene-dark);
  border: 0;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .06em;
}

.preview-main {
  min-height: 370px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  padding: 34px 26px 25px 38px;
}

.preview-label { font-size: 8px; font-weight: 800; letter-spacing: .12em; }
/* SEO: demo preview title is not a heading */
p.preview-title {
  display: block;
}
.preview-title {
  max-width: 300px;
  margin: 13px 0 11px;
  color: var(--scene-dark);
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: .95;
  letter-spacing: -.05em;
  transition: color 180ms ease-out;
}
.preview-text { max-width: 250px; margin: 0 0 18px; font-size: 10px; line-height: 1.5; opacity: .72; }
.preview-button { justify-self: start; padding: 11px 13px; background: var(--scene-main); }

.preview-art { position: relative; height: 290px; }
.art-sun {
  position: absolute;
  width: 170px;
  height: 170px;
  top: 18px;
  right: 5px;
  border-radius: 50%;
  background: var(--scene-soft);
  transition: background 180ms ease-out;
}
.art-shape { position: absolute; background: var(--scene-art); transition: background 180ms ease-out, transform 180ms ease-out; }
.art-shape-a { width: 140px; height: 190px; right: 54px; bottom: 0; border-radius: 70px 70px 8px 8px; transform: rotate(8deg); }
.art-shape-b { width: 80px; height: 150px; right: 0; bottom: 0; border-radius: 50px 50px 5px 5px; transform: rotate(-10deg); opacity: .7; }
.browser[data-scene="clinic"] .art-shape-a { border-radius: 70px 70px 35px 35px; transform: rotate(-6deg); }
.browser[data-scene="cafe"] .art-shape-a { border-radius: 8px 8px 70px 70px; transform: rotate(5deg); }
.art-card {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(24,22,31,.12);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(40,30,20,.12);
}
.art-icon { display: grid; place-items: center; width: 25px; height: 25px; color: #fff; background: var(--scene-main); border-radius: 4px; }
.art-card div { display: grid; }
.art-card strong { font-family: var(--display); font-size: 13px; line-height: 1; }
.art-card small { margin-top: 3px; font-size: 5px; letter-spacing: .1em; }

.preview-footer {
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0 25px;
  color: #fff;
  background: var(--scene-dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: background 180ms ease-out;
}
.preview-footer span { text-align: center; opacity: .8; }

.scene-tabs {
  display: flex;
  width: max-content;
  margin: 26px auto 0;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(40,30,20,.08);
}
.scene-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease-out, transform 150ms ease-out;
}
.scene-tab:hover { transform: translateY(-1px); }
.scene-tab.is-active { background: #f1eee8; }
.tab-dot { width: 8px; height: 8px; border-radius: 50%; }
.tab-orange { background: var(--coral); }
.tab-mint { background: var(--mint); }
.tab-pink { background: var(--pink); }

/* Marquee */

.marquee {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 96px);
  background: transparent;
}

.marquee-inner {
  position: relative;
  display: flex;
  max-width: 90vw;
  margin-inline: auto;
  overflow: hidden;
  padding-block: 20px;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.marquee-logos {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}

.marquee-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 72px;
  padding: 14px 22px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 14px;
  background: #ffffff;
  white-space: nowrap;
}

.marquee-logo-dark {
  background: #0a0a0a;
  border-color: rgba(26, 26, 26, 0.2);
}

.marquee-logo img {
  display: block;
  max-height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee.is-reverse .marquee-track {
  animation-name: marquee-reverse;
}

.marquee.is-pausable:hover .marquee-track {
  animation-play-state: paused;
}

/* Generic sections — matched to Website packages footprint */

.section {
  --section-pad: 112px;
  --section-body: 720px;
  padding: var(--section-pad) 0;
  min-height: calc(var(--section-pad) * 2 + var(--section-body));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section > .shell {
  width: var(--shell);
  margin-inline: auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

.section-index {
  margin: 0;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.section-top > p:last-child { margin: 0; color: var(--muted); font-size: 13px; text-align: right; }

/* Topical imagery for copy-led sections (no cards/tables) */
.section > .shell.section-media-grid,
.section-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 36px 48px;
  align-items: center;
  flex: none;
}
.section-with-media.media-flip > .shell.section-media-grid,
.section-with-media.media-flip .section-media-grid {
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
}
.section-with-media.media-flip .section-media { order: -1; }
.section-media {
  margin: 0;
  position: relative;
  z-index: 2;
  width: min(100%, 400px);
  justify-self: end;
}
.section-with-media.media-flip .section-media {
  justify-self: start;
}
.section-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--yellow);
  background: #fff;
}
.industry-page.industry-coral .section-media img { box-shadow: 6px 6px 0 var(--coral); }
.industry-page.industry-lilac .section-media img { box-shadow: 6px 6px 0 var(--lilac); }
.industry-page.industry-mint .section-media img { box-shadow: 6px 6px 0 var(--mint); }
.section-media-copy { min-width: 0; }
.section-media-wide {
  margin: 0 0 36px;
  position: relative;
  z-index: 2;
  width: min(100%, 400px);
}
.section-media-wide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--yellow);
  background: #fff;
}
.industry-page.industry-coral .section-media-wide img { box-shadow: 6px 6px 0 var(--coral); }
.industry-page.industry-lilac .section-media-wide img { box-shadow: 6px 6px 0 var(--lilac); }
.industry-page.industry-mint .section-media-wide img { box-shadow: 6px 6px 0 var(--mint); }
.intro-copy-media {
  margin-left: 0;
  max-width: none;
}
.industry-importance .section-media-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}
.industry-importance .section-media-copy > div:last-child p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.location-page .industry-importance .section-media-copy > div:last-child p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.75;
}
@media (max-width: 800px) {
  .section > .shell.section-media-grid,
  .section-media-grid,
  .section-with-media.media-flip > .shell.section-media-grid,
  .section-with-media.media-flip .section-media-grid {
    grid-template-columns: 1fr;
  }
  .section-with-media.media-flip .section-media { order: 0; }
  .section-media,
  .section-media-wide {
    width: min(100%, 320px);
    justify-self: start;
  }
}

.intro-section { padding-top: var(--section-pad); }
.intro-grid { display: grid; grid-template-columns: 1fr 4fr; gap: 32px; align-items: start; }
.big-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.big-statement span { color: #aaa4b1; }
.intro-body { max-width: 640px; margin: 0 0 0 auto; color: var(--muted); font-size: 16px; line-height: 1.6; }
.intro-copy {
  max-width: 640px;
  margin: 28px 0 0 auto;
  display: grid;
  gap: 14px;
}
.intro-focus {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Services */

.services-section {
  position: relative;
  isolation: isolate;
  background: #f4f1ff;
  border-block: 1px solid #dcd5ed;
  overflow: visible;
  z-index: 3;
  margin-top: -38vh;
  box-shadow: 0 -24px 56px rgba(24, 22, 31, 0.1);
  transform: translate3d(0, calc((1 - var(--bridge, 0)) * 14vh), 0);
  will-change: transform;
}

.services-parallax-wash {
  position: absolute;
  z-index: 0;
  inset: -8% -4%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 232, 92, 0.22), transparent 32%),
    radial-gradient(circle at 82% 30%, rgba(220, 210, 255, 0.4), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255, 128, 108, 0.14), transparent 42%);
  transform: translate3d(0, calc(var(--bridge, 0) * -36px), 0);
}

.services-section > .shell {
  position: relative;
  z-index: 1;
}

/* Sticky parallax: How it works pins, Growth stack slides over */
.parallax-bridge {
  --bridge: 0;
  position: relative;
}

.parallax-pin-space {
  position: relative;
  height: 380vh;
}

.parallax-pin {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding:
    max(76px, calc(env(safe-area-inset-top, 0px) + 64px))
    0
    20px;
}

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.stack-slider {
  position: relative;
  margin-top: 0;
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.stack-slider-stage {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 1400px;
  touch-action: pan-y;
  padding: 12px 0 16px;
}

.stack-slider .service-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(280px, calc(100vw - 72px));
  min-height: 390px;
  margin: 0;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  box-shadow: 9px 10px 0 var(--ink);
  overflow: visible;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease,
    box-shadow 220ms ease;
  cursor: pointer;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.stack-slider .service-card.is-active {
  filter: none;
  opacity: 1;
  z-index: 5;
  cursor: default;
  pointer-events: auto;
}

.stack-slider .service-card:not(.is-active) {
  filter: blur(1.2px) saturate(0.92) brightness(0.96);
  opacity: 0.72;
  pointer-events: auto;
}

.stack-slider .service-card:hover {
  box-shadow: 9px 10px 0 var(--ink);
}

.stack-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  position: relative;
  z-index: 20;
  flex-shrink: 0;
}

.stack-nav {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background 150ms ease-out;
}

.stack-nav:hover {
  transform: translate(-1px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink);
  border-radius: 15px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}
.service-card:hover { transform: translate(-3px, -5px); box-shadow: 9px 10px 0 var(--ink); }
.service-lilac { background: var(--lilac); }
.service-yellow { background: var(--yellow); }
.service-coral { background: var(--coral); }
.service-number { align-self: flex-end; font-family: var(--display); font-size: 12px; font-weight: 800; }
.service-icon {
  width: 72px;
  height: 72px;
  margin: 24px 0 20px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(24,22,31,.45);
  border-radius: 50%;
}
.window-icon { width: 47px; height: 38px; padding: 8px; display: flex; gap: 3px; align-items: flex-end; border: 2px solid var(--ink); border-radius: 5px; }
.window-icon i { width: 7px; background: var(--purple); border-radius: 2px; }
.window-icon i:nth-child(1) { height: 9px; }
.window-icon i:nth-child(2) { height: 15px; }
.window-icon i:nth-child(3) { height: 22px; }
.search-icon span { width: 35px; height: 35px; border: 4px solid var(--ink); border-radius: 50%; position: relative; }
.search-icon span::after { content: ""; position: absolute; width: 20px; height: 4px; right: -15px; bottom: -8px; background: var(--ink); transform: rotate(45deg); border-radius: 3px; }
.chart-icon { display: flex; align-items: flex-end; gap: 5px; }
.chart-icon i { width: 10px; height: 18px; background: var(--ink); border-radius: 2px; }
.chart-icon i:nth-child(2) { height: 32px; }
.chart-icon i:nth-child(3) { height: 46px; }
.service-card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 22px; line-height: 1.1; letter-spacing: -.035em; }
.service-card > p { margin: 0; color: rgba(24,22,31,.72); font-size: 14px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; padding: 0; list-style: none; }
.service-card li { padding: 4px 8px; border: 1px solid rgba(24,22,31,.35); border-radius: 20px; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.service-card > a { margin-top: auto; display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(24,22,31,.3); font-weight: 700; text-decoration: none; }
.service-card > a span { transition: transform 150ms ease-out; }
.service-card > a:hover span { transform: translate(3px,-3px); }

/* Comparison */

.transformation {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.transformation > .shell {
  position: relative;
  z-index: 1;
}

.transformation > .hero-colour,
.transformation > .shell {
  opacity: 0;
  transform: scale(0.92);
  transform-origin: center 40%;
  transition:
    opacity 900ms var(--ease),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.transformation.is-zoomed > .hero-colour,
.transformation.is-zoomed > .shell {
  opacity: 1;
  transform: none;
}

.transformation [data-zoom-item] {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 800ms var(--ease),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.transformation.is-zoomed [data-zoom-item] {
  opacity: 1;
  transform: none;
}

.transformation.is-zoomed .section-top[data-zoom-item] {
  transition-delay: 80ms;
}

.transformation.is-zoomed .compare-copy[data-zoom-item] {
  transition-delay: 180ms;
}

.transformation.is-zoomed .comparison[data-zoom-item] {
  transition-delay: 320ms;
}

.transformation .section-top {
  margin-bottom: 24px;
}

.compare-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 40px;
  align-items: center;
  flex: 1;
  min-height: 0;
}

.compare-copy .eyebrow { margin: 0 0 10px; color: var(--purple); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.compare-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.compare-copy > p:not(.eyebrow) { margin: 12px 0 16px; color: var(--muted); font-size: 14px; }
.compare-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.compare-copy li { display: grid; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.compare-copy li strong { font-size: 13px; }
.compare-copy li span { color: var(--muted); font-size: 12px; }

.comparison {
  --position: 56%;
  position: relative;
  height: 420px;
  border: 1px solid var(--ink);
  border-radius: 15px;
  box-shadow: 8px 8px 0 var(--lilac);
  overflow: hidden;
  user-select: none;
}
.compare-frame { position: absolute; inset: 0; overflow: hidden; }
.compare-before { width: var(--position); border-right: 2px solid #fff; filter: grayscale(1); }
.compare-before > * { width: min(720px, calc(100vw - 40px)); }
.mini-browser { height: 38px; display: flex; align-items: center; gap: 5px; padding: 0 12px; background: #edeae3; border-bottom: 1px solid #cdc8bf; }
.mini-browser span { width: 6px; height: 6px; border-radius: 50%; background: #aaa; }
.mini-browser i { margin-left: 18px; color: #8b8780; font-size: 8px; font-style: normal; }
.after-site, .before-site { position: relative; height: calc(100% - 38px); padding: 48px 36px; overflow: hidden; }
.after-site { color: #fff; background: #126a9b; }
.after-site small { font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.after-site strong { display: block; margin: 12px 0; font-family: var(--display); font-size: 42px; line-height: .92; letter-spacing: -.05em; }
.after-site p { max-width: 230px; font-size: 11px; opacity: .8; }
.after-site button { padding: 10px 13px; color: #126a9b; background: var(--yellow); border: 0; border-radius: 3px; font-size: 8px; font-weight: 800; }
.after-pipes { position: absolute; right: -35px; bottom: -45px; width: 300px; height: 300px; }
.after-pipes i { position: absolute; display: block; border: 30px solid #71c7e8; border-radius: 50%; }
.after-pipes i:nth-child(1) { width: 230px; height: 230px; inset: 0; }
.after-pipes i:nth-child(2) { width: 150px; height: 150px; inset: 40px; border-color: #fff; }
.after-pipes i:nth-child(3) { width: 70px; height: 70px; inset: 80px; border-color: var(--coral); }
.before-site { color: #333; background: #ddd; }
.before-site strong { display: block; margin-bottom: 20px; font-family: "Times New Roman", serif; font-size: 38px; line-height: 1.05; }
.before-site p { max-width: 330px; font: 14px "Arial"; }
.before-site button { padding: 8px 14px; color: #fff; background: #555; border: 0; }
.before-boxes { display: flex; gap: 10px; margin-top: 35px; }
.before-boxes i { width: 85px; height: 70px; background: #bbb; border: 1px solid #999; }
.compare-tag { position: absolute; top: 52px; padding: 5px 9px; border-radius: 4px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.tag-after { right: 14px; color: #fff; background: #126a9b; }
.tag-before { left: 14px; color: #fff; background: #555; }
.compare-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.compare-handle { position: absolute; z-index: 4; top: 50%; left: var(--position); width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: #fff; border: 1px solid var(--ink); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 3px 12px rgba(0,0,0,.15); }
.compare-handle span { font-size: 14px; }

/* Process / How it works — Luxury Scrub + pricing-style entrance */

.process-section {
  position: relative;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  color: var(--ink);
  background: var(--paper);
  z-index: 1;
  flex: 1;
  min-height: 0 !important;
  height: 100%;
  max-height: 100%;
  padding: 0 !important;
  justify-content: flex-start;
}

.process-lines {
  position: absolute;
  inset: -6% 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: linear-gradient(rgba(24, 22, 31, 0.55) 1px, transparent 1px);
  background-size: 100% 32px;
  background-position: 0 4px;
  mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
  transform: translate3d(0, calc(var(--bridge, 0) * -70px), 0);
  will-change: transform;
}

/* Process decorative elements — scattered icon field */
.hiw-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hiw-deco-item {
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: var(--s, 36px);
  height: var(--s, 36px);
  color: var(--c, var(--purple));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform 1.2s ease;
  transition-delay: var(--d, 0ms);
  animation: hiw-float var(--f, 6s) ease-in-out infinite;
  animation-delay: var(--d, 0ms);
}
.process-section.is-blended .hiw-deco-item {
  opacity: 0.55;
  transform: translateY(0);
}
.hiw-deco-dots {
  color: transparent;
  background: radial-gradient(circle, var(--lilac) 2.5px, transparent 2.5px);
  background-size: 12px 12px;
}
.hiw-deco-ring {
  border: 2.5px solid var(--c, var(--lilac));
  border-radius: 50%;
  background: transparent;
}
.hiw-deco-cross {
  color: transparent;
}
.hiw-deco-cross::before,
.hiw-deco-cross::after {
  content: "";
  position: absolute;
  background: var(--c, var(--mint));
  border-radius: 2px;
}
.hiw-deco-cross::before {
  width: 2px; height: 100%;
  left: 50%; transform: translateX(-50%);
}
.hiw-deco-cross::after {
  width: 100%; height: 2px;
  top: 50%; transform: translateY(-50%);
}
@keyframes hiw-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-4px) rotate(-2deg); }
}
@media (max-width: 900px) {
  .hiw-deco { display: none; }
}

.process-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -6% 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 232, 92, 0.35), transparent 34%),
    radial-gradient(circle at 88% 28%, rgba(220, 210, 255, 0.45), transparent 36%),
    radial-gradient(circle at 50% 88%, rgba(255, 128, 108, 0.22), transparent 40%);
  transform: translate3d(0, calc(var(--bridge, 0) * -40px), 0);
}

.process-section > .shell {
  position: relative;
  z-index: 1;
  overflow: visible;
  flex: 1;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 12px;
  transform: translate3d(0, calc(var(--bridge, 0) * -36px), 0) scale(calc(1 - var(--bridge, 0) * 0.03));
  transform-origin: center top;
  will-change: transform;
}

.process-section .section-top {
  flex-shrink: 0;
  margin-bottom: 0;
}

.process-section .section-index { color: var(--purple); }
.process-section .section-top > p:last-child { color: var(--muted); }

/* How it works — Horizontal Luxury Scrub + pricing-style entrance */
.process-section [data-hiw-item] {
  opacity: 0;
  transform: translateY(-20px);
  filter: blur(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    filter 500ms ease;
  transition-delay: calc(var(--i, 0) * 0.4s);
  will-change: opacity, transform, filter;
}

.process-section.is-blended [data-hiw-item] {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.hiw-scrub-heading {
  flex-shrink: 0;
  max-width: 820px;
}

.hiw-scrub-heading h2,
.hiw-scrub-heading [data-hiw-cut] {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hiw-scrub-heading [data-hiw-cut] .pricing-cut-muted,
.hiw-scrub-heading h2 span {
  color: var(--muted);
}

.process-section.is-blended .pricing-cut-word > span {
  transform: translateY(0);
}

.hiw-scrub {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hiw-scrub-frame {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.hiw-scrub-track {
  display: flex;
  height: 100%;
  width: 500%;
  will-change: transform;
  transform: translate3d(calc(var(--bridge, 0) * -80%), 0, 0);
}

.hiw-scrub-panel {
  flex: 0 0 20%;
  height: 100%;
  padding: clamp(28px, 4.5vw, 56px);
  display: grid;
  align-content: center;
  align-items: start;
  position: relative;
  box-sizing: border-box;
}

.hiw-scrub-panel:nth-child(1) { background: var(--yellow); }
.hiw-scrub-panel:nth-child(2) { background: var(--lilac); }
.hiw-scrub-panel:nth-child(3) { background: var(--coral); }
.hiw-scrub-panel:nth-child(4) { background: var(--mint); }
.hiw-scrub-panel:nth-child(5) { background: var(--cream); }

.hiw-scrub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  width: max-content;
  color: var(--ink);
}

.hiw-scrub-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

.hiw-scrub-panel h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 14ch;
  color: var(--ink);
}

.hiw-scrub-panel p {
  margin: 0 0 16px;
  max-width: 48ch;
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.55;
  color: rgba(24, 22, 31, 0.78);
}

.hiw-scrub-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-width: 48ch;
}

.hiw-scrub-panel li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(13px, 1.25vw, 15px);
  line-height: 1.45;
  color: rgba(24, 22, 31, 0.82);
  font-weight: 500;
}

.hiw-scrub-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--ink);
}

.hiw-scrub-ticks {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  pointer-events: none;
}

.hiw-scrub-ticks span {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(24, 22, 31, 0.22);
  transition: background 250ms ease, width 250ms ease;
}

.hiw-scrub-ticks span.is-active {
  background: var(--ink);
  width: 42px;
}

@media (min-width: 961px) and (max-height: 800px) {
  .parallax-pin { padding-bottom: 12px; }
  .hiw-scrub-panel { padding: 22px 28px; }
  .hiw-scrub-panel h3 { font-size: clamp(24px, 3.4vw, 40px); margin-bottom: 10px; }
  .hiw-scrub-panel p { font-size: 14px; margin-bottom: 12px; }
  .hiw-scrub-panel li { font-size: 13px; }
}

/* Pricing */

.pricing-section { background: var(--cream); }
.pricing-heading { max-width: 800px; margin-bottom: 28px; flex-shrink: 0; }
.pricing-heading h2,
.pricing-heading [data-pricing-cut] {
  margin: 14px 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
}
.pricing-heading h2 span,
.pricing-heading [data-pricing-cut] .pricing-cut-muted {
  color: inherit;
}
.pricing-heading > p:last-child { max-width: 550px; margin: 0; color: var(--muted); font-size: 15px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; flex: 1; min-height: 0; }

/* Timeline-style blend: blur + rise, staggered like the React prompt */
.pricing-section [data-pricing-item] {
  opacity: 0;
  transform: translateY(-20px);
  filter: blur(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    filter 500ms ease,
    box-shadow 180ms ease-out;
  transition-delay: calc(var(--i, 0) * 0.4s);
  will-change: opacity, transform, filter;
}

.pricing-section.is-blended [data-pricing-item] {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Vertical cut reveal on the pricing headline */
.pricing-cut-word {
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.pricing-cut-word > span {
  display: inline-block;
  transform: translateY(-110%);
  transition: transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--w, 0) * 0.15s);
  will-change: transform;
}

.pricing-section.is-blended .pricing-cut-word > span {
  transform: translateY(0);
}

.price-card {
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 15px;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    filter 500ms ease,
    box-shadow 180ms ease-out;
  transition-delay: calc(var(--i, 0) * 0.4s);
}
.pricing-section.is-blended .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 9px 0 var(--ink);
  transition-delay: 0s;
}
.price-featured { background: var(--lilac); }
.pricing-section.is-blended .price-featured[data-pricing-item] {
  transform: translateY(-10px);
}
.pricing-section.is-blended .price-featured[data-pricing-item]:hover {
  transform: translateY(-15px);
}
.popular { position: absolute; top: 18px; right: 18px; padding: 5px 8px; color: #fff; background: var(--purple); border-radius: 20px; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.price-dot { display: block; width: 12px; height: 12px; margin-bottom: 20px; border-radius: 50%; box-shadow: 0 0 0 6px rgba(0,0,0,.06); }
.dot-blue { background: var(--blue); }
.dot-yellow { background: var(--yellow); }
.dot-pink { background: var(--pink); }
.price-head h3 { margin: 0 0 5px; font-family: var(--display); font-size: 22px; }
.price-head p { margin: 0; color: var(--muted); font-size: 12px; }
.price { display: grid; margin: 20px 0 18px; }
.price small { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.price strong { font-family: var(--display); font-size: 36px; line-height: 1.15; letter-spacing: -.05em; }
.price span { color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.price-card ul { flex: 1; display: grid; gap: 8px; margin: 0 0 20px; padding: 16px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding-left: 21px; color: #514e58; font-size: 12px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--purple); font-weight: 800; }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.button-outline:hover { color: #fff; background: var(--purple); box-shadow: 5px 5px 0 var(--ink); }
.price-card .button { width: 100%; }
.pricing-note { max-width: 660px; margin: 36px auto 0; color: var(--muted); font-size: 11px; text-align: center; }

/* FAQ */

.faq-section { background: #f5efff; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 56px; align-items: start; flex: 1; }
.faq-intro { position: relative; }
.faq-intro h2 { margin: 14px 0 12px; font-family: var(--display); font-size: clamp(36px, 4.2vw, 56px); line-height: 1; letter-spacing: -.05em; }
.faq-intro > p:not(.section-index) { color: var(--muted); }
.faq-intro > a { display: inline-flex; gap: 12px; color: var(--purple); font-weight: 700; text-decoration: none; }
.faq-doodle { width: 96px; height: 96px; margin: 36px auto 0; display: grid; place-items: center; color: var(--purple); background: var(--yellow); border: 2px solid var(--ink); border-radius: 47% 53% 45% 55%; box-shadow: 6px 6px 0 var(--ink); font-family: var(--display); font-size: 52px; font-weight: 800; transform: rotate(-8deg); }
.faq-section [data-faq-item] {
  opacity: 0;
  filter: blur(10px);
  will-change: opacity, filter;
}
.faq-intro[data-faq-item] {
  transition:
    opacity 760ms var(--ease),
    filter 760ms var(--ease);
  transition-delay: calc(var(--faq-step, 0) * 70ms);
}
.faq-item[data-faq-item] {
  transition:
    opacity 680ms var(--ease),
    filter 680ms var(--ease);
  transition-delay: calc(80ms + var(--faq-step, 0) * 90ms);
}
.faq-section.is-flowed [data-faq-item] {
  opacity: 1;
  filter: blur(0);
}
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #cfc7db;
  min-height: var(--faq-list-min, auto);
}
.faq-item {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #cfc7db;
  box-sizing: border-box;
}
.faq-item summary {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: text-decoration-color 160ms ease-out;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover span { text-decoration: underline; text-underline-offset: 3px; }
.faq-item summary i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background 180ms ease-out, transform 200ms ease-out;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%,-50%);
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}
.faq-item summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] summary i,
.faq-item.is-opening summary i { background: var(--yellow); }
.faq-item[open] summary i::after,
.faq-item.is-opening summary i::after {
  transform: translate(-50%,-50%) rotate(0);
}

/* Radix-style accordion height motion */
@keyframes accordion-down {
  from { height: 0; }
  to { height: var(--faq-content-height, 0px); }
}
@keyframes accordion-up {
  from { height: var(--faq-content-height, 0px); }
  to { height: 0; }
}

.faq-panel {
  overflow: hidden;
  height: 0;
}
.faq-item.is-opening .faq-panel {
  animation: accordion-down 0.2s ease-out forwards;
}
.faq-item.is-closing .faq-panel {
  animation: accordion-up 0.2s ease-out forwards;
}
.faq-item[open]:not(.is-opening):not(.is-closing) .faq-panel {
  height: auto;
}
.faq-answer {
  margin: 0;
  padding: 0 50px 16px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Contact */

.contact-section {
  position: relative;
  color: #fff;
  background: var(--purple);
  overflow: hidden;
  isolation: isolate;
}
.contact-colour { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.contact-colour i { position: absolute; border-radius: 50%; filter: blur(55px); opacity: .45; }
.contact-colour i:nth-child(1) { width: 380px; height: 380px; top: -150px; left: -100px; background: var(--pink); }
.contact-colour i:nth-child(2) { width: 340px; height: 340px; right: -80px; bottom: -120px; background: var(--blue); }
.contact-colour i:nth-child(3) { width: 240px; height: 240px; left: 48%; top: 20%; background: var(--coral); opacity: .22; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; flex: 1; }
.kicker-light { color: rgba(255,255,255,.7); }
.kicker-light span { background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,232,92,.15); }
.contact-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(36px, 4.5vw, 58px); line-height: .98; letter-spacing: -.055em; }
.contact-copy h2 em { color: var(--yellow); font-style: normal; }
.contact-copy > p:not(.kicker) { max-width: 500px; margin: 18px 0; color: rgba(255,255,255,.72); font-size: 15px; }
.contact-copy > a { display: inline-flex; gap: 12px; color: #fff; font-weight: 700; text-decoration-color: var(--yellow); text-underline-offset: 5px; }
.contact-inline-link { color: #fff; font-weight: 700; text-decoration-color: var(--yellow); text-underline-offset: 4px; }
.contact-form { padding: 24px; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); border-radius: 15px; box-shadow: 9px 9px 0 var(--yellow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form > label, .field-row label { display: grid; gap: 7px; margin-bottom: 14px; }
.contact-form label > span, .contact-form legend { font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfc9bf;
  border-radius: 7px;
  font-size: 13px;
  resize: vertical;
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
}
.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 0; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(118,87,255,.14); }
.contact-form fieldset { margin: 3px 0 16px; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 9px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 6px; }
.choice-row label { cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row span { display: block; padding: 7px 10px; border: 1px solid #cfc9bf; border-radius: 20px; font-size: 9px; font-weight: 700; text-transform: none; transition: background 150ms ease-out, border-color 150ms ease-out; }
.choice-row input:checked + span { background: var(--lilac); border-color: var(--purple); }
.button-yellow { width: 100%; color: var(--ink); background: var(--yellow); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.button-yellow:hover { background: var(--pink); box-shadow: 6px 6px 0 var(--ink); }
.contact-form > small { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; text-align: center; }

/* Footer and reveals */

.site-footer { padding: 50px 0; color: #fff; background: var(--ink); border-top: 1px solid #3c3841; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.brand-light { color: #fff; }
.footer-grid > div:first-child p { max-width: 340px; margin: 14px 0 0; color: #918d97; font-size: 12px; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { color: #bbb7c0; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0 0 6px; color: #77737d; font-size: 10px; text-transform: uppercase; }

.hero-step { opacity: 0; transform: translateY(20px); }
.ready .hero-step {
  animation: hero-item-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.2s + var(--step, 0) * 0.15s);
}
.hero-step:nth-child(1) { --step: 0; }
.hero-step:nth-child(2) { --step: 1; }
.hero-step:nth-child(3) { --step: 2; }
.hero-step:nth-child(4) { --step: 3; }
.hero-step:nth-child(5) { --step: 4; }
.showcase-wrap.hero-step { --step: 3; }

.hero-colour {
  opacity: 0;
  transform: scale(1.04);
}
.ready .hero > .hero-colour {
  animation: hero-bg-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

/* The difference uses its own scroll zoom — don't inherit hero load-in */
.transformation > .hero-colour {
  animation: none !important;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-header-in {
  to { opacity: 1; transform: none; }
}
@keyframes hero-item-in {
  to { opacity: 1; transform: none; }
}
@keyframes hero-bg-in {
  to { opacity: 1; transform: none; }
}
@keyframes reveal-in { to { opacity: 1; transform: none; } }
.scene-changing .site-preview { animation: scene-change 280ms var(--ease); }
@keyframes scene-change { 50% { opacity: .2; transform: scale(.985); } }

/* Responsive */

@media (max-width: 1000px) {
  .hero { padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > * { margin-inline: auto; }
  .kicker, .hero-actions, .hero-proof { justify-content: center; }
  .showcase-wrap { justify-self: center; margin-top: 20px; }
  .showcase-hint { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .stack-slider-stage { height: 480px; padding: 12px 0 16px; }
  .stack-slider .service-card { min-height: 390px; }
  .stack-slider-controls { margin-top: 8px; }
  .service-icon { margin: 20px 0; }
  .compare-layout { grid-template-columns: 1fr; gap: 45px; }
  .hiw-path { display: none; }
  .parallax-pin-space {
    height: auto;
  }
  .parallax-pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: var(--section-pad, 78px) 0;
  }
  .services-section {
    margin-top: 0;
    transform: none !important;
    box-shadow: none;
  }
  .process-section,
  .process-section > .shell,
  .process-lines,
  .process-section::before,
  .services-parallax-wash {
    transform: none !important;
  }
  .process-section {
    height: auto;
    max-height: none;
    min-height: 0 !important;
    padding: 0 !important;
  }
  .hiw-scrub {
    flex: none;
    height: auto;
  }
  .hiw-scrub-frame {
    height: auto;
    border-radius: 22px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .hiw-scrub-track {
    display: grid;
    width: 100%;
    height: auto;
    gap: 14px;
    transform: none !important;
  }
  .hiw-scrub-panel {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 22px 20px;
    border: 1.5px solid var(--ink);
    border-radius: 20px;
    box-shadow: 5px 5px 0 rgba(24, 22, 31, 0.28);
  }
  .hiw-scrub-panel h3 {
    max-width: none;
    font-size: clamp(24px, 7vw, 34px);
  }
  .hiw-scrub-panel p,
  .hiw-scrub-panel ul {
    max-width: none;
  }
  .hiw-scrub-ticks {
    display: none;
  }
  .pricing-grid { grid-template-columns: 1fr; max-width: 640px; margin: auto; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-5px); }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-doodle { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .desktop-nav, .nav-cta { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    justify-self: end;
    background: var(--ink);
    border: 0;
    border-radius: 7px;
  }
  .menu-button span { width: 17px; height: 2px; background: #fff; transition: transform 160ms ease-out; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    width: var(--shell);
    margin: 6px auto 0;
    padding: 10px;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--ink);
    border-radius: 10px;
    box-shadow: 5px 5px 0 var(--yellow);
    pointer-events: auto;
  }
  .mobile-menu:not([hidden]) { display: flex; }
  .mobile-menu a { padding: 12px; border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 600; text-decoration: none; }
  .mobile-menu a:last-child { color: #fff; background: var(--purple); border: 0; border-radius: 6px; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-lede { font-size: 16px; }
  .browser { transform: none; box-shadow: 8px 10px 0 rgba(118,87,255,.16), 0 20px 50px rgba(46,34,75,.15); }
  .browser:hover { transform: translateY(-3px); }
  .browser-bar { grid-template-columns: 1fr 3fr; }
  .browser-status { display: none; }
  .site-preview { min-height: 400px; }
  .preview-nav { grid-template-columns: 1fr auto; padding-inline: 16px; }
  .preview-nav > div { display: none; }
  .preview-main { min-height: 300px; grid-template-columns: 1fr .68fr; padding: 25px 14px 18px 22px; }
  .preview-title { font-size: 30px; }
  .preview-text { font-size: 8px; }
  .preview-art { height: 220px; }
  .art-sun { width: 110px; height: 110px; }
  .art-shape-a { width: 95px; height: 145px; right: 25px; }
  .art-shape-b { width: 55px; height: 110px; }
  .art-card { left: -12px; bottom: 10px; }
  .preview-footer { min-height: 55px; }
  .scene-tabs { margin-top: 18px; }
  .section {
    --section-pad: 78px;
    --section-body: auto;
    min-height: 0;
    padding: var(--section-pad) 0;
  }
  .intro-section { padding-top: var(--section-pad); }
  .services-section { padding-bottom: var(--section-pad); }
  .stack-slider-controls { margin-top: 10px; }
  .big-statement { font-size: 40px; }
  .intro-body { font-size: 15px; }
  .section-top { flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .section-top > p:last-child { text-align: left; }
  .service-card { min-height: 360px; }
  .stack-slider-stage { height: 440px; }
  .stack-slider .service-card { min-height: 360px; }
  .comparison { height: 360px; }
  .after-site, .before-site { padding: 40px 22px; }
  .after-site strong { font-size: 34px; }
  .hiw-scrub {
    height: auto;
    min-height: 0;
  }
  .hiw-scrub-heading h2,
  .hiw-scrub-heading [data-hiw-cut] {
    font-size: clamp(30px, 9vw, 42px);
  }
  .contact-section { padding: var(--section-pad) 0; }
  .contact-form { padding: 20px; }
  .price-card { padding: 20px; }
  .faq-item summary { font-size: 15px; }
  .contact-copy h2 { font-size: 44px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

/* ─── Testimonials ──────────────────────── */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1rem;
}
.testimonials-header p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
}
.marquee-wrap {
  position: relative;
  width: 100%;
}
.testimonial-marquee {
  display: flex;
  gap: 1.25rem;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.testimonial-marquee:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
  border-top: 1px solid var(--line);
  transition: background .3s;
}
.testimonial-card:hover {
  background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.7));
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 600px) {
  .testimonial-card { width: 280px; padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-step, .reveal, .site-header, .hero-colour,
  .process-section, .hiw-scrub, .hiw-scrub-panel,
  .process-section [data-hiw-item],
  .transformation > .hero-colour,
  .transformation > .shell,
  .transformation [data-zoom-item],
  .pricing-section [data-pricing-item],
  .pricing-cut-word > span,
  .faq-section [data-faq-item] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
  .process-section [data-parallax],
  .services-section [data-parallax],
  .services-section > .shell,
  .parallax-bridge,
  .process-section > .shell,
  .process-lines,
  .process-section::before,
  .services-section,
  .services-parallax-wash {
    translate: none !important;
    transform: none !important;
  }
  .parallax-pin-space { height: auto !important; }
  .parallax-pin { position: relative !important; }
  .services-section { margin-top: 0 !important; }
  .hiw-scrub-track { transform: none !important; }
  .marquee-track { animation: none; }
  .progress { display: none; }
  .hiw-path path { animation: none !important; }
  .stack-slider-stage {
    height: auto;
    perspective: none;
    overflow: visible;
    display: grid;
    gap: 16px;
  }
  .stack-slider .service-card {
    position: relative;
    width: 100%;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
  .stack-slider-controls { display: none; }
}

/* ─── Industry landing pages ──────────────────────── */
.industry-page .site-header { background: rgba(255, 253, 247, 0.92); }
.industry-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.industry-importance::after,
.industry-topics::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.industry-importance::after {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 232, 92, 0.48), transparent 34%),
    radial-gradient(circle at 92% 28%, rgba(220, 210, 255, 0.52), transparent 36%),
    radial-gradient(circle at 48% 100%, rgba(255, 170, 200, 0.28), transparent 42%);
}
.industry-topics::after {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 232, 92, 0.42), transparent 34%),
    radial-gradient(circle at 8% 40%, rgba(220, 210, 255, 0.5), transparent 38%),
    radial-gradient(circle at 70% 95%, rgba(255, 128, 108, 0.22), transparent 40%);
}
.industry-importance::before,
.industry-topics::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(72, 56, 40, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 56, 40, .045) 1px, transparent 1px);
  background-size: 56px 56px;
}
.industry-hero-colour {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 232, 92, 0.4), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(220, 210, 255, 0.5), transparent 38%),
    radial-gradient(circle at 70% 90%, rgba(255, 128, 108, 0.2), transparent 40%);
  pointer-events: none;
}
.industry-lilac .industry-hero-colour {
  background:
    radial-gradient(circle at 14% 18%, rgba(220, 210, 255, 0.55), transparent 38%),
    radial-gradient(circle at 86% 30%, rgba(118, 87, 255, 0.18), transparent 36%),
    radial-gradient(circle at 50% 92%, rgba(255, 232, 92, 0.25), transparent 40%);
}
.industry-coral .industry-hero-colour {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 128, 108, 0.35), transparent 38%),
    radial-gradient(circle at 84% 20%, rgba(255, 232, 92, 0.35), transparent 36%),
    radial-gradient(circle at 55% 90%, rgba(220, 210, 255, 0.35), transparent 40%);
}
.industry-mint .industry-hero-colour {
  background:
    radial-gradient(circle at 18% 20%, rgba(140, 232, 200, 0.4), transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(220, 210, 255, 0.4), transparent 36%),
    radial-gradient(circle at 48% 92%, rgba(255, 232, 92, 0.22), transparent 40%);
}
.industry-hero .shell { position: relative; z-index: 1; max-width: 820px; }
.industry-hero h1 {
  margin: 16px 0 18px;
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.industry-lede {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}
.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.industry-importance {
  position: relative;
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.industry-importance > .shell,
.industry-topics > .shell,
.industry-pitch > .shell {
  position: relative;
  z-index: 2;
}
.industry-importance-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.2fr);
  gap: 36px 56px;
  align-items: start;
}
.industry-importance h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.industry-importance-grid > div:last-child p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.location-page .industry-importance-grid > div:last-child p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.75;
}

.industry-pitch { background: var(--cream); }
.industry-pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.industry-pitch-stack {
  display: grid;
  gap: 36px;
  align-content: center;
}
.industry-pitch .section-media {
  width: min(100%, 360px);
}
.industry-pitch h2 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.industry-pitch p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Blur-fade stagger — same blend on every industry section */
.industry-page [data-industry-item] {
  opacity: 0;
  transform: translateY(-18px);
  filter: blur(10px);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    filter 560ms ease;
  transition-delay: var(--industry-delay, 0ms);
}
.industry-page [data-industry-blend].is-blended [data-industry-item] {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.industry-topics {
  position: relative;
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
}
.industry-topic-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
}
.industry-topic {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 5px 0 var(--ink);
}
.industry-topic-arrow {
  display: grid;
  place-items: center;
  color: var(--purple);
  align-self: center;
}
.industry-topic-arrow svg {
  width: 28px;
  height: 28px;
}
.industry-topic-num {
  display: block;
  margin-bottom: 12px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.industry-topic h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
}
.industry-topic p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.industry-seo { background: #f5efff; }
.industry-seo-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px 56px;
  align-items: center;
  margin-top: 8px;
}
.industry-seo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.industry-seo-list li {
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 3px 3px 0 var(--yellow);
}
.industry-seo-copy {
  max-width: 520px;
}
.industry-seo-copy h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.industry-seo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.location-suburbs { background: #f5efff; }
.location-suburbs-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
  gap: 40px 52px;
  align-items: center;
  margin-top: 8px;
}
.location-suburbs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.location-suburbs-list li {
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 3px 3px 0 var(--lilac);
}
.location-page.industry-yellow .location-suburbs-list li { box-shadow: 3px 3px 0 var(--yellow); }
.location-page.industry-mint .location-suburbs-list li { box-shadow: 3px 3px 0 var(--mint); }
.location-page.industry-coral .location-suburbs-list li { box-shadow: 3px 3px 0 var(--coral); }
.location-suburbs-copy {
  max-width: 520px;
}
.location-suburbs-copy h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.location-suburbs-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-insight { background: #fff6e8; }
.service-insight-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: 40px 52px;
  align-items: start;
  margin-top: 8px;
}
.service-insight-copy {
  max-width: 520px;
  padding-top: 6px;
}
.service-insight-copy h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.service-insight-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.service-insight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 148px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--yellow);
}
.industry-page.industry-coral .service-stat { box-shadow: 4px 4px 0 var(--coral); }
.industry-page.industry-lilac .service-stat { box-shadow: 4px 4px 0 var(--lilac); }
.industry-page.industry-mint .service-stat { box-shadow: 4px 4px 0 var(--mint); }
.service-stat strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.service-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

/* Landing-page section seams — next section overlaps with a shaped TOP edge.
   That section's background fills the shape; cutaways reveal the section above. */
.seam-page #main {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 232, 92, 0.28), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(220, 210, 255, 0.32), transparent 24%),
    var(--paper);
  overflow: clip;
}
.seam-page .industry-hero,
.seam-page .industry-importance,
.seam-page .industry-pitch,
.seam-page .industry-topics,
.seam-page .service-insight,
.seam-page .industry-seo,
.seam-page .location-suburbs,
.seam-page .industry-process,
.seam-page .industry-cta {
  position: relative;
}
.seam-page .industry-hero {
  z-index: 1;
  background: transparent;
  overflow: visible;
  padding-bottom: 120px;
}
.seam-page .industry-importance,
.seam-page .industry-pitch,
.seam-page .industry-topics,
.seam-page .service-insight,
.seam-page .industry-seo,
.seam-page .location-suburbs,
.seam-page .industry-process,
.seam-page .industry-cta {
  margin-top: -88px;
  padding-top: calc(var(--section-pad) + 88px);
  padding-bottom: var(--section-pad);
  margin-bottom: 0;
}
.seam-page .industry-importance {
  z-index: 2;
  overflow: visible;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 232, 92, 0.5), transparent 42%),
    radial-gradient(circle at 88% 0%, rgba(220, 210, 255, 0.55), transparent 44%),
    radial-gradient(circle at 48% 8%, rgba(255, 153, 200, 0.22), transparent 48%),
    var(--paper);
}
.seam-page .industry-pitch {
  z-index: 3;
  background: var(--cream);
}
.seam-page .industry-topics {
  z-index: 4;
  overflow: visible;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 232, 92, 0.42), transparent 40%),
    radial-gradient(circle at 10% 4%, rgba(220, 210, 255, 0.5), transparent 42%),
    radial-gradient(circle at 60% 10%, rgba(255, 128, 108, 0.18), transparent 46%),
    var(--paper);
}
.seam-page .service-insight {
  z-index: 5;
  background: #fff6e8;
}
.seam-page .industry-seo {
  z-index: 5;
  background: #f5efff;
}
.seam-page .location-suburbs {
  z-index: 5;
  background: #f5efff;
}
.seam-page .industry-process {
  z-index: 6;
  background: var(--cream);
}
.seam-page .industry-cta {
  z-index: 7;
  background: var(--ink);
  padding-top: calc(var(--section-pad) + 100px);
}

/* Top-edge shapes — each section's background fills the shape solidly */
.seam-page .seam-wave {
  clip-path: polygon(
    0% 56px,
    14% 18px,
    28% 52px,
    42% 12px,
    50% 48px,
    58% 12px,
    72% 52px,
    86% 18px,
    100% 56px,
    100% 100%,
    0% 100%
  );
}
.seam-page .seam-curve {
  clip-path: polygon(
    0% 64px,
    20% 24px,
    50% 0px,
    80% 24px,
    100% 64px,
    100% 100%,
    0% 100%
  );
}
.seam-page .seam-angle {
  clip-path: polygon(
    0% 0px,
    100% 72px,
    100% 100%,
    0% 100%
  );
}
.seam-page .seam-organic {
  clip-path: polygon(
    0% 58px,
    12% 20px,
    26% 54px,
    40% 14px,
    54% 50px,
    68% 14px,
    82% 54px,
    100% 58px,
    100% 100%,
    0% 100%
  );
}
.seam-page .seam-ripple {
  clip-path: polygon(
    0% 60px,
    16% 18px,
    32% 56px,
    48% 16px,
    64% 56px,
    80% 18px,
    100% 60px,
    100% 100%,
    0% 100%
  );
}
.seam-page .seam-slant {
  clip-path: polygon(
    0% 72px,
    100% 0px,
    100% 100%,
    0% 100%
  );
}

.industry-process { background: var(--cream); }
.industry-process-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.industry-process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
}
.industry-process-list li > span {
  color: var(--purple);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.industry-process-list h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
}
.industry-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.industry-cta { background: var(--ink); padding: var(--section-pad) 0; }
.industry-cta-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.industry-cta h2 {
  margin: 12px 0 14px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.industry-cta p {
  margin: 0 auto 26px;
  max-width: 520px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.industry-cta .button-yellow { width: auto; display: inline-flex; }

/* Blog index + posts */
.blog-index-section,
.blog-article-section,
.blog-related-section {
  position: relative;
  z-index: 2;
}
.blog-card {
  display: grid;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 6px 6px 0 var(--yellow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--yellow);
}
.blog-card-featured {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  margin-bottom: 28px;
  align-items: stretch;
}
.blog-card-media {
  margin: 0;
  background: var(--cream);
  min-height: 220px;
}
.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.blog-card-featured .blog-card-media img {
  min-height: 320px;
  aspect-ratio: 1 / 1;
}
.blog-card-body {
  padding: 22px 22px 24px;
  display: grid;
  gap: 12px;
  align-content: center;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card-meta span:first-child {
  color: var(--purple);
}
.blog-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.blog-card-cta {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-grid .blog-card {
  grid-template-rows: auto 1fr;
}
.blog-grid .blog-card-media img {
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.blog-grid-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-article-hero {
  padding: 140px 0 48px;
  background:
    radial-gradient(ellipse 70% 55% at 12% 18%, rgba(255, 214, 74, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 20%, rgba(168, 139, 255, 0.22), transparent 55%),
    var(--paper);
}
.blog-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr);
  gap: 40px;
  align-items: center;
}
.blog-article-hero h1 {
  margin: 14px 0 16px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.blog-article-lede {
  margin: 0 0 18px;
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}
.blog-article-hero-media {
  margin: 0;
  width: min(100%, 360px);
  justify-self: end;
}
.blog-article-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--yellow);
}
.blog-article-content {
  max-width: 760px;
  display: grid;
  gap: 28px;
}
.blog-article-intro {
  display: grid;
  gap: 14px;
}
.blog-article-intro p,
.blog-article-block p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.blog-article-block {
  display: grid;
  gap: 12px;
}
.blog-article-block h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.04em;
  color: var(--ink);
}
.blog-article-sub {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 214, 74, 0.12);
  border-radius: 0 14px 14px 0;
}
.blog-article-sub h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.blog-ticks,
.blog-bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.blog-ticks li,
.blog-bullets li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}
.blog-ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.blog-bullets li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
}
.blog-faq {
  gap: 14px;
}
.blog-faq-item {
  border: 1px solid rgba(20, 18, 28, 0.12);
  border-radius: 14px;
  background: #fff;
  padding: 4px 16px;
}
.blog-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}
.blog-faq-item summary::-webkit-details-marker { display: none; }
.blog-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-weight: 800;
}
.blog-faq-item[open] summary::after { content: "–"; }
.blog-faq-item p {
  margin: 0 0 14px;
  padding-top: 0;
}
.blog-article-content a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-article-cta {
  margin-top: 12px;
  padding: 28px;
  border: 1px solid var(--ink);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--yellow);
}
.blog-article-cta h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}
.blog-article-cta p {
  margin: 0 0 18px;
  color: var(--muted);
}
.blog-back {
  margin: 28px 0 0;
}
.blog-related-section {
  background: var(--cream);
}
.seam-page .blog-index-section,
.seam-page .blog-article-section {
  z-index: 2;
  background: var(--paper);
}
.seam-page .blog-related-section {
  z-index: 3;
  background: var(--cream);
}

@media (max-width: 980px) {
  .blog-grid,
  .blog-grid-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-card-featured {
    grid-template-columns: 1fr;
  }
  .blog-article-hero-grid {
    grid-template-columns: 1fr;
  }
  .blog-article-hero-media {
    justify-self: start;
    width: min(100%, 300px);
  }
}
@media (max-width: 700px) {
  .blog-grid,
  .blog-grid-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .industry-pitch-grid,
  .industry-importance-grid { grid-template-columns: 1fr; gap: 28px; }
  .industry-topic-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .industry-topic-arrow {
    transform: rotate(90deg);
    padding: 2px 0;
  }
}
@media (max-width: 800px) {
  .industry-seo-layout,
  .location-suburbs-layout,
  .service-insight-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .industry-hero { padding: 120px 0 60px; }
  .industry-seo-list,
  .location-suburbs-list { grid-template-columns: 1fr 1fr; }
  .service-insight-stats { grid-template-columns: 1fr; }
  .service-stat { min-height: 0; }
  .industry-process-list li { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px; }
}

/* Booking page */
.book-page .site-header { background: rgba(255, 253, 247, 0.92); }
.book-intro-section {
  padding: 140px 0 72px;
  background:
    radial-gradient(ellipse 65% 50% at 10% 12%, rgba(255, 214, 74, 0.32), transparent 58%),
    radial-gradient(ellipse 50% 45% at 92% 18%, rgba(168, 139, 255, 0.2), transparent 55%),
    var(--paper);
}
.book-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.85fr);
  gap: 48px;
  align-items: start;
}
.book-intro-copy h1 {
  margin: 14px 0 18px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.book-intro-copy h1 em {
  color: var(--purple);
  font-style: normal;
}
.book-intro-lede {
  margin: 0 0 16px;
  max-width: 38rem;
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
}
.book-intro-copy > p:last-of-type {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.book-intro-aside {
  padding: 26px 26px 28px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 7px 7px 0 var(--yellow);
}
.book-intro-aside h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}
.book-expect-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.book-expect-list li {
  display: grid;
  gap: 4px;
}
.book-expect-list strong {
  font-size: 14px;
  color: var(--ink);
}
.book-expect-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.book-intro-note {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.book-booking-section {
  padding: var(--section-pad, 88px) 0;
}
.book-booking-head {
  max-width: 640px;
  margin-bottom: 36px;
}
.book-booking-head h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}
.book-booking-head > p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}
.book-booking-head a {
  color: #fff;
  font-weight: 700;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
}
.book-booking-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.book-details-card,
.book-calendar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 13px;
  box-shadow: 6px 6px 0 var(--yellow);
}
.book-details-card h3,
.book-calendar-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.03em;
}
.book-form > label {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.book-details-card.contact-form {
  padding: 14px 16px;
}
.book-details-card .field-row {
  gap: 10px;
}
.book-details-card.contact-form > label,
.book-details-card .field-row label {
  margin-bottom: 10px;
}
.book-details-card fieldset {
  margin: 0 0 10px;
}
.book-details-card textarea {
  min-height: 64px;
}
.book-details-card .button-yellow {
  margin-top: auto;
}
.book-details-card > small {
  margin-top: 12px;
}
.book-calendar {
  margin-bottom: 10px;
}
.book-times {
  margin-top: auto;
}
.book-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.book-cal-month {
  margin: 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.book-cal-nav {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.book-cal-nav:hover {
  background: var(--lilac);
  transform: translateY(-1px);
}
.book-cal-weekdays,
.book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.book-cal-weekdays {
  margin-bottom: 6px;
}
.book-cal-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-cal-day {
  aspect-ratio: 1 / 1;
  max-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.book-cal-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.book-cal-day:not(.is-disabled):hover {
  background: var(--lilac);
  border-color: var(--purple);
}
.book-cal-day.is-today {
  border-color: var(--ink);
}
.book-cal-day.is-selected {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.book-cal-day.is-disabled,
.book-cal-day:disabled {
  color: #b7b2bc;
  cursor: not-allowed;
  opacity: 0.55;
}
.book-times-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-times-label span {
  color: var(--purple);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.book-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.book-time {
  min-height: 32px;
  padding: 5px 8px;
  border: 1px solid #cfc9bf;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.book-time:hover:not(:disabled) {
  border-color: var(--purple);
  background: var(--lilac);
}
.book-time.is-selected {
  background: var(--yellow);
  border-color: var(--ink);
}
.book-time:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.book-slot-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.book-slot-hint.is-error {
  color: #b42318;
  font-weight: 600;
}
.book-prepare {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.1);
  backdrop-filter: blur(6px);
}
.book-prepare-kicker {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.book-prepare h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.03em;
  color: #fff;
}
.book-prepare > p {
  margin: 0 0 16px;
  max-width: 54rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}
.book-prepare-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: prepare;
}
.book-prepare-steps li {
  position: relative;
  display: grid;
  gap: 6px;
  padding-top: 28px;
  counter-increment: prepare;
}
.book-prepare-steps li::before {
  content: counter(prepare);
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}
.book-prepare-steps strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.book-prepare-steps span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .book-intro-grid,
  .book-booking-panels {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .book-details-card,
  .book-calendar-card {
    min-height: 0;
  }
  .book-prepare-steps {
    grid-template-columns: 1fr 1fr;
  }
  .book-intro-section {
    padding: 120px 0 56px;
  }
}
@media (max-width: 600px) {
  .book-prepare-steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-page [data-industry-item] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
