:root {
  --bone: #EFEEEA;
  --ink: #101214;
  --red: #D92B1B;
  --red-deep: #B8200F;
  --font-display: 'Instrument Serif', 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label: 'Inter Tight', 'Inter', sans-serif;
  --maxw: 1360px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(217,43,27,0.28); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

@keyframes shinyRed {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

.grain-page {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; mix-blend-mode: multiply;
}

.liquid-glass {
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: none; position: relative; overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  transition: transform 0.25s var(--ease);
}
.liquid-glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
a.liquid-glass:hover, .liquid-glass.hoverable:hover { transform: scale(1.03); }

/* Fixed background video */
.bg-video-wrap { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.bg-dim { position: absolute; inset: 0; background: var(--ink); opacity: 0.62; }
.bg-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,18,20,0.3) 0%, rgba(16,18,20,0) 30%, rgba(16,18,20,0.75) 100%); }

/* Vertical guide hairlines (desktop only) */
.guide-line { position: fixed; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.07); z-index: 5; pointer-events: none; display: none; }
@media (min-width: 1460px) {
  .guide-line { display: block; }
  .guide-line--l { left: calc(50% - 680px); }
  .guide-line--r { left: calc(50% + 679px); }
}

/* TRIGRAMS PIXEL ICONS (assets/icons/ts-*.svg) */
.ts-icon { width: 14px; height: 14px; flex: none; display: inline-block; vertical-align: -2px; }

/* NAV */
.nav-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,18,20,0.5); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-bar.scrolled { background: rgba(12,13,15,0.86); border-color: rgba(255,255,255,0.1); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
header.site-nav {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  gap: 16px;
}
.nav-logo { width: 42px; height: 42px; border-radius: 999px; overflow: hidden; display: block; flex: none; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.nav-logo video { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-links {
  display: none; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0; margin-top: 1px;
  background: rgba(12,13,15,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6px 24px 14px;
  max-height: calc(100vh - 74px); overflow-y: auto;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-body); font-size: 16px; font-weight: 500; color: rgba(239,238,234,0.75);
  transition: color 0.2s; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:last-child { border-bottom: none; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-cta { border-radius: 999px; padding: 11px 22px; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--bone); cursor: pointer; display: inline-block; white-space: nowrap; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14);
  background: transparent; color: var(--bone); cursor: pointer; padding: 0;
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 860px) {
  .nav-links {
    display: flex !important; flex-direction: row; gap: 32px; align-items: center;
    position: static; background: none; backdrop-filter: none; border: none; padding: 0; max-height: none; overflow: visible;
  }
  .nav-links a { padding: 0; border: none; font-size: 14px; }
  .nav-toggle { display: none; }
}

/* HERO */
.hero { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 90px 24px 100px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; font-optical-sizing: auto;
  font-size: clamp(38px, 7vw, 78px); line-height: 1.0; letter-spacing: -0.025em; color: var(--bone); margin: 0; max-width: 15ch;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  background-image: linear-gradient(to right, #55150b 0%, #8F1C0E 18%, #F3A79B 38%, #D92B1B 54%, #8F1C0E 74%, #55150b 100%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  animation: shinyRed 6s linear infinite;
}
.hero-sub { font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: rgba(239,238,234,0.62); margin: 32px 0 0; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 44px; align-items: center; }
.hero-cta a.liquid-glass { border-radius: 999px; padding: 17px 44px; font-family: var(--font-body); font-size: 16px; font-weight: 500; }
.hero-note { font-family: var(--font-body); font-size: 13px; color: rgba(239,238,234,0.4); margin: 18px 0 0; }

/* MENU BAR STRIP */
.menubar { position: relative; z-index: 10; height: 40px; background: rgba(10,11,12,0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.menubar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.6); }
.menubar-left { display: flex; align-items: center; gap: 18px; overflow: hidden; }
.menubar-left span:not(.menubar-logo) { display: none; }
@media (min-width: 640px) { .menubar-left span:not(.menubar-logo) { display: inline; } }
.menubar-logo { width: 18px; height: 18px; border-radius: 999px; overflow: hidden; display: inline-flex; flex: none; }
.menubar-logo video { width: 100%; height: 100%; object-fit: cover; }
.menubar-right { display: flex; align-items: center; gap: 14px; flex: none; }

/* BUILD WINDOW MOCKUP */
.build-window { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: rgba(14,16,18,0.88); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.build-titlebar { display: flex; align-items: center; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; }
.build-dots { display: flex; gap: 8px; }
.build-dots span { width: 12px; height: 12px; border-radius: 999px; display: block; }
.build-titlebar-label { position: absolute; left: 50%; transform: translateX(-50%); font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.5); display: none; }
@media (min-width: 500px) { .build-titlebar-label { display: block; } }
.build-body { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .build-body { grid-template-columns: 280px 1fr; height: 560px; } }
.build-sidebar { border-right: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.3); padding: 18px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.build-sidebar-label { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px; color: rgba(239,238,234,0.4); margin: 4px 0 10px; display: flex; align-items: center; gap: 6px; }
.build-sidebar-label .ts-icon { width: 11px; height: 11px; opacity: 0.6; }
.build-steps { display: flex; flex-direction: column; gap: 6px; }
.build-step { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 10px; font-family: var(--font-body); font-size: 13px; color: rgba(239,238,234,0.6); border: none; background: transparent; width: 100%; text-align: left; cursor: pointer; appearance: none; -webkit-appearance: none; transition: background 0.2s, color 0.2s; }
.build-step:hover { background: rgba(255,255,255,0.05); color: var(--bone); }
.build-step span:last-child { font-size: 11px; color: rgba(239,238,234,0.35); flex: none; margin-left: 12px; }
.build-step--active { background: rgba(255,255,255,0.1); font-weight: 500; color: var(--bone); }
.build-step-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,0.08); }
.build-step-bar i { display: block; height: 100%; width: 0%; background: var(--red); animation: buildProgress linear forwards; }
@keyframes buildProgress { from { width: 0%; } to { width: 100%; } }
.build-assets { display: flex; flex-direction: column; gap: 9px; padding: 0 12px; font-family: var(--font-body); font-size: 13px; color: rgba(239,238,234,0.6); min-height: 96px; }
.build-asset { display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(6px); animation: assetIn 0.5s var(--ease) forwards; }
@keyframes assetIn { to { opacity: 1; transform: none; } }
.build-asset-check { width: 16px; height: 16px; border-radius: 999px; flex: none; background: var(--red); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; line-height: 1; }
.build-asset-empty { font-style: italic; color: rgba(239,238,234,0.35); }
.build-preview { position: relative; background: var(--bone); overflow: hidden; min-height: 340px; display: flex; flex-direction: column; }
.build-preview-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; border-bottom: 1px solid #D8D8D4; }
.build-preview-pill { font-family: var(--font-body); font-size: 11px; font-weight: 500; color: #5A5E63; border: 1px solid #D8D8D4; border-radius: 999px; padding: 6px 14px; transition: background 0.3s, color 0.3s, border-color 0.3s; white-space: nowrap; }
.build-preview-pill.is-live { color: #fff; background: #1f8f4e; border-color: #1f8f4e; }
.build-preview-stage { position: relative; flex: 1; min-height: 430px; }
@media (min-width: 760px) { .build-preview-stage { min-height: 0; } }
.build-preview-brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 400; font-size: 15px; letter-spacing: -0.02em; color: #15171A; }
.build-preview-brand img { width: 22px; height: 22px; border-radius: 999px; object-fit: cover; flex: none; }

/* Stages */
.build-stage { position: absolute; inset: 0; padding: 28px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0s 0.5s; }
.build-stage.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }

/* Stage 1 — chat */
.build-stage--chat { display: flex; flex-direction: column; gap: 12px; justify-content: center; max-width: 460px; }
.chat-bubble { font-family: var(--font-body); font-size: 13px; line-height: 1.55; padding: 12px 16px; border-radius: 16px; max-width: 78%; opacity: 0; transform: translateY(10px) scale(0.95); }
.build-stage--chat.is-active .chat-bubble { animation: chatIn 0.45s var(--ease) forwards; animation-delay: var(--d); }
@keyframes chatIn { to { opacity: 1; transform: none; } }
.chat-bubble--client { align-self: flex-start; background: #fff; color: #2A2D30; border: 1px solid #DDDDD8; border-bottom-left-radius: 5px; }
.chat-bubble--studio { align-self: flex-end; background: #15171A; color: #EFEEEA; border-bottom-right-radius: 5px; }

/* Stage 2 — moodboard */
.mood-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(72px, auto); gap: 12px; max-width: 460px; height: 100%; align-content: center; }
.mood-tile { border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; padding: 10px; background: #fff; border: 1px solid #E2E2DD; box-shadow: 0 8px 20px rgba(21,23,26,0.07); opacity: 0; transform: translateY(14px) rotate(-1.5deg) scale(0.92); font-family: var(--font-body); font-size: 10px; color: #6A6E72; }
.build-stage--mood.is-active .mood-tile { animation: moodIn 0.5s var(--ease) forwards; animation-delay: var(--d); }
@keyframes moodIn { to { opacity: 1; transform: none; } }
.mood-tile--logo img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.mood-tile--swatch1 { background: #7A9B76; color: rgba(255,255,255,0.85); font-weight: 600; letter-spacing: 0.06em; }
.mood-tile--swatch2 { background: #F4EFE6; color: #8A8478; font-weight: 600; letter-spacing: 0.06em; }
.mood-tile--type .mood-aa { font-family: var(--font-display); font-size: 26px; color: #15171A; line-height: 1; }
.mood-tile--photo { padding: 0; grid-column: span 2; }
.mood-tile--photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mood-tile--note { grid-column: span 3; flex-direction: row; text-align: left; justify-content: flex-start; font-size: 11px; font-style: italic; padding: 12px 16px; }

/* Stage 3–5 — the built page */
.build-stage--content { display: flex; flex-direction: column; padding: 24px 28px; }
.bp-navlinks { display: none; gap: 20px; font-family: var(--font-body); font-size: 12px; font-weight: 500; color: #7A7E82; }
@media (min-width: 640px) { .bp-navlinks { display: flex; } }
.bp-cols { display: grid; grid-template-columns: 1fr; gap: 22px; flex: 1; min-height: 0; align-items: stretch; }
@media (min-width: 760px) { .bp-cols { grid-template-columns: 1.15fr 0.85fr; } }
.bp-text { position: relative; padding-top: 8px; max-width: 440px; }
.bp-el { opacity: 0; transform: translateY(14px); }
.build-stage--content.is-active .bp-el { animation: bpIn 0.55s var(--ease) forwards; animation-delay: calc(var(--i) * 0.14s + 0.1s); }
@keyframes bpIn { to { opacity: 1; transform: none; } }
.build-preview-eyebrow { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px; color: #9A9DA1; margin-bottom: 12px; }
.build-preview-h { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.08; letter-spacing: -0.02em; color: #15171A; }
@media (min-width: 500px) { .build-preview-h { font-size: 31px; } }
.build-preview-h em { font-style: italic; font-weight: 400; color: #7A9B76; }
.bp-para { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: #5A5E63; margin: 12px 0 0; max-width: 42ch; }
.bp-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.bp-btn { display: inline-block; background: #15171A; color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 500; border-radius: 10px; padding: 11px 22px; transition: background 0.45s var(--ease), transform 0.45s var(--ease); }
.bp-link { font-family: var(--font-body); font-size: 12px; font-weight: 500; color: #5A5E63; text-decoration: underline; text-underline-offset: 3px; }
.build-preview.is-review .bp-btn, .build-preview.is-live .bp-btn { background: var(--red); }
.build-preview.is-review .bp-btn { animation: btnPop 0.5s var(--ease) 0.7s; }
@keyframes btnPop { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
.bp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.bp-chips span { font-family: var(--font-body); font-size: 11px; color: #5A5E63; border: 1px solid #DCDCD7; border-radius: 999px; padding: 5px 12px; background: #fff; }
.bp-photo { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid #E2E2DD; box-shadow: 0 14px 34px rgba(21,23,26,0.12); display: none; min-height: 220px; }
@media (min-width: 760px) { .bp-photo { display: block; } }
.bp-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bp-photo-tag { position: absolute; left: 12px; bottom: 12px; background: rgba(21,23,26,0.88); color: #EFEEEA; font-family: var(--font-body); font-size: 11px; font-weight: 500; padding: 7px 12px; border-radius: 9px; backdrop-filter: blur(6px); }
.bp-statbar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #E0E0DB; flex: none; }
.bp-statbar b { font-family: var(--font-display); font-weight: 400; font-size: 21px; letter-spacing: -0.01em; color: #15171A; display: block; line-height: 1.1; }
.bp-statbar span { font-family: var(--font-body); font-size: 11px; color: #8A8E92; }
.build-annotation { position: absolute; right: 0; top: -14px; opacity: 0; transform: translateY(6px) scale(0.9); transform-origin: right top; transition: opacity 0.4s var(--ease) 0.5s, transform 0.4s var(--ease) 0.5s; pointer-events: none; background: #15171A; color: #EFEEEA; font-family: var(--font-body); font-size: 12px; padding: 8px 12px; border-radius: 10px; border-top-right-radius: 3px; display: flex; align-items: center; gap: 6px; box-shadow: 0 10px 24px rgba(0,0,0,0.25); white-space: nowrap; }
.build-annotation.is-active { opacity: 1; transform: none; }
.build-badge { position: absolute; right: 24px; bottom: 24px; background: rgba(21,23,26,0.92); backdrop-filter: blur(8px); border-radius: 14px; padding: 14px 18px; display: none; align-items: center; gap: 12px; box-shadow: 0 12px 32px rgba(0,0,0,0.25); opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); pointer-events: none; }
@media (min-width: 640px) { .build-badge { display: flex; } }
.build-badge.is-active { opacity: 1; transform: none; }
.build-note { text-align: center; font-family: var(--font-body); font-size: 14px; color: rgba(239,238,234,0.45); margin: 28px 0 0; }

/* CLIENTS MARQUEE */
.clients-label { text-align: center; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: rgba(239,238,234,0.45); }
.marquee-outer { overflow: hidden; margin-top: 36px; }
.marquee-track { display: flex; width: max-content; gap: 22px; animation: marqueeScroll 36s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.client-tile { width: 88px; height: 88px; border-radius: 999px; background: #F8F8F6; border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; overflow: hidden; flex: none; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.client-tile:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.client-tile img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.client-tile span { font-family: var(--font-display); font-weight: 400; font-size: 19px; letter-spacing: -0.01em; color: #15171A; }

/* EXAMPLES + CASE STUDIES */
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: rgba(239,238,234,0.5); }
.section-eyebrow i { width: 6px; height: 6px; border-radius: 999px; flex: none; background: var(--bone); }
.section-eyebrow i.red { background: var(--red); }
.section-h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4.5vw, 48px); line-height: 1.05; letter-spacing: -0.02em; color: var(--bone); margin: 22px 0 0; }
.section-h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.section-sub { font-family: var(--font-body); font-size: clamp(15px, 1.8vw, 17px); line-height: 1.65; color: rgba(239,238,234,0.6); margin: 24px 0 0; }

.examples-carousel { margin-top: 44px; overflow: hidden; }
.examples-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.examples-track::-webkit-scrollbar { display: none; }
.example-card { flex: 0 0 82%; scroll-snap-align: start; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--ease); }
@media (min-width: 640px) { .example-card { flex: 0 0 46%; } }
@media (min-width: 900px) { .example-card { flex: 0 0 31%; } }
.example-card:hover { transform: translateY(-4px); }
.example-chrome { display: flex; align-items: center; gap: 10px; padding: 9px 14px; flex: none; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.example-chrome-dots { display: flex; gap: 5px; flex: none; }
.example-chrome-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(239,238,234,0.18); }
.example-chrome-dots i:first-child { background: rgba(214,69,48,0.55); }
.example-chrome-url { font-family: var(--font-body); font-size: 11px; color: rgba(239,238,234,0.45); background: rgba(255,255,255,0.05); border-radius: 6px; padding: 3px 10px; flex: 1; min-width: 0; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.example-shot { position: relative; display: block; height: 260px; overflow: hidden; flex: none; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); cursor: pointer; }
.example-shot img { width: 100%; height: auto; display: block; transition: transform 7s cubic-bezier(0.33, 0, 0.3, 1); }
.example-card:hover .example-shot img { transform: translateY(calc(-100% + 260px)); }
.example-shot-hint { position: absolute; left: 50%; bottom: 14px; transform: translate(-50%, 6px); display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(12,12,11,0.78); backdrop-filter: blur(6px); font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: rgba(239,238,234,0.9); white-space: nowrap; opacity: 0; transition: opacity 0.25s, transform 0.25s var(--ease); pointer-events: none; }
.example-card:hover .example-shot-hint { opacity: 1; transform: translate(-50%, 0); }
@media (prefers-reduced-motion: reduce) {
  .example-shot img, .example-card:hover .example-shot img { transition: none; transform: none; }
}
.example-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px; }
.example-placeholder span { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.35); }
.example-meta { display: flex; flex-direction: column; gap: 3px; padding: 13px 16px 14px; transition: background 0.2s; }
.example-meta:hover { background: rgba(255,255,255,0.05); }
.example-meta-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.example-name { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--bone); }
.example-host { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 8px; }
.carousel-btn { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); background: transparent; color: var(--bone); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s, transform 0.2s, opacity 0.2s; padding: 0; flex: none; }
.carousel-btn:hover:not(:disabled) { background: rgba(255,255,255,0.08); transform: scale(1.06); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,0.2); transition: background 0.25s, transform 0.25s; padding: 0; border: none; cursor: pointer; flex: none; }
.carousel-dot.is-active { background: var(--red); transform: scale(1.35); }

.cs-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 52px; }
@media (min-width: 700px) { .cs-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1020px) { .cs-grid { grid-template-columns: repeat(3,1fr); } }
.cs-card { border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.cs-shot { height: 190px; overflow: hidden; flex: none; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.cs-shot img { width: 100%; height: auto; display: block; transition: transform 2.4s var(--ease); }
.cs-card:hover .cs-shot img { transform: translateY(-35%); }
.cs-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.cs-head { display: flex; align-items: center; gap: 12px; }
.cs-logo { width: 40px; height: 40px; border-radius: 999px; background: #F8F8F6; overflow: hidden; flex: none; display: flex; align-items: center; justify-content: center; }
.cs-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.cs-logo span { font-family: var(--font-display); font-weight: 400; font-size: 13px; color: #15171A; }
.cs-name { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--bone); }
.cs-line { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.5); margin-top: 2px; }
.cs-visit { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 12px; font-weight: 500; color: rgba(239,238,234,0.7); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 7px 13px; flex: none; transition: background 0.2s, color 0.2s; }
.cs-visit:hover { background: rgba(255,255,255,0.06); color: var(--bone); }
.cs-turnaround { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; color: rgba(239,238,234,0.45); display: flex; align-items: center; gap: 8px; }
.cs-turnaround .ts-icon { width: 12px; height: 12px; opacity: 0.65; }
.cs-baseline { display: flex; gap: 12px; align-items: baseline; }
.cs-baseline-label { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: rgba(239,238,234,0.35); flex: none; width: 44px; }
.cs-baseline-val { font-family: var(--font-body); font-size: 13px; line-height: 1.55; color: rgba(239,238,234,0.55); }
.cs-baseline-val--now { color: var(--bone); }
.cs-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; margin-top: auto; }
.cs-stat-val { font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: -0.01em; color: var(--bone); line-height: 1; }
.cs-stat-lbl { font-family: var(--font-body); font-size: 11px; line-height: 1.45; color: rgba(239,238,234,0.5); margin-top: 6px; }

/* LADDER */
.ladder { display: flex; flex-direction: column; gap: 14px; margin-top: 48px; }
.ladder-step { border-radius: 18px; overflow: hidden; }
.ladder-head { width: 100%; display: flex; align-items: center; gap: 18px; padding: 22px 24px; background: transparent; border: none; cursor: pointer; text-align: left; color: inherit; font: inherit; }
.ladder-num { font-family: var(--font-display); font-weight: 400; font-size: 26px; color: rgba(239,238,234,0.28); flex: none; width: 40px; transition: color 0.25s; }
.ladder-step.open .ladder-num { color: var(--red); }
.ladder-head-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.ladder-name { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--bone); display: flex; align-items: center; gap: 9px; }
.ladder-name .ts-icon { width: 16px; height: 16px; opacity: 0.85; }
.ladder-timeline { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.45); }
.ladder-price { font-family: var(--font-label); font-weight: 600; font-size: 13px; color: var(--bone); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 6px 14px; flex: none; white-space: nowrap; }
.ladder-chevron { flex: none; transition: transform 0.25s var(--ease), color 0.25s; color: rgba(239,238,234,0.4); }
.ladder-step.open .ladder-chevron { transform: rotate(180deg); color: var(--bone); }
.ladder-body-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.ladder-step.open .ladder-body-wrap { grid-template-rows: 1fr; }
.ladder-body { overflow: hidden; min-height: 0; }
.ladder-body > div { padding: 0 24px 26px; }
.ladder-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: rgba(239,238,234,0.62); max-width: 60ch; }
.ladder-note { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: var(--bone); margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.ladder-connector { display: flex; align-items: center; gap: 10px; padding: 4px 24px 4px 62px; font-family: var(--font-body); font-size: 12px; font-style: italic; color: rgba(239,238,234,0.4); }
.ladder-connector svg { flex: none; color: rgba(239,238,234,0.3); }

/* PROCESS / SPEED */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; }
@media (min-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.process-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.process-tags span { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.7); border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); border-radius: 999px; padding: 7px 14px; display: inline-flex; align-items: center; gap: 8px; }
.process-tags .ts-icon { width: 13px; height: 13px; opacity: 0.7; }
.change-panel { border-radius: 20px; padding: 24px; }
.change-panel-label { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: rgba(239,238,234,0.45); margin: 4px 4px 18px; }
.change-row { border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.change-row span:first-child { font-family: var(--font-body); font-size: 14px; color: var(--bone); }
.change-row span:last-child { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.5); flex: none; margin-left: 16px; }
.change-rows { display: flex; flex-direction: column; gap: 10px; }
.change-note { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: rgba(239,238,234,0.45); margin: 18px 4px 4px; }

/* ABOUT / BIO */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 760px) { .about-grid { grid-template-columns: 200px 1fr; gap: 48px; } }
.about-photo-wrap { display: flex; justify-content: center; }
@media (min-width: 760px) { .about-photo-wrap { justify-content: flex-start; } }
.about-photo { width: 176px; height: 176px; border-radius: 24px; overflow: hidden; background: linear-gradient(160deg, rgba(217,43,27,0.22), rgba(255,255,255,0.04)); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 24px 60px rgba(0,0,0,0.35); flex: none; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-placeholder { font-family: var(--font-display); font-size: 50px; color: rgba(239,238,234,0.5); }
.about-copy-para { font-family: var(--font-body); font-size: 15px; line-height: 1.75; color: rgba(239,238,234,0.62); margin: 18px 0 0; max-width: 58ch; }
.about-copy-para--strong { color: var(--bone); font-weight: 500; }

/* CREATIVE FIRST */
.creative-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
@media (min-width: 640px) { .creative-grid { grid-template-columns: repeat(3,1fr); } }
.creative-tile { border-radius: 16px; aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.creative-tile svg { opacity: 1; }
.creative-tile .ts-icon { width: 26px; height: 26px; opacity: 0.45; }
.creative-tile span { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.45); }
.about-meta { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.about-meta-label { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: rgba(239,238,234,0.4); margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
.about-meta-label .ts-icon { width: 12px; height: 12px; opacity: 0.6; }
.about-meta-val { font-family: var(--font-body); font-size: 15px; color: var(--bone); }

/* FINAL CTA */
.final-cta { border-radius: 24px; padding: 72px 28px; text-align: center; position: relative; }
.final-cta-glow { position: absolute; inset: 0; background: radial-gradient(600px circle at 50% 0%, rgba(255,255,255,0.15), transparent 70%); opacity: 0.3; pointer-events: none; }
.final-cta-inner { position: relative; max-width: 560px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 5.5vw, 54px); line-height: 1.05; letter-spacing: -0.02em; color: var(--bone); margin: 0; }
.final-cta h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.final-cta p { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: rgba(239,238,234,0.6); margin: 24px auto 0; max-width: 42ch; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.btn-red { display: inline-block; background: var(--red); color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 500; border-radius: 999px; padding: 16px 40px; cursor: pointer; transition: background 0.2s, transform 0.25s var(--ease); }
.btn-red:hover { background: var(--red-deep); transform: scale(1.02); }
.btn-outline { display: inline-block; border: 1px solid rgba(255,255,255,0.15); color: var(--bone); font-family: var(--font-body); font-size: 15px; font-weight: 500; border-radius: 999px; padding: 16px 32px; cursor: pointer; transition: background 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.final-cta-social { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.social-link { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; color: var(--bone); transition: background 0.2s, transform 0.25s var(--ease); }
.social-link:hover { background: rgba(255,255,255,0.08); transform: scale(1.06); }

/* ENQUIRY FORM */
.enquiry-panel { border-radius: 24px; padding: 44px 28px; margin-top: 24px; }
.enquiry-head { max-width: 480px; margin: 0 auto 30px; text-align: center; }
.enquiry-head .section-eyebrow { justify-content: center; width: 100%; }
.enquiry-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 3.4vw, 30px); color: var(--bone); margin: 16px 0 0; }
.enquiry-sub { font-family: var(--font-body); font-size: 14px; color: rgba(239,238,234,0.55); margin: 10px 0 0; }
.enquiry-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.enquiry-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 520px) { .enquiry-row { grid-template-columns: 1fr 1fr; } }
.enquiry-field { display: flex; flex-direction: column; gap: 7px; }
.enquiry-field span { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: rgba(239,238,234,0.45); }
.enquiry-field input, .enquiry-field textarea { font-family: var(--font-body); font-size: 14px; color: var(--bone); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 12px 14px; outline: none; transition: border-color 0.2s, background 0.2s; resize: vertical; }
.enquiry-field input:focus, .enquiry-field textarea:focus { border-color: var(--red); background: rgba(255,255,255,0.06); }
.enquiry-field input::placeholder, .enquiry-field textarea::placeholder { color: rgba(239,238,234,0.3); }
.enquiry-submit { align-self: flex-start; border: none; font: inherit; }
.enquiry-submit:disabled { opacity: 0.55; cursor: default; transform: none; }
.enquiry-note { font-family: var(--font-body); font-size: 13px; margin: 0; min-height: 18px; }
.enquiry-note.is-success { color: #7fd99a; }
.enquiry-note.is-error { color: #f3a79b; }

/* FOOTER */
footer { position: relative; z-index: 10; background: rgba(10,11,12,0.75); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.08); padding: 64px 24px 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { max-width: 280px; }
.footer-logo { width: 34px; height: 34px; border-radius: 999px; overflow: hidden; display: inline-flex; flex: none; border: 1px solid rgba(255,255,255,0.12); margin-bottom: 18px; }
.footer-logo video { width: 100%; height: 100%; object-fit: cover; }
.footer-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: rgba(239,238,234,0.45); margin: 0; }
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col-lbl { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: rgba(239,238,234,0.35); margin-bottom: 16px; display: flex; align-items: center; gap: 7px; }
.footer-col-lbl .ts-icon { width: 12px; height: 12px; opacity: 0.5; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-family: var(--font-body); font-size: 14px; color: rgba(239,238,234,0.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 12px; font-family: var(--font-body); font-size: 13px; color: rgba(239,238,234,0.35); }

/* SECTIONS */
section { position: relative; z-index: 10; max-width: var(--maxw); margin: 0 auto; padding: 60px 24px; }

/* REVEALS */
[data-reveal] { opacity: 0; transform: translateY(28px) scale(0.985); filter: blur(6px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; filter: blur(0); }
[data-fade] { opacity: 0; transform: translateY(22px); filter: blur(5px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease); }
[data-fade].in { opacity: 1; transform: none; filter: blur(0); }
.stagger-item { opacity: 0; transform: translateY(24px) scale(0.96); filter: blur(5px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease); }
.stagger-item.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-fade], .stagger-item { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* FLOATING CALENDLY */
.cal-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 999px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 44px rgba(217,43,27,0.45), 0 4px 14px rgba(0,0,0,0.4); transition: transform 0.25s var(--ease), background 0.2s; }
.cal-float:hover { transform: scale(1.08); background: var(--red-deep); }
.cal-float::after { content: ''; position: absolute; inset: -6px; border-radius: 999px; border: 1px solid rgba(217,43,27,0.5); animation: calPulse 2.4s var(--ease) infinite; pointer-events: none; }
@keyframes calPulse { 0% { transform: scale(0.9); opacity: 0.9; } 70% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }
.cal-float-tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: rgba(12,13,15,0.94); color: var(--bone); font-family: var(--font-body); font-size: 12px; padding: 8px 13px; border-radius: 10px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; border: 1px solid rgba(255,255,255,0.1); }
.cal-float:hover .cal-float-tip { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .cal-float::after { animation: none; } }

/* PAGE HERO (subpages) */
.page-hero { position: relative; z-index: 10; max-width: var(--maxw); margin: 0 auto; padding: 76px 24px 12px; text-align: left; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 5.5vw, 62px); line-height: 1.02; letter-spacing: -0.02em; color: var(--bone); margin: 20px 0 0; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--red); }
.page-hero p { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: rgba(239,238,234,0.6); margin: 20px 0 0; max-width: 54ch; }

/* NOTES / NEWSLETTER */
.notes-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
@media (min-width: 700px) { .notes-grid { grid-template-columns: repeat(3,1fr); } }
.note-card { border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.3s var(--ease); }
.note-card:hover { transform: translateY(-4px); }
.note-tag { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; color: var(--red); display: inline-flex; align-items: center; gap: 7px; }
.note-tag .ts-icon { width: 12px; height: 12px; opacity: 0.85; }
.note-title { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.2; color: var(--bone); }
.note-excerpt { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: rgba(239,238,234,0.55); }
.note-date { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.35); margin-top: auto; }
.newsletter-bar { border-radius: 18px; margin-top: 28px; padding: 26px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between; }
.newsletter-copy { font-family: var(--font-body); font-size: 14px; color: rgba(239,238,234,0.7); max-width: 40ch; }
.newsletter-copy .ts-icon { width: 16px; height: 16px; opacity: 0.75; margin-right: 8px; vertical-align: -3px; }
.newsletter-copy strong { color: var(--bone); font-weight: 600; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { font-family: var(--font-body); font-size: 14px; color: var(--bone); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 12px 18px; outline: none; min-width: 220px; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form button { border: none; font: inherit; }

/* ============ MOBILE POLISH ============ */

/* Bigger touch targets on touch devices; no hover-only affordances */
@media (hover: none) {
  .cal-float-tip { display: none; }
  .carousel-dot { width: 10px; height: 10px; }
  .carousel-btn { width: 44px; height: 44px; }
}

/* Respect iPhone home-bar safe area */
.cal-float { bottom: calc(22px + env(safe-area-inset-bottom, 0px)); }

@media (max-width: 640px) {
  /* Prevent iOS auto-zoom on focus: inputs must be >= 16px */
  .enquiry-field input, .enquiry-field textarea, .newsletter-form input { font-size: 16px; }

  section { padding: 44px 20px; }
  .hero { padding: 64px 20px 72px; }
  .page-hero { padding: 56px 20px 8px; }

  .cal-float { width: 52px; height: 52px; right: 16px; }

  /* Build demo */
  .build-stage { padding: 20px; }
  .build-stage--chat { max-width: 100%; }
  .chat-bubble { max-width: 88%; }
  .mood-grid { max-width: 100%; }
  .mood-tile--photo { min-height: 84px; }
  .bp-text { padding-top: 4px; }
  .build-annotation { display: none; }
  .bp-statbar { gap: 10px; }
  .bp-statbar b { font-size: 18px; }
  .build-stage--content { padding: 20px; }
  .build-preview-top { padding: 14px 20px; }
  .build-preview-stage { min-height: 490px; }

  /* Ladder */
  .ladder-head { gap: 12px; padding: 18px 16px; }
  .ladder-num { width: 30px; font-size: 20px; }
  .ladder-price { font-size: 11px; padding: 5px 10px; }
  .ladder-body > div { padding: 0 16px 22px; }
  .ladder-connector { padding: 4px 16px 4px 16px; align-items: flex-start; }
  .ladder-connector svg { margin-top: 2px; }

  /* Footer */
  .footer-nav { gap: 36px; }
  .footer-top { gap: 36px; }

  /* Newsletter: let the field breathe */
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; min-width: 0; }
  .newsletter-form button { flex: none; }

  /* Enquiry submit easier to hit */
  .enquiry-submit { align-self: stretch; text-align: center; }
}

@media (max-width: 480px) {
  /* Full-width CTAs stack cleanly */
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .final-cta-actions .btn-red, .final-cta-actions .btn-outline { text-align: center; }
  .final-cta { padding: 56px 22px; }
  .enquiry-panel { padding: 36px 20px; }
  .hero-cta a.liquid-glass { padding: 16px 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-bubble, .mood-tile, .bp-el { opacity: 1 !important; transform: none !important; animation: none !important; }
  .build-step-bar i, .build-preview.is-review .bp-btn { animation: none !important; }
}

/* SECTION MORE LINK */
.section-more { text-align: center; margin-top: 36px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; max-width: 860px; }
.faq-item { border-radius: 16px; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; background: transparent; border: none; cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--bone); text-align: left; }
.faq-q svg { flex: none; transition: transform 0.25s var(--ease), color 0.25s; color: rgba(239,238,234,0.4); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--red); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; min-height: 0; }
.faq-a p { margin: 0; padding: 0 22px 20px; font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: rgba(239,238,234,0.6); max-width: 64ch; }

/* FOUNDER STRIP */
.founder-strip { border-radius: 24px; padding: 32px 28px; display: flex; align-items: center; gap: 32px; }
.founder-photo { width: 120px; height: 120px; border-radius: 20px; object-fit: cover; flex: none; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 18px 44px rgba(0,0,0,0.35); }
.founder-copy { flex: 1; min-width: 0; }
.founder-line { font-family: var(--font-display); font-weight: 400; font-size: clamp(19px, 2.6vw, 25px); line-height: 1.3; letter-spacing: -0.01em; color: var(--bone); margin: 14px 0 0; max-width: 30ch; }
.founder-line em { font-style: italic; color: var(--red); }
.founder-byline { font-family: var(--font-body); font-size: 13px; color: rgba(239,238,234,0.5); margin: 12px 0 0; }
.founder-btn { margin-top: 20px; font-size: 13px; padding: 11px 22px; display: inline-block; }
@media (max-width: 620px) {
  .founder-strip { flex-direction: column; align-items: flex-start; gap: 22px; }
}

/* NEWSLETTER POPUP */
.news-pop { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.news-pop.show { opacity: 1; pointer-events: auto; }
.news-pop-backdrop { position: absolute; inset: 0; background: rgba(8,9,10,0.55); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.news-pop-card { position: relative; width: 100%; max-width: 420px; background: rgba(15,17,19,0.97); border: 1px solid rgba(255,255,255,0.13); border-radius: 22px; padding: 36px 30px 30px; box-shadow: 0 40px 100px rgba(0,0,0,0.6); transform: translateY(20px) scale(0.96); transition: transform 0.45s var(--ease); }
.news-pop.show .news-pop-card { transform: none; }
.news-pop-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); background: transparent; color: var(--bone); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: background 0.2s; }
.news-pop-close:hover { background: rgba(255,255,255,0.08); }
.news-pop-title { font-family: var(--font-display); font-weight: 400; font-size: 27px; line-height: 1.1; letter-spacing: -0.02em; color: var(--bone); margin: 14px 0 0; }
.news-pop-title em { font-style: italic; color: var(--red); }
.news-pop-sub { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: rgba(239,238,234,0.6); margin: 12px 0 0; }
.news-pop-form { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.news-pop-form input { font-family: var(--font-body); font-size: 16px; color: var(--bone); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 13px 16px; outline: none; transition: border-color 0.2s; width: 100%; }
.news-pop-form input:focus { border-color: var(--red); }
.news-pop-form button { border: none; font: inherit; width: 100%; text-align: center; padding: 14px 20px; }
.news-pop-note { font-family: var(--font-body); font-size: 12px; color: rgba(239,238,234,0.4); margin: 14px 0 0; text-align: center; min-height: 16px; }
.news-pop-note.is-success { color: #7fd99a; }
@media (max-width: 520px) {
  .news-pop { align-items: flex-end; padding: 0; }
  .news-pop-card { max-width: 100%; border-radius: 22px 22px 0 0; border-bottom: none; padding: 32px 24px calc(28px + env(safe-area-inset-bottom, 0px)); }
  .news-pop.show .news-pop-card { transform: none; }
  .news-pop-card { transform: translateY(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .news-pop, .news-pop-card { transition: none; }
}

/* LEGAL PAGES */
.legal-panel { border-radius: 24px; padding: 44px 34px; max-width: 860px; }
@media (max-width: 640px) { .legal-panel { padding: 32px 22px; } }
.legal-panel h2 { font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; color: var(--bone); margin: 38px 0 0; }
.legal-panel h2:first-child { margin-top: 0; }
.legal-panel p, .legal-panel li { font-family: var(--font-body); font-size: 14px; line-height: 1.75; color: rgba(239,238,234,0.62); }
.legal-panel p { margin: 12px 0 0; }
.legal-panel ul { margin: 12px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-panel a { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
.legal-panel strong { color: var(--bone); font-weight: 600; }
.footer-legal a { color: rgba(239,238,234,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: var(--bone); }

/* 404 */
.nf-wrap { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 90px 24px 110px; }
.nf-code { font-family: var(--font-display); font-weight: 400; font-size: clamp(110px, 24vw, 210px); line-height: 0.95; letter-spacing: -0.04em;
  background-image: linear-gradient(to right, #55150b 0%, #8F1C0E 18%, #F3A79B 38%, #D92B1B 54%, #8F1C0E 74%, #55150b 100%);
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  animation: shinyRed 6s linear infinite; }
.nf-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 4.5vw, 40px); letter-spacing: -0.02em; color: var(--bone); margin: 20px 0 0; }
.nf-sub { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: rgba(239,238,234,0.6); margin: 16px 0 0; max-width: 46ch; }
.nf-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
@media (prefers-reduced-motion: reduce) { .nf-code { animation: none; } }
