/* ========== TOKENS ========== */
:root {
  --cream: #F5ECE3;
  --cream-2: #EFE4D5;
  --cream-3: #E8DAC6;
  --forest: #335714;
  --forest-deep: #1E3A0A;
  --forest-ink: #0F1F05;
  --gold: #D18654;
  --gold-deep: #B06C3E;
  --ink: #12180C;
  --ink-60: rgba(18, 24, 12, 0.60);
  --ink-40: rgba(18, 24, 12, 0.40);
  --ink-20: rgba(18, 24, 12, 0.20);
  --ink-10: rgba(18, 24, 12, 0.10);
  --ink-06: rgba(18, 24, 12, 0.06);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Geist Mono', 'SF Mono', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
@media (hover: none), (pointer: coarse) { button { cursor: pointer; } }

::selection { background: var(--forest); color: var(--cream); }

/* ========== GRAIN OVERLAY ========== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07  0 0 0 0 0.09  0 0 0 0 0.03  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--forest-ink); border-radius: 50%;
  transition: width 0.22s var(--ease), height 0.22s var(--ease), background 0.22s var(--ease), opacity 0.2s;
  margin: -3px 0 0 -3px;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid var(--forest-ink); border-radius: 50%;
  margin: -18px 0 0 -18px;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.2s, background 0.2s, opacity 0.2s;
}
body.hover-link .cursor-dot { width: 0; height: 0; opacity: 0; }
body.hover-link .cursor-ring { width: 54px; height: 54px; margin: -27px 0 0 -27px; background: var(--forest-ink); border-color: var(--forest-ink); mix-blend-mode: normal; }
body.hover-invert .cursor-dot { background: var(--cream); }
body.hover-invert .cursor-ring { border-color: var(--cream); }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ========== UTILITIES ========== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-60);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.eyebrow.plain::before { display: none; }

.section-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-20);
  margin-bottom: 48px;
}
.section-label .num {
  color: var(--forest);
  font-weight: 500;
}
.section-label .dash { flex: 1; height: 1px; background: var(--ink-10); align-self: center; }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--forest-ink);
}
.h-display em {
  font-style: italic;
  color: var(--forest);
}

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245, 236, 227, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--ink-10);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--forest-ink);
}
.brand-mark { width: 28px; height: 28px; }
.nav-links {
  display: flex; gap: 32px;
  font-size: 14px;
  color: var(--ink);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--forest-ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: var(--forest-ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--forest);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-quart);
  z-index: 0;
}
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta .arrow { position: relative; z-index: 1; transition: transform 0.4s var(--ease); }
.nav-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) 0;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.hero-top {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-20);
}
.hero-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.hero-meta strong { color: var(--forest); font-weight: 500; }
.hero-main {
  grid-column: 1 / -1;
  padding: 72px 0 48px;
}
.hero-headline {
  font-size: clamp(56px, 10.5vw, 186px);
  max-width: 17ch;
}
.hero-headline .stroke {
  -webkit-text-stroke: 1px var(--forest-ink);
  color: transparent;
  font-style: italic;
}
.hero-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  padding: 32px 0 48px;
  border-top: 1px solid var(--ink-20);
}
.hero-lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 52ch;
  font-weight: 400;
}
.hero-lede b { color: var(--forest); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
  white-space: nowrap;
}
.btn .dot {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  transition: transform 0.5s var(--ease), background 0.3s;
}
.btn-primary {
  background: var(--forest-ink);
  color: var(--cream);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--forest);
  transform: translateY(102%);
  transition: transform 0.6s var(--ease-quart);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover .dot { background: var(--cream); transform: rotate(90deg) scale(1.2); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--forest-ink);
  border: 1px solid var(--ink-20);
}
.btn-ghost:hover { border-color: var(--forest-ink); background: var(--cream-2); }

/* Hero decorative grid lines */
.hero-side-lines {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  z-index: -1;
}
.hero-side-lines::before, .hero-side-lines::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--ink-10) 20%, var(--ink-10) 80%, transparent 100%);
}
.hero-side-lines::before { left: 33.33%; }
.hero-side-lines::after { left: 66.66%; }

@media (max-width: 768px) {
  .hero { padding-top: 120px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { justify-content: flex-start; }
  .hero-meta { gap: 20px; font-size: 10px; }
  .hero-side-lines { display: none; }
}

/* ========== TICKER ========== */
.ticker {
  background: var(--forest-ink);
  color: var(--cream);
  border-top: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
  overflow: hidden;
  padding: 22px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  display: inline-flex; align-items: center; gap: 48px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.ticker-item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.5em;
  font-style: normal;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== SERVICES ========== */
section.services {
  padding: 140px var(--gutter);
}
.services-inner { max-width: var(--maxw); margin: 0 auto; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
.services-head h2 {
  font-size: clamp(40px, 6vw, 88px);
}
.services-head p {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-60);
  max-width: 46ch;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--ink-20);
  border-left: 1px solid var(--ink-20);
}
.service {
  grid-column: span 2;
  padding: 40px 32px;
  border-right: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}
.service:hover { background: var(--cream-2); }
.service.large { grid-column: span 3; }
.service-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-60);
}
.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  transition: transform 0.6s var(--ease);
}
.service:hover .service-icon { transform: rotate(-12deg) scale(1.08); }
.service h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--forest-ink);
  line-height: 1.05;
  margin-top: auto;
}
.service-desc {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.55;
  max-width: 36ch;
}
.service-arrow {
  position: absolute; bottom: 24px; right: 24px;
  opacity: 0; transform: translate(-10px, 10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  color: var(--forest);
}
.service:hover .service-arrow { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .services-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service, .service.large { grid-column: span 1; min-height: 260px; }
}

/* ========== MANIFESTO / QUOTE ========== */
section.manifesto {
  padding: 140px var(--gutter);
  background: var(--cream-3);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.manifesto-inner {
  max-width: 1080px; margin: 0 auto;
  text-align: left;
}
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--forest-ink);
}
.manifesto p em { color: var(--forest); font-style: italic; }
.manifesto-sig {
  margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--ink-20);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-60);
}

/* ========== DEMO / WORK ========== */
section.work {
  padding: 140px var(--gutter);
}
.work-inner { max-width: var(--maxw); margin: 0 auto; }
.work-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.work-head h2 { font-size: clamp(40px, 6vw, 88px); }
.work-head p { max-width: 42ch; color: var(--ink-60); font-size: 16px; line-height: 1.55; }

.industry-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
  margin-bottom: 48px;
}
.ind-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.005em;
  border: 1px solid var(--ink-20);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ind-tab:hover { border-color: var(--forest-ink); }
.ind-tab.active {
  background: var(--forest-ink); color: var(--cream); border-color: var(--forest-ink);
}
.ind-tab .idx {
  font-family: var(--mono); font-size: 10.5px;
  margin-right: 8px; opacity: 0.6;
}

.work-showcase {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 24px;
  min-height: 520px;
}
.work-meta-card {
  background: var(--cream-2);
  border: 1px solid var(--ink-10);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.work-meta-card .caseno {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-60);
}
.work-meta-card h3 {
  font-family: var(--serif); font-size: 48px; line-height: 1.02;
  margin-top: 12px; color: var(--forest-ink); font-weight: 400;
}
.work-meta-card .tagline {
  font-size: 15px; line-height: 1.5; color: var(--ink-60);
  margin-top: 16px; max-width: 32ch;
}
.work-meta-stats {
  margin-top: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--ink-20);
}
.work-meta-stats .stat-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-60);
}
.work-meta-stats .stat-val {
  font-family: var(--serif); font-size: 28px; color: var(--forest);
  margin-top: 6px; line-height: 1;
}
.work-mockup {
  background: var(--ink-bg, #F5ECE3);
  border: 1px solid var(--ink-10);
  position: relative;
  overflow: hidden;
  transition: background 0.8s var(--ease);
}
.mockup-stage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--ink-10);
}
.mockup-cell {
  background: var(--cell-bg, var(--cream));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.8s var(--ease);
}
.mockup-cell .corner {
  position: absolute; top: 10px; left: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cell-ink, var(--ink-60));
  opacity: 0.7;
}
.mockup-cell.a { grid-column: 1 / 2; grid-row: 1 / 3; }
.mockup-cell.b { }
.mockup-cell.c { }

/* --- Logo mockup (cell a) --- */
.cell-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  padding: 32px;
}
.cell-logo .symbol {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-on);
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  position: relative;
  transition: all 0.8s var(--ease);
}
.cell-logo .symbol::after {
  content: ""; position: absolute; inset: -8px;
  border: 1px solid var(--brand-primary); border-radius: 50%;
  opacity: 0.4;
}
.cell-logo .name {
  font-family: var(--serif);
  font-size: 26px; letter-spacing: -0.01em;
  color: var(--brand-ink);
}
.cell-logo .tag {
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-muted);
}

/* --- Social post (cell b) --- */
.cell-social {
  padding: 20px;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ig-post {
  width: 180px; aspect-ratio: 1/1;
  background: var(--brand-primary);
  border-radius: 4px;
  padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--brand-on);
  position: relative;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.25);
  transition: background 0.8s var(--ease);
}
.ig-post .ig-top {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.7;
}
.ig-post .ig-mid {
  font-family: var(--serif); font-size: 26px; line-height: 1.02;
  letter-spacing: -0.01em;
}
.ig-post .ig-mid em { font-style: italic; color: var(--brand-accent); }
.ig-post .ig-bot {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.7;
}
.ig-post .ig-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--brand-accent); }

/* --- Palette (cell c) --- */
.cell-palette {
  padding: 24px;
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.palette-head {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cell-ink);
  display: flex; justify-content: space-between;
}
.palette-swatches {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  height: 62%;
}
.swatch {
  border-radius: 2px;
  position: relative;
  transition: background 0.8s var(--ease);
  display: flex; align-items: flex-end; padding: 10px;
}
.swatch span {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.08em;
  color: var(--cream);
  mix-blend-mode: difference;
}
.palette-meta {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em;
  color: var(--cell-ink); opacity: 0.7;
  display: flex; justify-content: space-between;
}

@media (max-width: 900px) {
  .work-head { grid-template-columns: 1fr; gap: 20px; }
  .work-showcase { grid-template-columns: 1fr; }
  .work-mockup { min-height: 380px; }
}
@media (max-width: 600px) {
  .mockup-stage { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr; }
  .mockup-cell.a { grid-column: 1; grid-row: 1; }
}

/* ========== CALCULATOR ========== */
section.pricing {
  padding: 140px var(--gutter);
  background: var(--forest-ink);
  color: var(--cream);
  border-top: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
}
section.pricing .section-label { color: rgba(245, 236, 227, 0.6); border-color: rgba(245, 236, 227, 0.2); }
section.pricing .section-label .num { color: var(--gold); }
section.pricing .section-label .dash { background: rgba(245, 236, 227, 0.12); }

.pricing-inner { max-width: var(--maxw); margin: 0 auto; }
.pricing-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.pricing-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.pricing-head h2 em { color: var(--gold); font-style: italic; }
.pricing-head p {
  color: rgba(245, 236, 227, 0.65);
  font-size: 16px; line-height: 1.55; max-width: 44ch;
}

.calc {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: rgba(245, 236, 227, 0.03);
  border: 1px solid rgba(245, 236, 227, 0.15);
  overflow: hidden;
}
.calc-left { padding: 40px; border-right: 1px solid rgba(245, 236, 227, 0.12); }
.calc-right { padding: 40px; background: rgba(0,0,0,0.18); }

.calc-section {
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(245, 236, 227, 0.1);
}
.calc-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.calc-section-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245, 236, 227, 0.5);
  margin-bottom: 18px; display: flex; justify-content: space-between;
}

.service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  cursor: none;
  position: relative;
  transition: padding 0.3s var(--ease);
}
@media (hover: none) { .service-row { cursor: pointer; } }
.service-row + .service-row { border-top: 1px solid rgba(245, 236, 227, 0.08); }
.service-row-left { display: flex; align-items: center; gap: 14px; }
.service-row input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox {
  width: 18px; height: 18px;
  border: 1px solid rgba(245, 236, 227, 0.4);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.checkbox svg { opacity: 0; transform: scale(0.5); transition: all 0.3s var(--ease); color: var(--forest-ink); }
.service-row.checked .checkbox { background: var(--gold); border-color: var(--gold); }
.service-row.checked .checkbox svg { opacity: 1; transform: scale(1); }
.service-row-name {
  font-size: 15px; font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.service-row-desc {
  font-size: 12px; color: rgba(245, 236, 227, 0.5);
  margin-top: 2px;
}
.service-row-price {
  font-family: var(--mono); font-size: 13px;
  color: rgba(245, 236, 227, 0.7);
}

.option-group { display: flex; gap: 8px; flex-wrap: wrap; }
.opt {
  padding: 10px 16px;
  border: 1px solid rgba(245, 236, 227, 0.2);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(245, 236, 227, 0.75);
  transition: all 0.3s var(--ease);
}
.opt:hover { border-color: rgba(245, 236, 227, 0.5); color: var(--cream); }
.opt.active { background: var(--gold); color: var(--forest-ink); border-color: var(--gold); font-weight: 500; }

.toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
}
.toggle-row + .toggle-row { border-top: 1px solid rgba(245, 236, 227, 0.08); }
.toggle-label { font-size: 14.5px; font-weight: 500; color: var(--cream); }
.toggle-sub { font-size: 12px; color: rgba(245, 236, 227, 0.5); margin-top: 2px; }
.switch {
  width: 40px; height: 22px;
  background: rgba(245, 236, 227, 0.15);
  border-radius: 999px;
  position: relative;
  transition: background 0.3s var(--ease);
  flex-shrink: 0;
}
.switch::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}
.switch.on { background: var(--gold); }
.switch.on::after { transform: translateX(18px); background: var(--forest-ink); }

/* Stepper */
.stepper {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 4px 4px;
  border: 1px solid rgba(245, 236, 227, 0.2);
  border-radius: 999px;
}
.stepper button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(245, 236, 227, 0.08);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.stepper button:hover { background: rgba(200, 169, 110, 0.3); }
.stepper-val { font-family: var(--mono); font-size: 14px; min-width: 20px; text-align: center; color: var(--cream); }

/* Right panel */
.summary-top {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245, 236, 227, 0.5);
  display: flex; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid rgba(245, 236, 227, 0.15);
}
.summary-price {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.92;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 28px 0 24px;
  display: flex; align-items: flex-start;
}
.summary-price .currency {
  font-size: 0.4em;
  font-family: var(--mono);
  margin-top: 0.45em;
  margin-right: 4px;
  color: var(--gold);
  font-weight: 500;
}
.summary-note {
  font-size: 12px; color: rgba(245, 236, 227, 0.5);
  padding-bottom: 24px; border-bottom: 1px solid rgba(245, 236, 227, 0.1);
  margin-bottom: 24px;
}
.summary-lines { display: flex; flex-direction: column; gap: 10px; min-height: 140px; }
.sum-line {
  display: flex; justify-content: space-between; font-size: 13.5px;
  font-family: var(--mono);
  color: rgba(245, 236, 227, 0.7);
  padding: 6px 0;
  animation: fadeInUp 0.5s var(--ease);
}
.sum-line.empty {
  color: rgba(245, 236, 227, 0.3);
  font-style: italic; font-family: var(--sans);
}
.sum-line .lbl { color: rgba(245, 236, 227, 0.85); }
.sum-line .val { color: var(--gold); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.summary-cta {
  margin-top: 28px;
  width: 100%;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--forest-ink);
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  display: flex; justify-content: center; align-items: center; gap: 10px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.summary-cta::before {
  content: ""; position: absolute; inset: 0; background: var(--cream);
  transform: translateY(100%); transition: transform 0.5s var(--ease-quart);
}
.summary-cta:hover::before { transform: translateY(0); }
.summary-cta > * { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .pricing-head { grid-template-columns: 1fr; gap: 20px; }
  .calc { grid-template-columns: 1fr; }
  .calc-left { border-right: none; border-bottom: 1px solid rgba(245, 236, 227, 0.12); }
}

/* ========== PROCESS ========== */
section.process {
  padding: 140px var(--gutter);
}
.process-inner { max-width: var(--maxw); margin: 0 auto; }
.process-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 80px; }
.process-head h2 { font-size: clamp(40px, 6vw, 88px); }
.process-head p { max-width: 42ch; color: var(--ink-60); font-size: 16px; line-height: 1.55; }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-20);
}
.step {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--ink-20);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.step:hover { background: linear-gradient(to bottom, var(--cream-2) 0%, transparent 100%); }
.step:last-child { border-right: none; padding-right: 0; }
.step:first-child { padding-left: 0; }
.step:not(:first-child) { padding-left: 28px; }
.step-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 500;
}
.step-title {
  font-family: var(--serif); font-size: 32px; line-height: 1.02;
  color: var(--forest-ink); margin-top: 40px;
}
.step-desc { font-size: 14.5px; color: var(--ink-60); line-height: 1.55; }
.step-time {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-40);
}

@media (max-width: 900px) {
  .process-head { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--ink-20); padding: 30px 0 !important; }
  .step:nth-child(odd) { padding-right: 16px !important; border-right: 1px solid var(--ink-20) !important; }
  .step:nth-child(even) { padding-left: 16px !important; }
}

/* ========== STATS ========== */
section.stats {
  padding: 140px var(--gutter);
  background: var(--cream-2);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.stats-inner { max-width: var(--maxw); margin: 0 auto; }
.stats-head { margin-bottom: 72px; max-width: 720px; }
.stats-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 0.98; letter-spacing: -0.02em;
  color: var(--forest-ink);
}
.stats-head h2 em { color: var(--forest); font-style: italic; }

.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
}
.stat {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--ink-20);
  position: relative;
}
.stat:first-child { padding-left: 0; }
.stat:not(:first-child) { padding-left: 32px; }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.9;
  color: var(--forest-ink);
  letter-spacing: -0.03em;
  display: flex; align-items: flex-start;
}
.stat-num .suffix {
  font-size: 0.38em;
  color: var(--gold);
  margin-top: 0.4em; margin-left: 4px;
  font-family: var(--mono);
  font-weight: 500;
}
.stat-label {
  font-size: 15px;
  color: var(--ink-60);
  margin-top: 24px; line-height: 1.5;
  max-width: 28ch;
}
.stat-src {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-40);
  margin-top: 16px;
}

@media (max-width: 780px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { padding: 32px 0 !important; border-right: none !important; border-bottom: 1px solid var(--ink-20); }
  .stat:last-child { border-bottom: none; }
}

/* ========== CTA ========== */
section.cta {
  padding: 140px var(--gutter);
  text-align: left;
}
.cta-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
}
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 148px);
  font-weight: 400;
  line-height: 0.94; letter-spacing: -0.025em;
  color: var(--forest-ink);
  max-width: 12ch;
}
.cta-inner h2 em { color: var(--forest); font-style: italic; }
.cta-right { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; padding-bottom: 12px; }
.cta-right p { font-size: 17px; line-height: 1.55; color: var(--ink-60); max-width: 38ch; }

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== FOOTER ========== */
footer {
  background: var(--forest-ink);
  color: var(--cream);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid var(--forest);
}
.foot-inner { max-width: var(--maxw); margin: 0 auto; }
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 236, 227, 0.15);
}
.foot-brand { font-family: var(--serif); font-size: 36px; }
.foot-brand p {
  font-family: var(--sans); font-size: 14px;
  color: rgba(245, 236, 227, 0.55);
  margin-top: 16px; max-width: 32ch; line-height: 1.55;
}
.foot-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245, 236, 227, 0.5);
  margin-bottom: 18px; font-weight: 500;
}
.foot-col a {
  display: block; padding: 7px 0;
  color: var(--cream); font-size: 14.5px;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.foot-col a:hover { color: var(--gold); transform: translateX(3px); }
.foot-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245, 236, 227, 0.45);
  flex-wrap: wrap; gap: 16px;
}
.foot-giant {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 260px);
  line-height: 0.9;
  margin-top: 48px;
  color: var(--forest);
  letter-spacing: -0.03em;
}
.foot-giant em { color: var(--gold); font-style: italic; }

@media (max-width: 780px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ========== HERO HEADLINE — MASKED REVEAL + CYCLE ========== */
/* Pure CSS animation so it fires on page load without depending on JS */
.hero-headline .hl-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
@keyframes hlRise {
  0%   { transform: translateY(115%); }
  100% { transform: translateY(0); }
}
.hero-headline .hl-w {
  display: inline-block;
  transform: translateY(115%);
  animation: hlRise 1.1s var(--ease-quart) both;
  will-change: transform;
}
.hero-headline .cycle-wrap {
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(115%);
  animation: hlRise 1.1s var(--ease-quart) both;
  will-change: transform;
}
.hero-headline .hl-line:nth-child(1) .hl-w { animation-delay: 0.15s; }
.hero-headline .hl-line:nth-child(2) .hl-w:nth-child(1) { animation-delay: 0.25s; }
.hero-headline .hl-line:nth-child(2) .hl-w:nth-child(2) { animation-delay: 0.33s; }
.hero-headline .hl-line:nth-child(3) .hl-w { animation-delay: 0.45s; }
.hero-headline .hl-line:nth-child(3) .cycle-wrap { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .hero-headline .hl-w,
  .hero-headline .cycle-wrap {
    animation: none;
    transform: none;
  }
}

.cycle-masker {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0 0.04em 0.14em;
  margin: 0 -0.04em -0.14em;
}
.cycle-word {
  display: inline-block;
  font-style: italic;
  color: var(--forest);
  position: relative;
  transition: transform 0.55s var(--ease-quart), opacity 0.35s ease;
  will-change: transform, opacity;
}
.cycle-word.out { transform: translateY(-110%); opacity: 0; }
.cycle-word.in-init { transform: translateY(110%); opacity: 0; transition: none; }
.cycle-word.settled::after {
  content: "";
  position: absolute;
  left: 0.02em; right: 0.22em;
  bottom: 0.22em;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: ulDraw 0.9s var(--ease-quart) 0.2s forwards;
}
@keyframes ulDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ========== SELECTED WORK ========== */
section.selected-work {
  padding: 140px var(--gutter);
}
.sw-inner { max-width: var(--maxw); margin: 0 auto; }
.sw-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 72px; }
.sw-head h2 { font-size: clamp(48px, 8vw, 128px); }
.sw-head p { max-width: 44ch; color: var(--ink-60); font-size: 16px; line-height: 1.55; }

.project-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--ink-20);
}
.proj {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-20);
  transition: padding 0.5s var(--ease), opacity 0.4s var(--ease);
  position: relative;
}
.project-list:hover .proj { opacity: 0.3; }
.project-list:hover .proj:hover { opacity: 1; padding-left: 32px; }
.proj-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--ink-40);
  font-weight: 500;
}
.proj-name {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 82px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--forest-ink);
  font-weight: 400;
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
}
.project-list:hover .proj:hover .proj-name { color: var(--forest); }
.proj-meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-60);
}

/* Floating cursor-follow preview */
.proj-preview {
  position: fixed;
  top: 0; left: 0;
  width: 320px;
  aspect-ratio: 3/4;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  will-change: transform;
  filter: drop-shadow(0 30px 60px rgba(18,24,12,0.25));
}
.proj-preview.show { opacity: 1; }
.pp-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease-quart);
  transform: scale(0.94);
  overflow: hidden;
  background: var(--a);
  color: var(--b);
}
.pp-slide.active { opacity: 1; transform: scale(1); }
.pp-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12; mix-blend-mode: overlay; pointer-events: none;
}
.pp-tag {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--b);
  opacity: 0.85;
}
.pp-focal {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif);
  line-height: 1;
  text-align: center;
}
.pp-focal-serif { font-size: 240px; font-style: italic; font-weight: 400; }
.pp-focal-serif-caps { font-size: 52px; letter-spacing: 0.1em; font-weight: 400; }
.pp-focal-ital { font-size: 88px; font-style: italic; }
.pp-focal-sm { font-size: 88px; }
.pp-focal-noir { font-size: 96px; letter-spacing: 0.08em; color: var(--c); font-weight: 400; }
.pp-focal-cond { font-family: var(--sans); font-weight: 800; font-size: 44px; letter-spacing: 0.08em; color: var(--b); }
.pp-focal-thin { font-family: var(--sans); font-weight: 200; font-size: 36px; letter-spacing: 0.3em; color: var(--b); }
.pp-focal-amp { font-size: 280px; font-style: italic; color: var(--c); }
.pp-focal-soft { font-size: 80px; font-style: italic; color: var(--b); }
.pp-sub {
  position: absolute; bottom: 70px; left: 0; right: 0; text-align: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; color: var(--b); opacity: 0.75;
}
.pp-sub-ital {
  position: absolute; top: 50%; left: 0; right: 0; text-align: center;
  font-family: var(--serif); font-style: italic;
  font-size: 28px;
  color: var(--b); margin-top: 38px;
}
.pp-sub-split {
  position: absolute; bottom: 70px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 24px; letter-spacing: 0.04em;
  color: var(--b);
}
.pp-foot {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--b); opacity: 0.65;
  text-transform: uppercase;
}
.pp-band { position: absolute; left: 0; right: 0; background: var(--b); }
.pp-horizon {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--a) 0%, var(--a) 55%, var(--b) 55%, var(--b) 100%);
  z-index: -1;
}
.pp-slide[data-img="3"] .pp-focal-serif-caps { top: 45%; color: var(--b); }
.pp-slide[data-img="3"] .pp-sub-ital { color: var(--a); top: 55%; }
.pp-bottle {
  position: absolute; top: 50%; left: 50%;
  width: 100px; height: 240px; transform: translate(-50%, -50%);
  background: var(--c); border-radius: 6px 6px 10px 10px;
  opacity: 0.18;
}
.pp-bottle::before {
  content: ""; position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 22px; background: var(--c); border-radius: 4px 4px 0 0;
}
.pp-slide[data-img="4"] .pp-focal-noir { z-index: 1; }
.pp-circles {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -60%);
  width: 200px; height: 100px;
}
.pp-circles::before, .pp-circles::after {
  content: ""; position: absolute; top: 0; width: 92px; height: 92px;
  border: 2px solid var(--c); border-radius: 50%;
}
.pp-circles::before { left: 0; }
.pp-circles::after { right: 0; }
.pp-slide[data-img="5"] .pp-focal-cond { top: auto; bottom: 80px; transform: translate(-50%, 0); }
.pp-gridlines {
  position: absolute; inset: 40px 24px 100px;
  background-image:
    linear-gradient(to right, rgba(20,24,26,0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,24,26,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}
.pp-rule {
  position: absolute; bottom: 80px; left: 24px; right: 24px;
  height: 1px; background: var(--b);
}
.pp-rule::before, .pp-rule::after {
  content: ""; position: absolute; bottom: 0; width: 1px; height: 8px; background: var(--b);
}
.pp-rule::before { left: 0; }
.pp-rule::after { right: 0; }
.pp-slide[data-img="6"] .pp-focal-thin { top: auto; bottom: 100px; transform: translate(-50%, 0); }
.pp-flame {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(208, 154, 78, 0.15) 100%),
    linear-gradient(180deg, var(--a), var(--a));
}
.pp-pendant {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 30%; background: var(--c); opacity: 0.4;
}
.pp-pendant::after {
  content: ""; position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border: 1px solid var(--c); border-radius: 50%;
}
.pp-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  background: var(--c);
  border-radius: 50% 40% 60% 45% / 55% 45% 50% 45%;
  opacity: 0.2;
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .proj-preview { display: none; }
  .project-list:hover .proj, .project-list:hover .proj:hover { opacity: 1; padding-left: 0; }
}

/* Static gallery under the list */
.sw-gallery {
  margin-top: 80px;
  overflow: hidden;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
.sw-gal-track {
  display: flex;
  gap: 16px;
  padding: 0 var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.sw-gal-track::-webkit-scrollbar { height: 3px; }
.sw-gal-track::-webkit-scrollbar-thumb { background: var(--ink-20); border-radius: 2px; }
.gal-card {
  min-width: 300px;
  max-width: 300px;
  aspect-ratio: 3/4;
  background: var(--a);
  color: var(--b);
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
  flex-shrink: 0;
}
.gal-card:hover { transform: translateY(-6px); }
.gal-tag {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--b); opacity: 0.8;
}
.gal-focal {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--b);
  line-height: 1;
  text-align: center;
  font-weight: 400;
}
.gal-foot {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--b); opacity: 0.7;
  text-transform: uppercase;
}

.sw-note {
  margin-top: 40px;
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.04em; color: var(--ink-60);
  padding: 20px 24px;
  background: var(--cream-2);
  border: 1px dashed var(--ink-20);
  border-radius: 4px;
  line-height: 1.5;
}
.sw-note > span:first-child { color: var(--gold); }

@media (max-width: 900px) {
  .sw-head { grid-template-columns: 1fr; gap: 20px; }
  .proj { grid-template-columns: 48px 1fr; row-gap: 6px; padding: 22px 0; }
  .proj-meta { grid-column: 2; }
  .proj-num { align-self: start; }
}

/* ========== DEMO — NEW SHOWCASE LAYOUT ========== */
.work-showcase { display: flex; flex-direction: column; gap: 16px; }
.ws-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  min-height: 640px;
}
.ws-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile {
  background: var(--cream-2);
  border: 1px solid var(--ink-10);
  padding: 0;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: background 0.8s var(--ease);
}
.tile .tile-corner {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--ink-60);
  z-index: 2;
}
.tile .cell-logo, .tile .cell-social, .tile .cell-palette {
  width: 100%; height: 100%;
}
.tile .cell-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 32px; }
.tile.tile-logo { background: var(--tile-logo-bg, var(--cream-2)); }
.tile.tile-social { background: var(--tile-social-bg, var(--cream-3)); }
.tile.tile-palette { background: var(--tile-palette-bg, var(--cream-2)); }

.scroll-hint {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--forest-ink);
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  font-weight: 500;
}
.sh-dot {
  width: 6px; height: 6px; background: var(--forest-ink); border-radius: 50%;
  animation: shPulse 1.8s var(--ease) infinite;
}
@keyframes shPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* ========== BROWSER FRAME ========== */
.demo-browser {
  background: var(--cream);
  border: 1px solid var(--ink-20);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(18,24,12,0.22);
  display: flex;
  flex-direction: column;
  position: relative;
}
.browser-chrome {
  display: flex; align-items: center;
  padding: 14px 18px;
  background: var(--cream-3);
  border-bottom: 1px solid var(--ink-10);
  gap: 16px;
  flex-shrink: 0;
}
.browser-dots { display: flex; gap: 7px; flex-shrink: 0; }
.browser-dots span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink-20);
  transition: background 0.3s var(--ease);
}
.browser-dots span:nth-child(1) { background: #E85F5C; }
.browser-dots span:nth-child(2) { background: #E5B451; }
.browser-dots span:nth-child(3) { background: #7ABD6B; }
.browser-url {
  flex: 1;
  padding: 7px 16px;
  background: var(--cream);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-60);
  text-align: center;
  border: 1px solid var(--ink-10);
  letter-spacing: 0.02em;
  transition: background 0.6s var(--ease);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.browser-url::before { content: "🔒 "; opacity: 0.5; margin-right: 4px; font-size: 10px; }
.browser-actions { flex-shrink: 0; color: var(--ink-60); }
.browser-viewport {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  min-height: 560px;
}
.browser-viewport::-webkit-scrollbar { width: 8px; }
.browser-viewport::-webkit-scrollbar-track { background: transparent; }
.browser-viewport::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15); border-radius: 4px;
  border: 2px solid transparent; background-clip: padding-box;
}
.browser-viewport::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); background-clip: padding-box; border: 2px solid transparent; }

/* ========== MINI-SITE (lives inside browser) ========== */
.mini-site {
  font-family: var(--sans);
  color: var(--ms-ink, #1a1a1a);
  background: var(--ms-bg, #F5ECE3);
  min-height: 100%;
}
.ms-hero {
  padding: 44px 36px 56px;
  min-height: 560px;
  background: var(--ms-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.ms-hero::before {
  content: ""; position: absolute;
  top: -40%; right: -15%;
  width: 70%; height: 180%;
  background: radial-gradient(circle, var(--ms-accent) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}
.ms-hero-nav {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ms-muted);
  position: relative; z-index: 1;
}
.ms-hero-nav .mini-logo {
  font-family: var(--serif); font-size: 20px;
  color: var(--ms-primary);
  text-transform: none; letter-spacing: -0.01em;
  font-weight: 400;
}
.ms-hero-nav .mini-logo::before {
  content: "●"; color: var(--ms-accent); margin-right: 8px; font-size: 10px;
}
.ms-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  color: var(--ms-primary);
  max-width: 12ch;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 40px 0 32px;
  position: relative; z-index: 1;
}
.ms-hero h1 em { color: var(--ms-accent); font-style: italic; }
.ms-hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 28px;
  border-top: 1px solid var(--ms-line);
  position: relative; z-index: 1;
}
.ms-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: var(--ms-primary);
  color: var(--ms-on);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
}
.ms-cta::after {
  content: "→"; font-size: 14px;
}
.ms-stat { font-family: var(--serif); font-size: 34px; color: var(--ms-primary); line-height: 1; font-weight: 400; }
.ms-stat-label {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ms-muted); margin-top: 8px;
}

/* Feature cards section */
.ms-feature {
  padding: 56px 36px;
  background: var(--ms-bg2);
  border-top: 1px solid var(--ms-line);
  border-bottom: 1px solid var(--ms-line);
}
.ms-eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ms-muted);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.ms-eyebrow::before {
  content: ""; width: 18px; height: 1px; background: var(--ms-muted);
}
.ms-feature h2 {
  font-family: var(--serif);
  font-size: 38px; line-height: 1;
  color: var(--ms-primary);
  margin: 0 0 32px;
  max-width: 14ch;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.ms-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
}
.ms-card {
  background: var(--ms-primary);
  color: var(--ms-on);
  padding: 20px 18px;
  aspect-ratio: 3/4;
  border-radius: 4px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.ms-card:hover { transform: translateY(-4px); }
.ms-card:nth-child(2) { background: var(--ms-accent); color: var(--ms-primary); }
.ms-card:nth-child(3) { background: transparent; color: var(--ms-primary); border: 1px solid var(--ms-primary); }
.ms-card-num {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.16em; opacity: 0.65;
}
.ms-card h3 {
  font-family: var(--serif); font-size: 22px;
  line-height: 1.05; margin: 0;
  font-weight: 400; letter-spacing: -0.01em;
}
.ms-card-meta {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em; opacity: 0.65;
  text-transform: uppercase;
}

/* Quote block */
.ms-quote {
  padding: 76px 36px;
  background: var(--ms-primary);
  color: var(--ms-on);
}
.ms-quote p {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0; font-weight: 400;
  max-width: 18ch;
}
.ms-quote p em { color: var(--ms-accent); font-style: italic; }
.ms-quote-sig {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; opacity: 0.65;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}

/* Split block */
.ms-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  border-bottom: 1px solid var(--ms-line);
}
.ms-split-img {
  background: var(--ms-accent);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 130px; font-style: italic;
  color: var(--ms-primary);
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.ms-split-img::after {
  content: ""; position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid var(--ms-primary); opacity: 0.25; pointer-events: none;
}
.ms-split-text {
  padding: 36px 30px;
  background: var(--ms-bg);
  display: flex; flex-direction: column; justify-content: center;
}
.ms-split-text h3 {
  font-family: var(--serif); font-size: 26px;
  color: var(--ms-primary); margin: 0 0 14px; line-height: 1.05;
  font-weight: 400; letter-spacing: -0.01em;
}
.ms-split-text p {
  font-size: 13.5px; line-height: 1.6; color: var(--ms-ink);
  max-width: 34ch; margin: 0; opacity: 0.8;
}

/* Mini-site footer */
.ms-footer {
  padding: 36px;
  background: var(--ms-bg);
  color: var(--ms-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ms-footer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ms-line);
  margin-bottom: 18px;
}
.ms-footer-row.last { border: none; margin: 0; padding: 0; }
.ms-footer-row .mini-logo {
  font-family: var(--serif); font-size: 22px;
  color: var(--ms-primary); text-transform: none; letter-spacing: -0.01em;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .ws-top { grid-template-columns: 1fr; min-height: auto; }
  .ws-tiles { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 700px) {
  .ws-tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 16/10; }
  .browser-viewport { min-height: 480px; max-height: 520px; }
  .ms-cards { grid-template-columns: 1fr; }
  .ms-split { grid-template-columns: 1fr; }
}

/* ========== MAGNETIC ========== */
[data-magnetic] { transition: transform 0.3s var(--ease); }
/* ========== PAGE HEADER (used by all sub-pages) ========== */
section.page-hero {
  padding: 160px var(--gutter) 80px;
  position: relative;
}
.page-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-60);
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--ink-20);
  width: 100%;
}
.breadcrumb a {
  color: var(--ink-60);
  transition: color 0.3s var(--ease);
}
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .current { color: var(--forest); }
.page-title {
  font-size: clamp(56px, 9vw, 148px);
  max-width: 16ch;
  margin-bottom: 40px;
}
.page-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 58ch;
}

/* Active nav link */
.nav-links a.active {
  color: var(--forest);
}
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
  background: var(--gold);
  height: 2px;
}

/* ========== TEASER GRID (home) ========== */
section.teaser-section {
  padding: 140px var(--gutter);
}
.teaser-inner { max-width: var(--maxw); margin: 0 auto; }
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-20);
  border: 1px solid var(--ink-20);
}
.teaser-card {
  background: var(--cream);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  gap: 14px;
  min-height: 340px;
  position: relative;
  transition: background 0.5s var(--ease);
  overflow: hidden;
}
.teaser-card:hover { background: var(--cream-2); }
.teaser-card::before {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-quart);
}
.teaser-card:hover::before { transform: scaleX(1); }
.teaser-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--gold);
  font-weight: 500;
}
.teaser-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60);
  display: flex; align-items: center; gap: 10px;
}
.teaser-label::before {
  content: ""; width: 28px; height: 1px; background: var(--ink-60);
}
.teaser-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  color: var(--forest-ink);
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: auto;
}
.teaser-desc {
  font-size: 15px; line-height: 1.5;
  color: var(--ink-60); max-width: 42ch;
}
.teaser-cta {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--forest); font-weight: 500;
  margin-top: 12px;
  display: flex; align-items: center; gap: 10px;
}
.teaser-cta span {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.teaser-card:hover .teaser-cta span { transform: translateX(5px); }

@media (max-width: 800px) {
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser-card { min-height: 260px; padding: 36px 28px; }
}

/* ========== FAQ ========== */
section.faq-section {
  padding: 140px var(--gutter);
}
.faq-inner { max-width: var(--maxw); margin: 0 auto; }
.faq-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
  margin-bottom: 64px;
}
.faq-head h2 { font-size: clamp(40px, 6vw, 88px); }
.faq-head p {
  max-width: 44ch; color: var(--ink-60); font-size: 16px; line-height: 1.55;
}

.faq-list {
  border-top: 1px solid var(--ink-20);
}
.faq-item {
  border-bottom: 1px solid var(--ink-20);
  padding: 8px 0;
}
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  cursor: none;
  transition: color 0.3s var(--ease);
}
@media (hover: none) { .faq-item summary { cursor: pointer; } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  color: var(--forest-ink);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--forest-ink);
  transition: transform 0.4s var(--ease-quart), opacity 0.3s var(--ease);
}
.faq-icon::before {
  left: 0; right: 0; top: 50%; height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item[open] summary .faq-q { color: var(--forest); }
.faq-a {
  padding: 0 0 28px;
  max-width: 70ch;
  animation: faqFadeIn 0.5s var(--ease);
}
.faq-a p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-60);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 800px) {
  .faq-head { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== CONTACT PAGE ========== */
section.contact-section {
  padding: 60px var(--gutter) 140px;
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.contact-form-wrap {
  position: relative;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  background: var(--cream-2);
  border: 1px solid var(--ink-20);
  border-radius: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex; flex-direction: column;
  gap: 10px;
}
.field-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60);
  display: flex; align-items: center; gap: 10px;
}
.field-label::before {
  content: ""; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--ink-20);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--cream-3);
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-40);
}

/* Checkbox & radio groups */
.checkbox-group, .radio-group {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.chkbox, .radio {
  display: inline-flex; align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid var(--ink-20);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: none;
  transition: all 0.3s var(--ease);
  user-select: none;
}
@media (hover: none) { .chkbox, .radio { cursor: pointer; } }
.chkbox input, .radio input {
  position: absolute; opacity: 0; pointer-events: none;
}
.chkbox:hover, .radio:hover {
  border-color: var(--forest-ink);
}
.chkbox:has(input:checked), .radio:has(input:checked) {
  background: var(--forest-ink);
  color: var(--cream);
  border-color: var(--forest-ink);
}
.chkbox:has(input:checked) span::before,
.radio:has(input:checked) span::before {
  content: "✓ ";
  color: var(--gold);
  margin-right: 4px;
  font-weight: 500;
}

.form-footer {
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--ink-20);
  padding-top: 24px;
}
.form-disclaimer {
  font-size: 12px; line-height: 1.5;
  color: var(--ink-40);
  max-width: 44ch;
}

/* Success state */
.form-success {
  display: none;
  padding: 80px 48px;
  background: var(--cream-2);
  border: 1px solid var(--ink-20);
  border-radius: 6px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.form-success.show { display: flex; }
.success-icon { color: var(--forest); margin-bottom: 8px; }
.form-success h3 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--forest-ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.form-success p {
  font-size: 16px; line-height: 1.55;
  color: var(--ink-60);
  max-width: 44ch;
  margin-bottom: 8px;
}
.form-success strong { color: var(--forest); font-weight: 500; }

/* Contact side cards */
.contact-side {
  display: flex; flex-direction: column;
  gap: 14px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--ink-20);
  border-radius: 6px;
  padding: 24px 24px;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.contact-card:hover {
  border-color: var(--forest-ink);
  transform: translateX(4px);
}
.cc-label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 10px;
}
.cc-value {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.1;
  color: var(--forest-ink);
  letter-spacing: -0.01em;
  font-weight: 400;
  display: block;
}
a.cc-value { color: var(--forest-ink); }
a.cc-value:hover { color: var(--forest); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.cc-sub {
  font-size: 12.5px;
  color: var(--ink-60);
  margin-top: 6px;
}

.contact-next {
  background: var(--forest-ink);
  color: var(--cream);
  padding: 28px 24px;
  border-radius: 6px;
  margin-top: 8px;
}
.contact-next .cc-label { color: rgba(245,236,227,0.55); margin-bottom: 16px; }
.next-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.next-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  font-size: 13.5px; line-height: 1.5;
  color: rgba(245,236,227,0.85);
}
.next-steps li span {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .btn { align-self: flex-start; }
}

/* ========== PRICING — TIGHTER MOBILE ========== */
@media (max-width: 700px) {
  section.pricing { padding: 80px var(--gutter); }
  .pricing-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .pricing-head h2 { font-size: clamp(36px, 8vw, 52px); }
  .pricing-head p { font-size: 15px; }
  .calc-left, .calc-right { padding: 28px 20px; }
  .calc-section { padding-bottom: 22px; margin-bottom: 22px; }
  .service-row { flex-wrap: wrap; gap: 8px; padding: 12px 0; }
  .service-row-left { flex: 1 1 70%; gap: 12px; align-items: flex-start; }
  .service-row-name { font-size: 14px; }
  .service-row-desc { font-size: 11.5px; line-height: 1.4; }
  .service-row-price { font-size: 12px; white-space: nowrap; }
  .option-group { gap: 6px; }
  .opt { padding: 9px 13px; font-size: 12px; }
  .toggle-row { gap: 12px; }
  .toggle-label { font-size: 13.5px; }
  .toggle-sub { font-size: 11.5px; }
  .stepper { padding: 3px; gap: 8px; }
  .stepper button { width: 26px; height: 26px; }
  .stepper-val { font-size: 13px; min-width: 16px; }
  .summary-top { font-size: 10px; }
  .summary-price { font-size: clamp(64px, 16vw, 110px); margin: 20px 0 18px; }
  .summary-price .currency { font-size: 0.32em; }
  .summary-note { font-size: 11.5px; padding-bottom: 18px; margin-bottom: 18px; }
  .sum-line { font-size: 12px; padding: 4px 0; }
  .summary-cta { padding: 14px 20px; font-size: 13.5px; margin-top: 20px; }
}
@media (max-width: 420px) {
  .service-row-left { flex: 1 1 100%; }
  .service-row-price { margin-left: 30px; padding-top: 2px; }
  .opt { flex: 1 1 auto; text-align: center; }
}

/* ========== PORTFOLIO GRID (work.html redesign) ========== */
section.portfolio {
  padding: 40px var(--gutter) 140px;
}
.portfolio-inner { max-width: var(--maxw); margin: 0 auto; }
.pg-items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.pg-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease);
  cursor: none;
}
@media (hover: none) { .pg-item { cursor: pointer; } }
.pg-item:hover { transform: translateY(-6px); }

/* Grid spans — create visual rhythm */
.pg-item.span-full { grid-column: span 12; aspect-ratio: 21/9; }
.pg-item.span-wide { grid-column: span 8; aspect-ratio: 16/10; }
.pg-item.span-half { grid-column: span 6; aspect-ratio: 4/3; }
.pg-item.span-third { grid-column: span 4; aspect-ratio: 4/5; }
.pg-item.span-small { grid-column: span 4; aspect-ratio: 1/1; }

/* Image area */
.pg-image {
  flex: 1;
  background: var(--pg-bg, var(--forest-ink));
  color: var(--pg-fg, var(--cream));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-quart), filter 0.5s var(--ease);
}
.pg-item:hover .pg-image img { transform: scale(1.04); }

/* Placeholder (shown until <img> is added) */
.pg-ph {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pg-fg, var(--cream));
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.95;
}
.pg-ph.xl { font-size: clamp(80px, 14vw, 200px); }
.pg-ph.lg { font-size: clamp(60px, 9vw, 140px); }
.pg-ph.md { font-size: clamp(40px, 6vw, 84px); }
.pg-ph.sm { font-size: clamp(32px, 4vw, 56px); }
.pg-ph.caps {
  font-style: normal;
  letter-spacing: 0.08em;
}
.pg-ph.sans {
  font-family: var(--sans);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.2em;
}
.pg-image::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* Corner tag inside image */
.pg-corner {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--pg-fg, var(--cream));
  opacity: 0.85;
  text-transform: uppercase;
  z-index: 1;
}

/* Caption strip under image */
.pg-caption {
  padding: 18px 2px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--ink-20);
  margin-top: -1px;
  transition: border-color 0.4s var(--ease);
}
.pg-item:hover .pg-caption { border-color: var(--forest); }
.pg-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-40);
  font-weight: 500;
}
.pg-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  color: var(--forest-ink);
  letter-spacing: -0.015em;
  font-weight: 400;
  transition: color 0.4s var(--ease);
}
.pg-item:hover .pg-name { color: var(--forest); }
.pg-cat {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: right;
}

/* Responsive grid */
@media (max-width: 900px) {
  .pg-items { gap: 12px; }
  .pg-item.span-wide { grid-column: span 12; aspect-ratio: 3/2; }
  .pg-item.span-half { grid-column: span 6; aspect-ratio: 1/1; }
  .pg-item.span-third { grid-column: span 6; aspect-ratio: 4/5; }
  .pg-item.span-small { grid-column: span 6; aspect-ratio: 1/1; }
  .pg-item.span-full { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .pg-item.span-half,
  .pg-item.span-third,
  .pg-item.span-small,
  .pg-item.span-wide { grid-column: span 12; aspect-ratio: 4/3; }
  .pg-caption { grid-template-columns: auto 1fr; }
  .pg-cat { grid-column: 1 / -1; text-align: left; }
}

/* Hint strip at end of portfolio */
.pg-hint {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--cream-2);
  border: 1px dashed var(--ink-20);
  border-radius: 4px;
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-60);
  line-height: 1.55;
}
.pg-hint strong { color: var(--gold); }

/* ========== BRAND — TEXT-ONLY WORDMARK ========== */
.brand { 
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--forest-ink);
  font-weight: 400;
  display: flex; align-items: center; gap: 0;
  line-height: 1;
}
.brand-mark { display: none; }