/* ============================================================
   Olea & Hound
   Brand: Quiet European atelier. Ink on parchment. Olive accent.
   Inspirations: World of Interiors, Cereal magazine, Aesop, Apartamento.
   ============================================================ */

/* ---------- View Transitions API (cross-page) ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 320ms;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

:root {
  /* Ink (warm near-black, brown undertone — never pure #000) */
  --ink: #1A1814;
  --ink-2: #2B2823;
  --ink-3: #4A453D;

  /* Paper (warm parchment) */
  --paper: #F2EDE2;
  --paper-2: #E8E1D0;
  --paper-3: #DDD4BD;

  /* Signature olive — used sparingly, never decorative */
  --olive: #6E7A4F;
  --olive-dark: #4F5A36;
  --olive-pale: #C7CBB3;

  /* Sparingly: warm clay for memorial / refund accents */
  --clay: #A85A3C;
  --clay-pale: #E5C4B5;

  /* Muted text */
  --muted: #7C7666;
  --muted-2: #9A9484;

  --line: rgba(26, 24, 20, 0.10);
  --line-strong: rgba(26, 24, 20, 0.22);

  --shadow-xs: 0 1px 2px rgba(26, 24, 20, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 24, 20, 0.06), 0 1px 2px rgba(26, 24, 20, 0.04);
  --shadow-md: 0 8px 30px rgba(26, 24, 20, 0.10), 0 2px 6px rgba(26, 24, 20, 0.06);
  --shadow-lg: 0 30px 70px rgba(26, 24, 20, 0.16), 0 6px 14px rgba(26, 24, 20, 0.08);

  --radius-xs: 2px;
  --radius: 4px;
  --radius-lg: 10px;

  --pad: clamp(20px, 5vw, 48px);
  --col: min(1180px, 100% - 2 * var(--pad));

  /* Fraunces optical-size axis for display sizes — Apple-grade type feel */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  /* Subtle paper grain — looks gallery-printed, not screen-printed */
  background-image:
    radial-gradient(ellipse at top, rgba(255, 251, 240, 0.4), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.03 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; text-decoration-color: var(--line-strong); transition: text-decoration-color 160ms ease; }
a:hover { text-decoration-color: var(--ink); }
input { font: inherit; color: inherit; }

/* ============================================================
   DEMO BANNER
   ============================================================ */
.demo-banner {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  line-height: 1.4;
  font-weight: 400;
}
.demo-banner strong {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 8px;
  color: var(--olive-pale);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
main#app { min-height: 100dvh; display: flex; flex-direction: column; }
.stage {
  display: block;
  padding: clamp(32px, 5vw, 56px) var(--pad);
  width: var(--col);
  margin: 0 auto;
  flex: 1;
}
.stage.hidden { display: none; }

/* Stage entrance animation */
.stage:not(.hidden) { animation: stageIn 480ms cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes stageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TOPBAR / WORDMARK
   ============================================================ */
.topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 4px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.005em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
}
.wordmark a { text-decoration: none; }
.wordmark .amp { font-family: var(--serif); font-style: italic; color: var(--olive); padding: 0 2px; }

.trust {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--olive-dark); font-weight: 400; }

.display-sm {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96;
}
.display-sm em { font-style: italic; color: var(--olive-dark); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 24px;
}

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  max-width: 50ch;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}
.lede em { font-style: italic; color: var(--ink-2); }

.lede-sm { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   STAGE 1 — HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  padding-bottom: clamp(48px, 6vw, 88px);
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
}

.hero-text {
  display: grid;
  gap: clamp(24px, 3vw, 32px);
  align-content: start;
  padding-top: clamp(8px, 1vw, 16px);
}

.hero-image {
  position: relative;
  align-self: center;
  margin-top: clamp(0px, 2vw, 24px);
}
.hero-image::before {
  /* Soft warm wash behind the framed image */
  content: "";
  position: absolute;
  inset: -8% -6% -10% -4%;
  background: radial-gradient(ellipse at 60% 40%, rgba(199, 203, 179, 0.5), transparent 60%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(20px);
}
.hero-frame {
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding: clamp(14px, 1.8vw, 22px);
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
  max-width: 480px;
  margin-left: auto;
  transform: rotate(-1.2deg);
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-frame:hover { transform: rotate(0deg) translateY(-2px); }
.hero-frame-mat {
  background: var(--paper);
  padding: clamp(18px, 2.4vw, 32px);
}
.hero-frame-mat img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  filter: sepia(0.08) saturate(0.9) contrast(1.04);
}
.hero-caption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) {
  .hero-image { order: -1; max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   UPLOADER — the conversion bottleneck
   ============================================================ */
.uploader {
  display: block;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.2vw, 32px);
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.uploader::after {
  /* Olive corner mark — atelier signature */
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--olive);
  border-right: 1.5px solid var(--olive);
}
.uploader:hover,
.uploader:focus-within {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.uploader.drag { border-color: var(--olive); background: #fdfbf5; }

.uploader-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}
.uploader svg { color: var(--ink); flex-shrink: 0; }
.uploader-text strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.012em;
  line-height: 1.2;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.uploader-text span { font-size: 14px; color: var(--muted); }

/* Reassurance row */
.reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
}
.reassurance span { display: inline-flex; align-items: center; gap: 6px; }
.reassurance strong { color: var(--ink); font-weight: 600; }
.reassurance span::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--olive);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   PHOTO TIPS
   ============================================================ */
.photo-tips {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.photo-tips summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.photo-tips summary::-webkit-details-marker { display: none; }
.tips-label {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.tips-toggle {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--olive);
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  line-height: 1;
}
.photo-tips[open] .tips-toggle { transform: rotate(45deg); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.tip {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  align-content: start;
}
.tip:last-child { border-right: 0; }
.tip-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.tip h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.tip p { font-size: 13px; line-height: 1.55; color: var(--muted); }

.tip-dont {
  grid-column: 1 / -1;
  border-right: 0;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.tip-dont .tip-num { color: var(--clay); }
.tip-dont p { color: var(--ink-2); }
.tip-dont .dont-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--clay);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .tips-grid { grid-template-columns: 1fr; }
  .tip { border-right: 0; border-bottom: 1px solid var(--line); }
  .tip-dont { grid-template-columns: 1fr; }
}

/* ============================================================
   EXAMPLES STRIP
   ============================================================ */
.examples {
  padding: clamp(40px, 6vw, 72px) 0 0;
  border-top: 1px solid var(--line);
  margin-top: clamp(40px, 6vw, 64px);
}
.examples-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.examples-heading h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.015em;
}
.examples-heading h2 em { font-style: italic; color: var(--olive-dark); }
.examples-heading .note { font-size: 13px; color: var(--muted); }

.example-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.example-grid figure { display: flex; flex-direction: column; gap: 10px; }
.example-grid img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper-2);
  filter: sepia(0.06) saturate(0.95);
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 320ms ease;
}
.example-grid figure:hover img { transform: translateY(-3px); filter: sepia(0) saturate(1); }
.example-grid figcaption {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 720px) {
  .example-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   STAGE 2 — GENERATING
   ============================================================ */
.generating {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
  position: relative;
}
.generating::before {
  /* Atmospheric warm wash */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(199, 203, 179, 0.25), transparent 60%);
  pointer-events: none;
}
.thumb-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper-2);
  z-index: 1;
}
.thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(26, 24, 20, 0.08);
}
.thumb-wrap img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.08); }

.progress {
  width: min(420px, 100%);
  height: 2px;
  background: var(--paper-3);
  overflow: hidden;
  z-index: 1;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--olive);
  transition: width 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.progress-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
}
.progress-list li { transition: color 320ms ease; }
.progress-list li.done { color: var(--ink); }
.progress-list li.done::before { content: "—  "; color: var(--olive); font-style: normal; }
.progress-list li:not(.done)::before { content: "·  "; color: var(--muted-2); }

/* ============================================================
   STAGE 3 — PICKER
   ============================================================ */
.picker { display: grid; gap: clamp(28px, 4vw, 44px); }
.picker-header {
  display: grid;
  gap: 8px;
  max-width: 600px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.style-card {
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  display: grid;
  gap: 14px;
  padding: 0;
}
.style-card:hover { transform: translateY(-4px); }
.style-card-frame {
  background: #fff;
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 320ms ease;
  position: relative;
}
.style-card:hover .style-card-frame { box-shadow: var(--shadow-md); }
.style-card-frame img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper-2);
  width: 100%;
}
.style-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 0 4px;
}
.style-card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.style-card-pick {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}
@media (max-width: 720px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   STAGE 4 — PREVIEW + BUY
   ============================================================ */
.preview {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 960px) { .preview { grid-template-columns: 1fr; } }

.preview-frame {
  display: grid;
  gap: 16px;
  justify-items: center;
}
.frame-outer {
  position: relative;
  padding: clamp(20px, 3vw, 36px);
  background: linear-gradient(140deg, #1A1814 0%, #0E0D0A 100%);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
}
.frame-outer::before {
  /* Subtle wood grain hint */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 6px, rgba(255,255,255,0.015) 6px 7px);
  pointer-events: none;
}
.frame-mat {
  background: var(--paper);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: inset 0 0 0 1px rgba(26, 24, 20, 0.05);
}
.frame-mat img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  background: var(--paper);
}
.frame-caption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.preview-cta {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: clamp(8px, 1vw, 16px);
}
.style-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.price { display: grid; gap: 6px; }
.price-amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.price-amount::before {
  content: "€";
  font-size: 24px;
  vertical-align: super;
  margin-right: 2px;
  color: var(--muted);
  font-weight: 400;
}
.price-detail { color: var(--muted); font-size: 14px; line-height: 1.5; }
.price-detail strong { color: var(--ink); font-weight: 600; }

/* ---------- Primary CTA ---------- */
.cta-btn {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 0;
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}
.cta-btn::after {
  /* Olive sliver on hover */
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--olive);
  transform: translateX(-100%);
  transition: transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cta-btn:hover { background: var(--ink-2); padding-left: 36px; padding-right: 32px; }
.cta-btn:hover::after { transform: translateX(0); }
.cta-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cta-btn:disabled:hover { padding: 20px 28px; background: var(--ink); }
.cta-btn:disabled:hover::after { transform: translateX(-100%); }
.cta-spinner {
  width: 16px; height: 16px;
  border: 1.5px solid rgba(242, 237, 226, 0.3);
  border-top-color: var(--paper);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
.cta-spinner.hidden { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.cta-btn-sm {
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  justify-self: start;
  display: inline-flex;
}

.checkout-trust {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  line-height: 1.5;
}
.checkout-trust li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
}
.checkout-trust li::before {
  content: "—";
  color: var(--olive);
  font-family: var(--serif);
}
.checkout-trust strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   GHOST BUTTONS
   ============================================================ */
.ghost-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  transition: color 160ms ease;
}
.ghost-btn:hover { color: var(--ink); }

.ghost-btn-strong {
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #fff;
  transition: all 200ms ease;
  white-space: nowrap;
}
.ghost-btn-strong:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ghost-btn-strong:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   STAGE 5 — THANK YOU
   ============================================================ */
.thanks {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0 0;
  max-width: 580px;
  margin: 0 auto;
}
.check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-family: var(--serif);
}
.thanks-small { font-size: 13px; color: var(--muted); margin-top: 24px; }

/* ---------- Download card ---------- */
.download-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 540px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  margin-top: 12px;
}
.download-card[hidden] { display: none; }
.download-pending {
  grid-template-columns: auto 1fr;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}
.download-pending .cta-spinner {
  border-color: rgba(26, 24, 20, 0.15);
  border-top-color: var(--olive);
}
.download-thumb {
  width: 100px; height: 100px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-xs);
}
.download-thumb img { width: 100%; height: 100%; object-fit: cover; }
.download-meta { display: grid; gap: 8px; }
.download-title { font-family: var(--serif); font-size: 18px; letter-spacing: -0.01em; }
.download-detail { font-size: 13px; color: var(--muted); }
.download-fallback { font-size: 11px; color: var(--muted-2); margin-top: 2px; letter-spacing: 0.02em; }

/* ---------- 5-min hold banner ---------- */
.hold-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 580px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  text-align: left;
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--olive);
}
.hold-committed { border-left-color: var(--paper-3); background: var(--paper-2); }
.hold-cancelled { border-left-color: var(--clay); background: #fdf6f3; }
.hold-meta { display: grid; gap: 4px; }
.hold-title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hold-title #hold-countdown {
  font-variant-numeric: tabular-nums;
  color: var(--olive);
  font-weight: 500;
}
.hold-detail { font-size: 13px; color: var(--muted); line-height: 1.5; }
.hold-detail a { color: var(--ink); }

@media (max-width: 600px) { .hold-banner { grid-template-columns: 1fr; } }

/* ============================================================
   TOP TRUST BAR (rotating ticker)
   ============================================================ */
.top-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  position: relative;
}
.top-bar-content { display: inline-flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.top-bar-content span { display: inline-flex; align-items: center; gap: 8px; }
.top-bar-content span::before {
  content: "·";
  color: var(--olive);
  font-size: 14px;
}
.top-bar-content span:first-child::before { display: none; }

/* ============================================================
   FLOATING HELP BUTTON (live counter / contact)
   ============================================================ */
.floating-help {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: grid;
  gap: 8px;
  justify-items: end;
}
.floating-help-btn {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.floating-help-btn:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.floating-help-pulse {
  width: 8px; height: 8px;
  background: var(--olive-pale);
  border-radius: 50%;
  position: relative;
}
.floating-help-pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--olive-pale);
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 0; }
}
.floating-help-stat {
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.floating-help-stat strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.floating-help-stat::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--olive);
  border-radius: 50%;
}
@media (max-width: 720px) {
  .floating-help { bottom: 80px; right: 12px; }
  .floating-help-stat { display: none; }
  .floating-help-btn { padding: 12px 18px; font-size: 11px; }
}

/* Help panel (opens on click) */
.help-panel {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  z-index: 101;
  display: none;
  animation: panelIn 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.help-panel.open { display: block; }
.help-panel h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.help-panel ul { list-style: none; display: grid; gap: 4px; }
.help-panel ul li a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.help-panel ul li:last-child a { border-bottom: 0; }
.help-panel ul li a:hover { color: var(--olive-dark); }
.help-panel .help-contact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.help-panel .help-contact a { color: var(--ink); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .help-panel { bottom: 70px; right: 12px; left: 12px; width: auto; }
}

/* ============================================================
   STICKY MOBILE CTA (bottom-fixed)
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 12px 16px;
  background: rgba(242, 237, 226, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  animation: stickyIn 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sticky-cta-meta {
  display: grid;
  gap: 2px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
}
.sticky-cta-meta strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sticky-cta-btn {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 0;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
@keyframes stickyIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@media (max-width: 720px) {
  .sticky-cta.visible { display: flex; }
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--paper-2) 0%,
    var(--paper-3) 50%,
    var(--paper-2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   EMAIL CAPTURE MODAL ("Save my previews")
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 20, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  animation: backdropIn 320ms ease;
}
.modal-backdrop.open { display: flex; }
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--paper);
  max-width: 460px;
  width: 100%;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 160ms ease;
}
.modal-close:hover { color: var(--ink); }
.modal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.modal h3 em { font-style: italic; color: var(--olive-dark); }
.modal p { font-size: 15px; color: var(--muted); margin-bottom: 22px; line-height: 1.55; }
.modal-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 2px;
  margin-bottom: 14px;
  font-family: var(--sans);
  transition: border-color 160ms ease;
}
.modal-input:focus { outline: none; border-color: var(--ink); }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .cta-btn { flex: 1; }
.modal-skip {
  background: none;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.modal-skip:hover { color: var(--ink); }
.modal-fine { font-size: 11px; color: var(--muted-2); margin-top: 16px; line-height: 1.5; }

/* ============================================================
   EXPRESS PAYMENT BADGES
   ============================================================ */
.express-pay {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.express-pay-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.express-pay-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.express-pay-badge {
  height: 26px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.express-pay-badge.apple { background: #000; color: #fff; border-color: #000; }
.express-pay-badge.gpay { font-family: "Inter", sans-serif; }
.express-pay-badge.klarna { background: #FFA8CD; border-color: #FFA8CD; color: #17120F; }
.express-pay-badge.visa { color: #1A1F71; font-style: italic; font-weight: 700; }
.express-pay-badge.mc { color: #EB001B; font-weight: 700; letter-spacing: -0.02em; }

/* ============================================================
   FRAME-ON-WALL ROOM MOCKUP (preview stage)
   ============================================================ */
.room-mockup-toggle {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 4px;
  background: var(--paper-2);
  border-radius: 999px;
  width: fit-content;
  align-self: center;
}
.room-mockup-toggle button {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  background: none;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  transition: all 200ms ease;
  cursor: pointer;
}
.room-mockup-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

.room-mockup {
  width: 100%;
  max-width: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}
.room-mockup.active { display: flex; }
.room-mockup-frame {
  width: 32%;
  background: var(--ink);
  padding: 4%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.room-mockup-frame-mat {
  background: var(--paper);
  padding: 8%;
}
.room-mockup-frame-mat img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

/* ============================================================
   ADD ANOTHER PET (in picker stage)
   ============================================================ */
.add-another {
  background: #fff;
  border: 1px dashed var(--line-strong);
  padding: 24px;
  text-align: center;
  display: grid;
  gap: 10px;
  cursor: pointer;
  transition: all 200ms ease;
  align-content: center;
  aspect-ratio: 3 / 4;
}
.add-another:hover {
  border-color: var(--olive);
  border-style: solid;
  background: #fdfbf5;
}
.add-another-icon {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  color: var(--olive);
  line-height: 1;
}
.add-another-text {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.add-another-detail {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   HOVER REVEAL (on examples grid + style cards)
   ============================================================ */
.example-grid figure { position: relative; cursor: pointer; }
.example-grid figure::after {
  content: "Try this style →";
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: all 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  white-space: nowrap;
}
.example-grid figure:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   PERSISTENT STATE BANNER (welcome back)
   ============================================================ */
.welcome-back {
  background: var(--olive-pale);
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-2);
  animation: stageIn 480ms cubic-bezier(0.22, 0.61, 0.36, 1);
  flex-wrap: wrap;
}
.welcome-back-text strong { color: var(--ink); }
.welcome-back-actions { display: flex; gap: 12px; align-items: center; }
.welcome-back-actions button {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
}
.welcome-back-actions button:hover { color: var(--olive-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.topbar-nav {
  display: flex;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: baseline;
}
.topbar-nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
  position: relative;
}
.topbar-nav a:hover { color: var(--ink); }
.topbar-nav a.active { color: var(--ink); }
.topbar-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 1px;
  background: var(--olive);
}
@media (max-width: 720px) {
  .topbar-nav { display: none; }
}

/* ============================================================
   SECTIONS (long-scroll homepage + subpages)
   ============================================================ */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: 0; }
.section-header {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header .eyebrow { margin-bottom: 0; }
.section-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
.section-header h2 em { font-style: italic; color: var(--olive-dark); }
.section-header p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--ink-3);
  font-variation-settings: "opsz" 48, "SOFT" 80;
  max-width: 56ch;
}

/* ============================================================
   PROCESS — 3 step section
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.4vw, 44px);
}
.process-card { display: grid; gap: 18px; }
.process-card .process-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
}
.process-card .process-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.08) saturate(0.95);
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.process-card:hover .process-image img { transform: scale(1.04); }
.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.9;
  color: var(--olive);
  font-variation-settings: "opsz" 144;
  margin-top: 8px;
}
.process-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.process-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 720px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LIFESTYLE — broken editorial grid
   ============================================================ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
.lifestyle-item { overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow-sm); }
.lifestyle-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lifestyle-item:hover img { transform: scale(1.03); }
.li-1 { grid-column: span 7; aspect-ratio: 7 / 5; }
.li-2 { grid-column: span 5; aspect-ratio: 1 / 1; }
.li-3 { grid-column: span 4; aspect-ratio: 4 / 5; }
.li-4 { grid-column: span 8; aspect-ratio: 8 / 5; }
@media (max-width: 720px) {
  .lifestyle-item { grid-column: 1 / -1 !important; aspect-ratio: 16 / 10 !important; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.review-card {
  background: #fff;
  padding: clamp(24px, 2.4vw, 32px);
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars {
  font-family: var(--serif);
  color: var(--olive);
  font-size: 16px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.review-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  font-variation-settings: "opsz" 48;
}
.review-body em { font-style: italic; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-author img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-2);
}
.review-author-meta { display: grid; gap: 2px; }
.review-author-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-author-detail { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ============================================================
   BRAND STORY split section
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: sepia(0.06) saturate(0.95);
}
.story-text { display: grid; gap: 22px; align-content: center; }
.story-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.story-text h2 em { font-style: italic; color: var(--olive-dark); }
.story-text p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  font-variation-settings: "opsz" 48, "SOFT" 80;
}
.story-text p em { font-style: italic; color: var(--ink-2); }
.story-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-dark);
  text-decoration: none;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: none;
  transition: gap 200ms ease, color 200ms ease;
}
.story-link:hover { gap: 12px; color: var(--ink); }
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 28px 4px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.012em;
  color: var(--ink);
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--olive-dark); }
.faq-item .faq-toggle {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--olive);
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 4px 28px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 70ch;
  font-variation-settings: "opsz" 48;
}
.faq-item .faq-answer a { color: var(--ink); }

/* ============================================================
   BIG CTA — bottom of page
   ============================================================ */
.cta-section {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  margin: clamp(64px, 10vw, 120px) calc(var(--pad) * -1) 0;
  text-align: center;
  border: 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  /* Subtle radial olive glow */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(110, 122, 79, 0.18), transparent 60%);
}
.cta-section-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section .eyebrow { color: var(--olive-pale); }
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.cta-section h2 em { font-style: italic; color: var(--olive-pale); }
.cta-section .cta-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 22px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 240ms ease;
  margin-top: 12px;
}
.cta-section .cta-section-cta:hover {
  background: var(--olive-pale);
  letter-spacing: 0.18em;
}

/* ============================================================
   SUBPAGE HEROES (about / styles / reviews / memorial)
   ============================================================ */
.subpage-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  display: grid;
  gap: 24px;
  max-width: 760px;
}
.subpage-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.subpage-hero h1 em { font-style: italic; color: var(--olive-dark); }
.subpage-hero .lede { max-width: 60ch; }

/* Full-bleed image inside a subpage */
.subpage-image {
  margin: clamp(40px, 6vw, 64px) calc(var(--pad) * -1);
}
.subpage-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* ============================================================
   STYLES PAGE — large style cards
   ============================================================ */
.style-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.style-feature:last-child { border-bottom: 0; }
.style-feature:nth-child(even) .style-feature-image { order: 2; }
.style-feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-2);
  box-shadow: var(--shadow-md);
}
.style-feature-text { display: grid; gap: 20px; align-content: center; }
.style-feature-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.style-feature-text h2 em { font-style: italic; color: var(--olive-dark); }
.style-feature-text p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  font-variation-settings: "opsz" 48, "SOFT" 80;
}
.style-feature-text .when {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}
.style-feature-text .when strong {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-dark);
  font-weight: 600;
}
@media (max-width: 880px) {
  .style-feature { grid-template-columns: 1fr; }
  .style-feature:nth-child(even) .style-feature-image { order: 0; }
}

/* ============================================================
   STEP INDICATOR (wizard chrome across funnel stages)
   ============================================================ */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted-2);
}
.stepper-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: color 240ms ease;
}
.stepper-item.completed { color: var(--muted); }
.stepper-item.active { color: var(--ink); }
.stepper-num {
  font-variant-numeric: tabular-nums;
  opacity: 0.45;
  transition: opacity 240ms ease;
}
.stepper-item.completed .stepper-num,
.stepper-item.active .stepper-num { opacity: 1; }
.stepper-item.active .stepper-num { color: var(--olive); }
.stepper-item.completed::after {
  content: "✓";
  color: var(--olive);
  margin-left: 4px;
  font-size: 12px;
}
.stepper-sep {
  width: 28px;
  height: 1px;
  background: var(--line-strong);
  margin: 0 14px;
}
@media (max-width: 720px) {
  .stepper-item:not(.active) .stepper-label { display: none; }
  .stepper-item:not(.active) { padding: 0; }
  .stepper-sep { width: 16px; margin: 0 8px; }
}

/* ============================================================
   BEFORE / AFTER SLIDER (hero — show the transformation)
   ============================================================ */
.before-after {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--paper-2);
  box-shadow: var(--shadow-lg);
}
.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.before-after .ba-after { z-index: 2; }
.before-after .ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--paper);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.before-after .ba-handle {
  position: absolute;
  top: 50%;
  width: 44px; height: 44px;
  background: var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.before-after .ba-handle::before,
.before-after .ba-handle::after {
  content: "";
  width: 6px;
  height: 10px;
  border-top: 2px solid var(--ink);
  border-bottom: 0;
}
.before-after .ba-handle::before {
  border-left: 2px solid var(--ink);
  margin-right: 4px;
  transform: rotate(-45deg) translate(2px, 0);
}
.before-after .ba-handle::after {
  border-right: 2px solid var(--ink);
  margin-left: 4px;
  transform: rotate(45deg) translate(-2px, 0);
}
.before-after .ba-label {
  position: absolute;
  top: 16px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(26, 24, 20, 0.7);
  color: var(--paper);
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 5;
  backdrop-filter: blur(4px);
}
.before-after .ba-label.before { left: 16px; }
.before-after .ba-label.after { right: 16px; }

/* ============================================================
   ADD-ON CARDS (multi-pet, digital pack, gift mode)
   ============================================================ */
.addons {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.addon-card {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.addon-card:hover { border-color: var(--line-strong); }
.addon-card.checked {
  border-color: var(--olive);
  background: #fdfbf5;
}
.addon-checkbox {
  width: 20px; height: 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 200ms ease;
}
.addon-card.checked .addon-checkbox {
  border-color: var(--olive);
  background: var(--olive);
}
.addon-checkbox::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: opacity 200ms ease;
}
.addon-card.checked .addon-checkbox::after { opacity: 1; }
.addon-meta { display: grid; gap: 2px; }
.addon-title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.addon-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.addon-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.addon-price .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Gift mode expanded panel */
.gift-panel {
  display: none;
  background: var(--paper-2);
  padding: 18px;
  margin-top: -1px;
  border: 1px solid var(--olive);
  border-top: 0;
  display: grid;
  gap: 12px;
}
.addon-card.gift.checked + .gift-panel { display: grid; }
.gift-panel label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.gift-panel input,
.gift-panel textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 2px;
  font-family: var(--sans);
  resize: vertical;
}
.gift-panel input:focus,
.gift-panel textarea:focus { outline: none; border-color: var(--olive); }
.gift-panel textarea { min-height: 80px; }

/* Total bar above CTA */
.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 4px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.total-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.total-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.total-amount::before {
  content: "€";
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
  color: var(--muted);
}

/* ============================================================
   UGC WALL — customer photos on their walls
   ============================================================ */
.ugc-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
}
.ugc-tile {
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-xs);
  position: relative;
  cursor: pointer;
  transition: transform 320ms ease;
}
.ugc-tile:hover { transform: translateY(-3px); }
.ugc-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ugc-tile-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(26, 24, 20, 0.9), transparent);
  color: var(--paper);
  padding: 24px 14px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 240ms ease;
}
.ugc-tile:hover .ugc-tile-caption { opacity: 1; }
@media (max-width: 720px) { .ugc-wall { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   GIFT CARD PAGE
   ============================================================ */
.giftcard-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
}
.giftcard-display {
  background: linear-gradient(140deg, #1A1814 0%, #2B2823 100%);
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--paper);
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.giftcard-display::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(199, 203, 179, 0.15), transparent 60%);
}
.giftcard-display-wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.giftcard-display-wordmark .amp { color: var(--olive-pale); padding: 0 2px; }
.giftcard-display-amount {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.giftcard-display-amount::before {
  content: "€";
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 4px;
  color: var(--olive-pale);
}
.giftcard-display-detail {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-pale);
  font-weight: 500;
}
.giftcard-form { display: grid; gap: 20px; }
.amount-picker { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 8px; }
.amount-btn {
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 200ms ease;
}
.amount-btn:hover { border-color: var(--line-strong); }
.amount-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.amount-custom {
  padding: 0 16px;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
  width: 100px;
}
.amount-custom:focus { outline: none; border-color: var(--ink); }
.giftcard-fields { display: grid; gap: 14px; }
.giftcard-fields label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.giftcard-fields input,
.giftcard-fields textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-family: var(--sans);
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 0;
}
.giftcard-fields input:focus,
.giftcard-fields textarea:focus { outline: none; border-color: var(--ink); }
@media (max-width: 880px) { .giftcard-hero { grid-template-columns: 1fr; } }

/* ============================================================
   PET NAME INPUT (below uploader)
   ============================================================ */
.pet-name-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: -8px;
  box-shadow: var(--shadow-xs);
}
.pet-name-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  white-space: nowrap;
}
.pet-name-input {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  transition: border-color 200ms ease;
}
.pet-name-input:focus { outline: none; border-bottom-color: var(--olive); }
.pet-name-input::placeholder { color: var(--muted-2); font-style: italic; }

/* ============================================================
   STYLE QUIZ CTA + MODAL
   ============================================================ */
.quiz-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: -4px;
}
.quiz-cta button {
  background: none;
  border: 0;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.quiz-cta button:hover { color: var(--ink); }

.quiz-step { display: none; }
.quiz-step.active { display: grid; gap: 18px; }
.quiz-progress {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-dark);
  font-weight: 600;
}
.quiz-question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.quiz-options {
  display: grid;
  gap: 10px;
}
.quiz-option {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quiz-option:hover { border-color: var(--ink); background: #fdfbf5; }
.quiz-option-letter {
  font-family: var(--serif);
  font-style: italic;
  color: var(--olive);
  font-size: 14px;
}
.quiz-result { display: grid; gap: 16px; text-align: center; padding: 8px 0; }
.quiz-result-style {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.quiz-result-style em { font-style: italic; color: var(--olive-dark); }
.quiz-result-reason {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}
.quiz-result img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SIZE SELECTOR (at preview / review stage)
   ============================================================ */
.size-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.size-option {
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 200ms ease;
  text-align: center;
  display: grid;
  gap: 4px;
  position: relative;
}
.size-option:hover { border-color: var(--line-strong); }
.size-option.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.size-option.active .size-popular { color: var(--olive-pale); }
.size-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1;
}
.size-dims {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.6;
}
.size-price {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-top: 4px;
}
.size-price::before {
  content: "€";
  font-size: 11px;
  vertical-align: super;
  margin-right: 1px;
  opacity: 0.7;
}
.size-popular {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   SKELETON CARDS (style picker before previews arrive)
   ============================================================ */
.style-card.skeleton-card { cursor: progress; pointer-events: none; opacity: 0.85; }
.style-card.skeleton-card .style-card-frame img {
  background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  visibility: hidden;
}
.style-card.skeleton-card .style-card-frame {
  position: relative;
  overflow: hidden;
}
.style-card.skeleton-card .style-card-frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 16px);
  background: linear-gradient(90deg, var(--paper-2) 0%, var(--paper-3) 50%, var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
.style-card.skeleton-card .style-card-pick { color: var(--muted-2); }
.style-card.ready { animation: cardIn 480ms cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECOND PET UPLOAD (inline when add-on toggled)
   ============================================================ */
.second-pet-panel {
  display: none;
  background: var(--paper-2);
  padding: 18px;
  margin-top: -1px;
  border: 1px solid var(--olive);
  border-top: 0;
}
.addon-card[data-addon="second-pet"].checked + .second-pet-panel { display: block; }
.second-pet-uploader {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 200ms ease;
}
.second-pet-uploader:hover { border-color: var(--olive); }
.second-pet-uploader.has-file { border-style: solid; border-color: var(--olive); background: #fdfbf5; }
.second-pet-uploader svg { color: var(--olive); flex-shrink: 0; }
.second-pet-uploader-text { display: grid; gap: 2px; flex: 1; }
.second-pet-uploader-text strong {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.second-pet-uploader-text span { font-size: 12px; color: var(--muted); }
.second-pet-uploader-name {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.second-pet-uploader-name label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}
.second-pet-uploader-name input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  padding: 6px 0;
  font-family: var(--sans);
}
.second-pet-uploader-name input:focus { outline: none; border-bottom-color: var(--olive); }

/* ============================================================
   PET NAME — surfaced throughout
   ============================================================ */
.pet-name-display {
  font-family: var(--serif);
  font-style: italic;
  color: var(--olive-dark);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--pad);
  gap: 28px;
}
.not-found-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-md);
  filter: sepia(0.1) saturate(0.9);
}
.not-found-image img { width: 100%; height: 100%; object-fit: cover; }
.not-found h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  max-width: 18ch;
}
.not-found h1 em { font-style: italic; color: var(--olive-dark); }
.not-found p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 44ch;
}
.not-found-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.not-found-links a { color: var(--olive-dark); text-decoration: none; }
.not-found-links a:hover { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: auto;
  padding: 32px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.site-footer .made {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-3);
}
.site-footer .made em { color: var(--olive-dark); font-style: italic; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.site-footer-links { display: flex; gap: 20px; text-transform: uppercase; font-weight: 500; }
