/* ============================================================
   SÂYE PARFÜM — SS26 Lookbook
   Museum-spotlight dark luxury. Fraunces (editorial display,
   optical + soft italics) + Jost (geometric UI). Champagne gold
   & fumé silver on ink. Every accent tuned to the spotlit hero.
   ============================================================ */

:root {
  --bg: #101014;
  --surface: #1B1B20;
  --surface-2: #24242b;
  --ink: #F5F3EE;
  --ink-soft: #b9b6ae;
  --ink-mute: #7c7a74;
  --accent: #C9A227;        /* şampanya altını */
  --accent-2: #7D8B99;      /* füme gümüş */
  --line: rgba(245,243,238,0.12);
  --line-strong: rgba(245,243,238,0.22);
  --gold-glow: rgba(201,162,39,0.35);
  --header-h: 76px;
  --maxw: 1400px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Jost", "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.72;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Cormorant", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0 0 0.4em;
  color: var(--ink);
  overflow-wrap: break-word;
}
/* Editorial italic accents inside display headings — champagne gold,
   inherits the surrounding weight so it reads as emphasis, not a new font. */
:is(h1, h2, h3, h4) em, .ac {
  font-style: italic;
  font-weight: inherit;
  color: var(--accent);
}
/* Hero headline keeps its own clean rhythm — accent stays light, not gold. */
.hero h1 em { color: inherit; }

p { margin: 0 0 1.1em; overflow-wrap: anywhere; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.eyebrow, .label {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--accent);
}

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

.folio {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  color: var(--accent-2);
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border: 0; margin: 0;
  opacity: 0.5;
}
.hairline-frame { position: relative; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--accent); color: #14110a; padding: 10px 18px;
  font-weight: 500; letter-spacing: 0.04em;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(16, 16, 20, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: height 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  height: 62px;
  background: rgba(13,13,17,0.98);
  box-shadow: 0 8px 28px -18px rgba(0,0,0,0.7);
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600;
  font-size: 1.5rem; letter-spacing: 0.14em; color: var(--ink);
  text-transform: uppercase;
}
.brand small {
  font-family: "Jost", sans-serif; font-weight: 400;
  font-size: 0.56rem; letter-spacing: 0.32em;
  color: var(--accent); text-transform: uppercase;
}

.nav-desktop { display: none; align-items: center; gap: clamp(18px, 2vw, 34px); }
.nav-desktop a {
  position: relative; font-family: "Jost", sans-serif; font-weight: 400;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft); padding: 6px 0; transition: color 240ms ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--accent); transition: right 260ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }

.nav-cta {
  border: 1px solid var(--accent);
  padding: 9px 20px !important;
  color: var(--accent) !important;
  letter-spacing: 0.16em;
  transition: background 240ms ease, color 240ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover, .nav-desktop .nav-cta:focus-visible {
  background: var(--accent); color: #14110a !important;
}

/* Hamburger */
.nav-toggle {
  position: relative; z-index: 1100;
  width: 44px; height: 44px; border: 0; background: transparent;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 1.5px; background: var(--ink); display: block;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* Drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1050;
  width: min(360px, 92vw);
  background: #131318;
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 24px) 30px 40px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600; font-size: 1.7rem;
  color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding-left 220ms ease;
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 8px; }
.drawer .drawer-cta {
  margin-top: 22px; border: 1px solid var(--accent); text-align: center;
  font-family: "Jost", sans-serif; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.18em; padding: 15px 0; color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.drawer .drawer-cta:hover { background: var(--accent); color: #14110a; padding-left: 0; }
.drawer-meta { margin-top: auto; padding-top: 26px; color: var(--ink-mute); font-size: 0.8rem; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55); opacity: 0; visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO — full-bleed spotlight + gold sillage parallax
   ============================================================ */
main { padding-top: var(--header-h); }

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: #0a0a0d;
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: -6% 0 0 0; width: 100%; height: 112%;
  object-fit: cover; object-position: center 42%;
  will-change: transform;
  animation: heroZoom 22s ease-out both;
  -webkit-mask-image: none;
}
.hero.is-ready .hero__img { animation-play-state: running; }
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.0); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(201,162,39,0.10), transparent 70%),
    linear-gradient(180deg, rgba(16,16,20,0.62) 0%, rgba(16,16,20,0.15) 38%, rgba(16,16,20,0.86) 100%);
}
/* sillage layer (parallax smoke) */
.hero__sillage {
  position: absolute; left: 50%; top: 34%; width: 70vw; height: 70vw;
  max-width: 820px; max-height: 820px;
  transform: translate(-50%, -50%);
  pointer-events: none; will-change: transform;
}
.hero__sillage span {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.16), transparent 62%);
  animation: sillage 12s ease-in-out infinite;
}
.hero__sillage span:nth-child(2) { animation-duration: 16s; animation-delay: -3s; transform: scale(0.7); opacity: 0.8; }
.hero__sillage span:nth-child(3) { animation-duration: 20s; animation-delay: -7s; transform: scale(1.25); opacity: 0.5; }
@keyframes sillage {
  0%, 100% { transform: scale(0.9) translateY(0); opacity: 0.55; }
  50% { transform: scale(1.15) translateY(-3%); opacity: 0.9; }
}

.hero__mask {
  position: absolute; inset: 0;
  background: var(--bg);
  animation: heroMask 1400ms cubic-bezier(.76,0,.24,1) forwards;
  z-index: 3; pointer-events: none;
}
@keyframes heroMask {
  from { clip-path: inset(0 0 0 0); }
  to { clip-path: inset(0 0 100% 0); }
}

.hero__content {
  position: relative; z-index: 4; width: 100%;
  padding-bottom: clamp(40px, 7vw, 90px);
}
.hero__folio-tr {
  position: absolute; top: calc(var(--header-h) - 30px); right: clamp(16px,4vw,32px);
  z-index: 4;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero__eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--accent); }
.hero h1 {
  font-size: clamp(2.9rem, 10.5vw, 4.5rem);
  line-height: 0.92; letter-spacing: -0.015em;
  max-width: 14ch;
}
.hero h1 .word { display: inline-block; white-space: nowrap; overflow: hidden; }
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 900ms cubic-bezier(.2,.8,.2,1) forwards;
}
.hero h1 .word:nth-child(2) > span { animation-delay: 140ms; }
@keyframes wordUp { to { transform: translateY(0); } }
.hero__sub {
  margin-top: 22px; max-width: 46ch; color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 300;
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero__trust {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 22px;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.hero__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.hero__trust svg { width: 16px; height: 16px; color: var(--accent); }

html.no-js .hero__mask { display: none; }
html.no-js .hero h1 .word > span { transform: none; animation: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Jost", sans-serif; font-weight: 400; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 15px 30px; cursor: pointer; border: 1px solid transparent;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}
.btn svg { width: 15px; height: 15px; transition: transform 300ms ease; }
.btn-primary { background: var(--accent); color: #14110a; border-color: var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: #d8b23c; color: #14110a; transform: translateY(-2px);
}
.btn-primary:hover svg { transform: translateX(5px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent); transform: translateY(-2px);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__mask, .hero__img, .hero__sillage span, .hero h1 .word > span { animation: none !important; }
  .hero__img { transform: none; inset: 0; height: 100%; }
  /* Without the wipe animation the mask would stay opaque and hide the hero;
     reveal the image and un-clip the headline so both stay visible. */
  .hero__mask { display: none !important; }
  .hero h1 .word > span { transform: none !important; }
}

/* ============================================================
   INTRO / MANIFESTO
   ============================================================ */
.intro { background: var(--bg); }
.intro__grid {
  display: grid; gap: clamp(28px, 4vw, 60px);
  grid-template-columns: 1fr;
  align-items: start;
}
.intro__lead {
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.16;
  color: var(--ink); letter-spacing: -0.01em;
}
.intro__lead em { font-style: italic; color: var(--accent); }
.intro__body { color: var(--ink-soft); max-width: 52ch; }
.intro__stats {
  display: flex; flex-wrap: wrap; gap: 30px 44px; margin-top: 30px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.stat__num {
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--accent); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block; margin-top: 8px; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute);
}
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1.15fr 0.85fr; }
}

/* Section head */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(34px, 5vw, 64px);
}
.sec-head h2 { font-size: clamp(2.1rem, 5.5vw, 4.2rem); max-width: 16ch; }
.sec-head p { color: var(--ink-soft); max-width: 38ch; margin: 0; }

/* ============================================================
   COLLECTION — look cards (horizontal scroll on wide; grid mobile)
   ============================================================ */
.collection { background: var(--bg); }
.looks {
  display: grid; gap: clamp(18px, 2.2vw, 30px);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .looks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .looks { grid-template-columns: repeat(3, 1fr); } }

.look {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1);
}
/* theme micro-effect: warm gold sillage glow on hover, consistent with tier/craft cards */
.look:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.42);
  box-shadow: 0 26px 50px -32px rgba(201,162,39,0.4);
}
@media (prefers-reduced-motion: reduce) {
  .look, .tier, .craft-card, .contact-card { transition: none; }
  .look:hover, .tier:hover, .craft-card:hover, .contact-card:hover { transform: none; }
}
.look__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.look__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.look:hover .look__media img { transform: scale(1.06); }
.look__folio {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: "Jost", sans-serif; font-weight: 400; font-size: 0.66rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink);
  background: rgba(16,16,20,0.55); padding: 5px 10px; backdrop-filter: blur(4px);
}
.look__tag {
  position: absolute; top: 14px; right: 16px; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(201,162,39,0.5);
  padding: 4px 10px; background: rgba(16,16,20,0.4);
}
.look__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.look__body h3 { font-size: 1.9rem; margin-bottom: 4px; }
.look__notes {
  font-size: 0.78rem; letter-spacing: 0.06em; color: var(--accent-2);
  text-transform: uppercase; margin-bottom: 14px;
}
.look__desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.look__foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto;
}
.look__price {
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600; font-size: 1.5rem;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.look__price small { font-family: "Jost", sans-serif; font-size: 0.6rem; color: var(--ink-mute); letter-spacing: 0.1em; display: block; }
.look__link {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 7px;
}
.look__link svg { width: 13px; height: 13px; transition: transform 260ms ease; }
.look:hover .look__link svg { transform: translateX(4px); }

/* ============================================================
   SIGNATURE — spotlight band
   ============================================================ */
.signature {
  position: relative; overflow: hidden;
  background: #0b0b0e;
}
.signature__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.signature__media { position: relative; }
.signature__media img {
  width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  border: 1px solid var(--line);
}
.signature__frame {
  position: absolute; inset: 14px; border: 1px solid rgba(201,162,39,0.4);
  pointer-events: none;
}
.signature__folio { color: var(--accent-2); margin-bottom: 14px; }
.signature h2 { font-size: clamp(2.3rem, 6vw, 4.6rem); }
.signature__body { color: var(--ink-soft); max-width: 44ch; }
.signature__notes {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.signature__notes li { padding: 18px 14px 4px 0; border-right: 1px solid var(--line); }
.signature__notes li:last-child { border-right: 0; }
.signature__notes .k { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); display: block; margin-bottom: 8px; }
.signature__notes .v { font-family: "Fraunces", "Cormorant", serif; font-weight: 600; font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
@media (min-width: 960px) {
  .signature__grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* ============================================================
   SEASON NOTE — quote/manifesto band
   ============================================================ */
.season {
  position: relative; background: var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.season__inner { max-width: 62ch; margin: 0 auto; text-align: center; }
.season blockquote {
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600; font-style: italic;
  font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.22; margin: 0;
  color: var(--ink); letter-spacing: -0.01em;
}
.season blockquote::before { content: "“"; color: var(--accent); }
.season blockquote::after { content: "”"; color: var(--accent); }
.season cite { display: block; margin-top: 28px; font-style: normal; }
.season cite .n { display: block; font-family: "Jost", sans-serif; font-weight: 400; letter-spacing: 0.04em; color: var(--ink); }
.season cite .r { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-2); }

/* ============================================================
   PRICING / COLLECTION TIERS
   ============================================================ */
.pricing { background: var(--bg); }
.tiers {
  display: grid; gap: clamp(18px, 2.4vw, 28px);
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  border: 1px solid var(--line); background: var(--surface);
  padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.tier:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.45); box-shadow: 0 26px 50px -30px rgba(201,162,39,0.4); }
.tier.is-featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(201,162,39,0.06), var(--surface)); }
.tier__badge {
  align-self: flex-start; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #14110a; background: var(--accent); padding: 4px 11px; margin-bottom: 18px;
}
.tier h3 { font-size: 2.1rem; margin-bottom: 2px; }
.tier__vol { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 20px; }
.tier__price {
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600; font-size: 3rem; color: var(--ink);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.tier__price .cur { font-size: 1.4rem; color: var(--accent); vertical-align: super; }
.tier__ex { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin: 8px 0 22px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.tier ul li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; font-size: 0.9rem; color: var(--ink-soft); }
.tier ul li svg { width: 16px; height: 16px; color: var(--accent); margin-top: 4px; }
.tier ul li.no { color: var(--ink-mute); }
.tier ul li.no svg { color: var(--ink-mute); }
.tier .btn { margin-top: auto; justify-content: center; }

/* Process / how it works — vertical timeline */
.process { background: var(--surface); border-top: 1px solid var(--line); }
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.step { position: relative; padding: 0 0 clamp(30px, 4vw, 48px) clamp(46px, 6vw, 70px); }
.step:last-child { padding-bottom: 0; }
.step__dot {
  position: absolute; left: 6px; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--accent); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.step__dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.step__time { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.step h3 { font-size: 1.7rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); margin: 0; max-width: 56ch; }

/* Features / craft values */
.craft { background: var(--bg); }
.craft-grid {
  display: grid; gap: clamp(18px, 2.2vw, 26px);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .craft-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .craft-grid { grid-template-columns: repeat(4, 1fr); } }
.craft-card {
  border: 1px solid var(--line); padding: 28px 24px; background: var(--surface);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.craft-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.4); box-shadow: 0 26px 50px -32px rgba(201,162,39,0.4); }
.craft-ico {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--accent);
}
.craft-ico svg { width: 22px; height: 22px; }
.craft-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.craft-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* Notes block */
.notes-list {
  display: grid; gap: 0; grid-template-columns: 1fr;
  border: 1px solid var(--line);
}
@media (min-width: 700px) { .notes-list { grid-template-columns: repeat(3, 1fr); } }
.note-cell { padding: 26px 24px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.note-cell .macro { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 16px; }

/* ============================================================
   TESTIMONIALS — editorial grid (no carousel)
   ============================================================ */
.voices { background: var(--surface); border-top: 1px solid var(--line); }
.voices-grid { display: grid; gap: clamp(18px, 2.4vw, 28px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .voices-grid { grid-template-columns: repeat(2, 1fr); } }
.voice {
  border: 1px solid var(--line); padding: 30px; background: var(--bg);
  display: flex; flex-direction: column;
}
.voice__stars { color: var(--accent); letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 14px; }
.voice p { font-family: "Fraunces", "Cormorant", serif; font-size: 1.5rem; line-height: 1.34; color: var(--ink); font-weight: 500; }
.voice cite { margin-top: 18px; font-style: normal; display: block; border-top: 1px solid var(--line); padding-top: 16px; }
.voice cite .who { font-weight: 400; color: var(--ink); }
.voice cite .meta { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-2); margin-top: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--line); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 46px 24px 0; position: relative;
  font-family: "Fraunces", "Cormorant", serif; font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background:
    linear-gradient(var(--accent),var(--accent)) center/13px 1.5px no-repeat,
    linear-gradient(var(--accent),var(--accent)) center/1.5px 13px no-repeat;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item > .answer {
  height: 0; padding: 0; overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 26px; }
.faq-item > .answer p { color: var(--ink-soft); margin: 0; max-width: 68ch; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: #0b0b0e; text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 40%, rgba(201,162,39,0.14), transparent 70%);
}
.cta-band__inner { position: relative; z-index: 2; max-width: 60ch; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
.cta-band p { color: var(--ink-soft); margin: 0 auto 30px; max-width: 46ch; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Atelier notes (activity signal) */
.notes-log { background: var(--bg); border-top: 1px solid var(--line); }
.log-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.log-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.log-list time { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.log-list p { margin: 0; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0b0b0e; border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 90px) 0 30px; }
.foot-grid { display: grid; gap: clamp(30px, 4vw, 50px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.foot-brand .brand { font-size: 1.8rem; }
.foot-brand p { color: var(--ink-soft); max-width: 40ch; margin-top: 16px; font-size: 0.92rem; }
.foot-col h4 { font-family: "Jost", sans-serif; font-weight: 400; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a, .foot-col address { color: var(--ink-soft); font-size: 0.9rem; font-style: normal; transition: color 220ms ease; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
}
.foot-bottom p { margin: 0; font-size: 0.78rem; color: var(--ink-mute); }
.foot-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.foot-legal a { font-size: 0.78rem; color: var(--ink-mute); }
.foot-legal a:hover { color: var(--accent); }
.foot-reg { font-size: 0.72rem; color: var(--ink-mute); letter-spacing: 0.04em; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { position: relative; padding: clamp(120px, 16vw, 200px) 0 clamp(50px, 7vw, 90px); background: #0b0b0e; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 70% 20%, rgba(201,162,39,0.10), transparent 65%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 4.5rem); }
.page-hero p { color: var(--ink-soft); max-width: 52ch; font-size: 1.08rem; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 20px; }
.breadcrumb a { color: var(--accent-2); }
.breadcrumb a:hover { color: var(--accent); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-cards { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contact-card {
  border: 1px solid var(--line); padding: 24px; background: var(--surface); border-radius: 12px;
  transition: transform 260ms cubic-bezier(.4,0,.2,1), border-color 260ms ease, box-shadow 260ms ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(201,162,39,0.4); box-shadow: 0 20px 40px -28px rgba(0,0,0,0.7); }
.contact-ico {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.12); color: var(--accent); margin-bottom: 16px;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-card a, .contact-card span { color: var(--ink); font-size: 0.95rem; word-break: break-word; }
.contact-card a:hover { color: var(--accent); }
.contact-card small { display: block; margin-top: 8px; color: var(--ink-mute); font-size: 0.76rem; letter-spacing: 0.04em; }

.hours-grid { display: grid; gap: 10px; grid-template-columns: 1fr; margin-top: 8px; }
.hours-row {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line); padding: 12px 18px; background: var(--surface);
  font-variant-numeric: tabular-nums;
}
.hours-row.is-today { border-color: var(--accent); background: linear-gradient(90deg, rgba(201,162,39,0.08), var(--surface)); }
.hours-row .d { font-size: 0.86rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.hours-row .h { font-size: 0.9rem; color: var(--ink); }
.hours-row.is-today .h { color: var(--accent); }

/* Forms */
.form-wrap { border: 1px solid var(--line); background: var(--surface); padding: clamp(24px, 4vw, 44px); }
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); }
.field label .opt { text-transform: none; letter-spacing: 0.02em; color: var(--ink-mute); font-size: 0.85em; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 0; border-bottom: 1.5px solid var(--line-strong);
  color: var(--ink); font-family: inherit; font-size: 1rem; padding: 12px 4px;
  transition: border-color 240ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23C9A227' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 6px center; padding-right: 24px; }
.field select option { background: var(--surface); color: var(--ink); }
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 12px; grid-column: 1 / -1; }
.field.kvkk label { text-transform: none; letter-spacing: 0; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0; accent-color: var(--accent);
}
.form-wrap .btn { margin-top: 4px; width: 100%; justify-content: center; }
@media (min-width: 620px) { .form-wrap .btn { width: auto; } }

/* ============================================================
   LEGAL / DOC pages
   ============================================================ */
.doc { background: var(--bg); }
.doc-body { max-width: 760px; }
.doc-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-top: 48px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { font-size: 1.4rem; margin-top: 30px; }
.doc-body p, .doc-body li { color: var(--ink-soft); }
.doc-body ul, .doc-body ol { padding-left: 22px; }
.doc-body li { margin-bottom: 8px; }
.doc-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.doc-meta { font-size: 0.8rem; color: var(--ink-mute); letter-spacing: 0.06em; margin-bottom: 40px; }

/* Sitemap page */
.sitemap-cols { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .sitemap-cols { grid-template-columns: repeat(3, 1fr); } }
.sitemap-cols h3 { font-size: 1.5rem; color: var(--accent); }
.sitemap-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sitemap-cols a { color: var(--ink-soft); }
.sitemap-cols a:hover { color: var(--accent); }

/* 404 */
.notfound { min-height: 70vh; display: flex; align-items: center; text-align: center; }
.notfound .big { font-size: clamp(6rem, 22vw, 16rem); color: var(--accent); line-height: 0.9; font-family: "Fraunces", "Cormorant", serif; font-weight: 600; }

/* Tables */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 22px 0;
  border: 1px solid var(--line); border-radius: 6px;
  /* Scrolling-shadow affordance: the "cover" gradients ride with the content
     (local) and lift as you scroll, revealing the edge shadow (scroll) — a
     pure-CSS hint that the table pans horizontally on narrow screens. */
  background:
    linear-gradient(90deg, var(--bg), rgba(16,16,20,0)) 0 0,
    linear-gradient(270deg, var(--bg), rgba(16,16,20,0)) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(0,0,0,0.5), rgba(0,0,0,0)) 0 0,
    radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.5), rgba(0,0,0,0)) 100% 0;
  background-repeat: no-repeat;
  background-size: 34px 100%, 34px 100%, 16px 100%, 16px 100%;
  background-attachment: local, local, scroll, scroll;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
table th { color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; font-weight: 400; }
table td { color: var(--ink-soft); }

/* Thank you */
.thanks { min-height: 72vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 54ch; margin: 0 auto; }
.thanks .mark {
  width: 78px; height: 78px; margin: 0 auto 26px; border-radius: 50%;
  border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.thanks .mark svg { width: 34px; height: 34px; }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: #17171c; border: 1px solid var(--line-strong);
  padding: 22px 24px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.3rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: 11px 16px; cursor: pointer;
  font-family: "Jost", sans-serif; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.cookie-actions button[data-consent="accept"] { background: var(--accent); color: #14110a; border-color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { background: #d8b23c; }
/* Reject must be a solid, equal-weight peer of Accept — no consent dark pattern. */
.cookie-actions button[data-consent="reject"] { background: var(--surface-2); border-color: var(--line-strong); color: var(--ink); }
.cookie-actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--surface-2); border-color: var(--accent); color: var(--accent); }
.cookie-actions button[data-consent="accept"]:hover { color: #14110a; }
@media (min-width: 768px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* Cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.is-open { display: flex; }
.cookie-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cookie-modal__panel { position: relative; z-index: 2; background: #17171c; border: 1px solid var(--line-strong); max-width: 480px; width: 100%; padding: 30px; }
.cookie-modal__panel h3 { font-size: 1.8rem; margin-bottom: 6px; }
.cookie-toggle { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cookie-toggle .t { font-family: "Jost", sans-serif; font-weight: 400; color: var(--ink); font-size: 0.95rem; }
.cookie-toggle .d { font-size: 0.8rem; color: var(--ink-mute); margin-top: 3px; }
.cookie-toggle input { width: 20px; height: 20px; accent-color: var(--accent); margin-top: 3px; }
.cookie-modal .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* Decorative gold hairline frame around page edges (subtle) */
.edge-frame { position: fixed; inset: 10px; border: 1px solid rgba(201,162,39,0.14); pointer-events: none; z-index: 500; }
@media (max-width: 640px) { .edge-frame { inset: 6px; } }

/* utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   SS26 — ART-DIRECTION ELEVATION LAYER
   Editorial numbering, hairline rules, tactile grain, richer
   cards & motion. Additive only — nothing above is overridden
   in a way that touches structure, the hero, or the guards.
   ============================================================ */

/* Fraunces optical/soft tuning on the display pieces that read large */
.brand, .intro__lead, .look__price, .tier__price, .season blockquote,
.voice p, .signature__notes .v, .faq-item summary, .notfound .big,
.stat__num, .page-hero h1, .thanks__inner h1 {
  font-optical-sizing: auto;
}
.hero h1 { font-variation-settings: "SOFT" 24, "WONK" 0; }

/* Fine photographic grain — static, barely there; lifts the flat ink
   into something that feels shot on film. Below the header, above bg. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 400; pointer-events: none;
  opacity: 0.05; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Editorial section rule + running index ---------------- */
main { counter-reset: sec; }
.section .sec-head {
  counter-increment: sec;
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 3vw, 40px);
}
.section .sec-head > div .eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
}
.section .sec-head > div .eyebrow::before {
  content: counter(sec, decimal-leading-zero);
  font-family: "Fraunces", "Cormorant", Georgia, serif;
  font-style: italic; font-weight: 500; font-size: 1.15rem;
  line-height: 1; letter-spacing: 0; text-transform: none;
  color: var(--accent);
  padding-right: 14px; border-right: 1px solid var(--line-strong);
}

/* A hairline that draws itself under the section heading on reveal */
.sec-head h2 { position: relative; }

/* ---- Eyebrow leading tick (non-sec-head eyebrows) ---------- */
.intro .eyebrow, .signature__folio { position: relative; }

/* ---- Look cards: gold corner ticks + refined chrome -------- */
.look__media::before, .look__media::after {
  content: ""; position: absolute; z-index: 3; width: 22px; height: 22px;
  pointer-events: none; opacity: 0; transition: opacity 320ms ease, transform 420ms cubic-bezier(.2,.7,.2,1);
}
.look__media::before {
  top: 10px; left: 10px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent);
  transform: translate(6px, 6px);
}
.look__media::after {
  bottom: 10px; right: 10px; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent);
  transform: translate(-6px, -6px);
}
.look:hover .look__media::before, .look:hover .look__media::after { opacity: 0.75; transform: translate(0,0); }
.look__body { position: relative; }
.look__body::before {
  content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.look:hover .look__body::before { transform: scaleX(1); }

/* ---- Signature note columns: hover warms the value --------- */
.signature__notes li { transition: background 300ms ease; }
.signature__notes li:hover { background: rgba(201,162,39,0.05); }

/* ---- Pricing: lift the featured tier out of the row -------- */
@media (min-width: 820px) {
  .tier.is-featured { transform: translateY(-14px); box-shadow: 0 34px 60px -40px rgba(201,162,39,0.5); }
  .tier.is-featured:hover { transform: translateY(-20px); }
}
.tier { position: relative; overflow: hidden; }
.tier::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 320ms ease;
}
.tier:hover::after, .tier.is-featured::after { opacity: 1; }

/* ---- Craft cards: faint running index, editorial corner ---- */
.craft-grid { counter-reset: craft; }
.craft-card { counter-increment: craft; position: relative; overflow: hidden; }
.craft-card::before {
  content: counter(craft, decimal-leading-zero);
  position: absolute; top: 14px; right: 18px;
  font-family: "Fraunces", "Cormorant", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 2.6rem; line-height: 1; color: rgba(201,162,39,0.16);
  transition: color 360ms ease;
}
.craft-card:hover::before { color: rgba(201,162,39,0.4); }

/* ---- Macro note cells: gentle zoom, warm caption ---------- */
.note-cell { position: relative; overflow: hidden; transition: background 320ms ease; }
.note-cell .macro { transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.note-cell:hover .macro { transform: scale(1.05); }
.note-cell:hover { background: rgba(201,162,39,0.04); }

/* ---- Testimonials: hanging quotation glyph ---------------- */
.voices .voice { position: relative; overflow: hidden; }
.voices .voice::before {
  content: "\201D"; position: absolute; top: -6px; right: 14px;
  font-family: "Fraunces", "Cormorant", Georgia, serif; font-weight: 600;
  font-size: 6rem; line-height: 1; color: rgba(201,162,39,0.12); pointer-events: none;
}

/* ---- FAQ: warm the row on hover/open --------------------- */
.faq-item { transition: background 260ms ease; }
.faq-item:hover, .faq-item[open] { background: linear-gradient(90deg, rgba(201,162,39,0.045), transparent 60%); }
.faq-item summary { transition: color 220ms ease, padding-left 260ms cubic-bezier(.2,.7,.2,1); }
.faq-item:hover summary { padding-left: 8px; color: var(--accent); }
.faq-item[open] summary { color: var(--accent); }

/* ---- Atelier log: index dot + hover slide ----------------- */
.log-list li { transition: padding-left 260ms cubic-bezier(.2,.7,.2,1); }
.log-list li:hover { padding-left: 8px; }
.log-list time { position: relative; }

/* ---- Reveal: point will-change only while in flight; add a
   soft blur-settle that stays transform/opacity/filter only. --- */
.reveal { will-change: opacity, transform; }
.reveal.is-in { will-change: auto; }

/* ============================================================
   REDUCED MOTION — kill every decorative flourish added above.
   Content stays fully visible and static.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
  .look__media::before, .look__media::after,
  .look__body::before, .tier::after { transition: none; }
  .note-cell .macro, .note-cell:hover .macro { transition: none; transform: none; }
  .tier.is-featured, .tier.is-featured:hover { transform: none; }
  .faq-item:hover summary, .log-list li:hover { padding-left: 0; }
  .reveal { will-change: auto; }
}
