/* =========================================================
   KÖZ RAKU ATÖLYESİ — "OCAK / THE FORGE"
   Dark elemental fire-craft. Coal black, ember orange, metallic
   copper, smoke grey. Fraunces (warm display serif, mixed-case,
   italic accents) + Inter (clean sans). Process-of-fire as the
   spine: ember sparks, temperature gauge, craquelure, metallic sheen.
   Deliberately NOT the partner-batch editorial-brutalist formula.
   ========================================================= */

:root {
  --coal:     #121012;
  --coal-2:   #1A1518;
  --coal-3:   #221B1E;
  --coal-4:   #2C2327;
  --line:     rgba(208,178,150,.16);
  --line-2:   rgba(208,178,150,.28);
  --line-em:  rgba(229,99,31,.42);

  --cream:    #F3EBE2;
  --ash:      #C9C0C2;
  --smoke:    #A39AA0;
  --smoke-dim:#857C82;

  --ember:    #E5631F;
  --ember-lt: #FF7C3A;
  --copper:   #B07A3C;
  --copper-lt:#CE9A55;
  --bronze:   #8A5E2E;

  --on-ember: #1A1011;

  --disp: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --hh: 74px;
  --maxw: 1320px;
  --gut: clamp(18px, 5vw, 64px);

  --ease: cubic-bezier(.22,.7,.24,1);
  --glow: 0 0 36px -6px rgba(229,99,31,.55);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html, body { margin: 0; max-width: 100vw; overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--coal);
  color: var(--ash);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint heat-grain so the black never reads flat */
  background-image:
    radial-gradient(900px 600px at 78% -8%, rgba(229,99,31,.10), transparent 70%),
    radial-gradient(700px 520px at -6% 12%, rgba(176,122,60,.08), transparent 72%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--disp);
  font-optical-sizing: auto;
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  color: var(--cream);
  text-wrap: balance;
}
em { font-style: italic; }

p { margin: 0 0 1em; }
a { color: var(--copper-lt); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ember-lt); }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 600; color: var(--cream); }
::selection { background: var(--ember); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- shared atoms ---------- */
.lead { font-size: clamp(1.14rem, 2vw, 1.5rem); line-height: 1.45; color: var(--cream); font-weight: 400; }
.text-mute { color: var(--smoke); }
.muted { color: var(--smoke-dim); }

/* the flame badge that replaces the old number/eyebrow system */
.flag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: .7rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--copper-lt);
  margin: 0 0 18px;
}
.flag svg { width: 15px; height: 17px; color: var(--ember); flex: 0 0 15px; filter: drop-shadow(0 0 6px rgba(229,99,31,.6)); }

.sec-head { max-width: 30ch; margin-bottom: clamp(30px, 4vw, 54px); }
.sec-head.wide { max-width: 46ch; }
.sec-head h2 {
  font-size: clamp(2rem, 5.4vw, 3.9rem);
  line-height: 1.02; margin: 0;
}
.sec-head h2 em { color: var(--ember); font-style: italic; }
.sec-head .sec-note { color: var(--smoke); font-size: .98rem; margin: 16px 0 0; max-width: 42ch; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ember); color: var(--on-ember);
  padding: 12px 18px; font-weight: 700; font-size: .85rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--ember-lt); outline-offset: 3px; }

/* metallic sheen text helper */
.sheen {
  background: linear-gradient(96deg, var(--copper) 0%, var(--copper-lt) 28%, #F2D9B4 46%, var(--copper-lt) 64%, var(--bronze) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========================================================
   BLOCK RHYTHM
   ========================================================= */
.block { padding: clamp(60px, 9vw, 138px) 0; position: relative; }
.block--tight { padding: clamp(44px, 6vw, 90px) 0; }
.block--alt { background: var(--coal-2); }
.rule-top { border-top: 1px solid var(--line); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  height: var(--hh);
  background: rgba(18,16,18,.72);
  -webkit-backdrop-filter: blur(12px) saturate(1.1); backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  transition: height .26s var(--ease), background .26s var(--ease);
}
.site-header.is-scrolled { height: 60px; background: rgba(15,13,15,.92); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand-mark {
  width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 120%, var(--ember), var(--bronze) 80%);
  color: #fff; border-radius: 50% 50% 50% 50% / 56% 56% 44% 44%;
  box-shadow: 0 0 18px -3px rgba(229,99,31,.7);
}
.brand-mark svg { width: 21px; height: 23px; }
.brand .wm { font-family: var(--disp); font-weight: 600; font-size: 1.5rem; line-height: .9; letter-spacing: .01em; }
.brand .wm small {
  display: block; font-family: var(--sans); font-weight: 600; font-size: .54rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--copper); margin-top: 4px;
}

.nav-desktop { display: none; align-items: center; gap: clamp(16px, 2vw, 34px); }
.nav-desktop a {
  font-family: var(--sans); font-weight: 500; color: var(--ash);
  font-size: .82rem; letter-spacing: .04em; position: relative; padding: 6px 0;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--ember); transition: right .28s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--cream); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.nav-cta::after { display: none; }
.nav-cta {
  background: var(--ember); color: var(--on-ember) !important;
  padding: 10px 20px !important; border-radius: 2px; font-weight: 600 !important;
  transition: box-shadow .22s var(--ease), background .22s var(--ease);
}
.nav-cta:hover { background: var(--ember-lt); box-shadow: var(--glow); }

.nav-toggle {
  position: relative; z-index: 1100; width: 46px; height: 46px;
  border: 1px solid var(--line-2); background: var(--coal-2); border-radius: 3px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; padding: 0; transition: border-color .2s var(--ease);
}
.nav-toggle:hover { border-color: var(--ember); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--cream); transition: transform .28s var(--ease), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1000px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* =========================================================
   DRAWER
   ========================================================= */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(8,6,8,.66);
  opacity: 0; visibility: hidden; transition: opacity .26s ease, visibility .26s ease; z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(390px, 92vw);
  background: var(--coal-2); border-left: 1px solid var(--line-2);
  transform: translateX(100%); transition: transform .36s var(--ease); z-index: 1050;
  padding: calc(var(--hh) + 22px) 30px 32px; display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--cream); font-family: var(--disp); font-weight: 520; font-size: 1.55rem;
  padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 13px;
}
.drawer a .n { font-family: var(--sans); font-size: .72rem; font-weight: 700; color: var(--ember); letter-spacing: .1em; }
.drawer a:hover { color: var(--ember-lt); }
.drawer .drawer-cta {
  margin-top: 24px; background: var(--ember); color: var(--on-ember) !important;
  justify-content: center; border-bottom: 0; border-radius: 3px; font-family: var(--sans);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; padding: 17px 18px;
}
.drawer a.drawer-cta:hover { background: var(--ember-lt); box-shadow: var(--glow); color: var(--on-ember) !important; }
.drawer-meta { margin-top: auto; padding-top: 26px; color: var(--smoke); font-size: .82rem; line-height: 1.8; }
.drawer-meta a { font-size: .82rem; border: 0; padding: 0; color: var(--copper-lt); display: inline; font-weight: 600; }
@media (min-width: 1000px) { .drawer, .drawer-backdrop { display: none; } }

/* =========================================================
   BUTTONS — molten, not the partner-batch dark pill
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  padding: 15px 28px; border: 1px solid transparent; border-radius: 3px; cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), transform .12s var(--ease);
  text-align: center; will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-flame {
  background: linear-gradient(120deg, var(--copper) -10%, var(--ember) 55%, var(--ember-lt) 120%);
  color: var(--on-ember); font-weight: 700; box-shadow: 0 0 0 0 rgba(229,99,31,0);
}
.btn-flame:hover, .btn-flame:focus-visible { box-shadow: var(--glow); color: var(--on-ember); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line-2); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--ember); color: var(--ember-lt); }
.btn-copper { background: transparent; color: var(--copper-lt); border-color: var(--copper); }
.btn-copper:hover, .btn-copper:focus-visible { background: var(--copper); color: var(--on-ember); }
.btn-block { width: 100%; }
@media (min-width: 560px) { .btn-auto { width: auto; } }

/* =========================================================
   HERO — dramatic fire photography + ember sparks
   ========================================================= */
.hero {
  position: relative; min-height: clamp(560px, 92vh, 920px);
  display: flex; align-items: flex-end; overflow: clip;
  padding-top: var(--hh); border-bottom: 1px solid var(--line);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  position: absolute; inset: -6% 0 -6% 0; width: 100%; height: 112%;
  object-fit: cover; object-position: 50% 42%;
  filter: contrast(1.12) saturate(1.05) brightness(.62);
  will-change: transform;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,16,18,.62) 0%, rgba(18,16,18,.28) 36%, rgba(18,16,18,.86) 100%),
    radial-gradient(120% 90% at 75% 18%, rgba(229,99,31,.34), transparent 55%);
}
.hero-spark { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 110px); padding-top: clamp(40px,8vw,80px); }
.hero-flagline {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--copper-lt);
}
.hero-flagline .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 10px 1px var(--ember); animation: pip 2s ease-in-out infinite; }
@keyframes pip { 50% { opacity: .35; } }
.hero h1 {
  font-size: clamp(2.35rem, 7.4vw, 6.2rem);
  font-weight: 470; line-height: 1.0; letter-spacing: -0.02em;
  margin: 0 0 24px; max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--ember); }
.hero h1 .w { display: inline-block; }
.hero-sub { font-size: clamp(1.08rem, 1.8vw, 1.4rem); color: var(--ash); max-width: 48ch; margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--smoke); }
.hero-trust svg { width: 16px; height: 16px; color: var(--ember); flex: 0 0 16px; }

/* kinetic heading: rise out of the heat-haze */
.kin .w { opacity: 0; transform: translateY(.5em); filter: blur(8px); transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); transition-delay: calc(var(--w,0) * 90ms); }
.kin.is-in .w { opacity: 1; transform: none; filter: blur(0); }

/* =========================================================
   EMBER RAIL — facts on a cold→hot gauge (NOT a 2x2 stat band)
   ========================================================= */
.emberline { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--coal-2); }
.emberline .rail {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 720px) { .emberline .rail { grid-template-columns: repeat(4, 1fr); } }
.emberline .node {
  position: relative; padding: clamp(22px,3vw,34px) clamp(18px,2.4vw,30px);
  display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--line); min-width: 0;
}
@media (min-width: 720px) { .emberline .node { flex-direction: column; gap: 8px; border-bottom: 0; border-right: 1px solid var(--line); } .emberline .node:last-child { border-right: 0; } }
.emberline .node::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: var(--heat, 25%);
  background: linear-gradient(90deg, var(--bronze), var(--ember));
}
@media (max-width: 719px) { .emberline .node::before { display: none; } }
.emberline .num { font-family: var(--disp); font-weight: 560; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1; color: var(--copper-lt); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.emberline .lbl { font-size: .82rem; color: var(--smoke); max-width: 22ch; }

/* =========================================================
   SPLIT (raku-nedir, generic 2-col)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(30px,4vw,60px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.media-r { grid-template-columns: 1.05fr .95fr; } }
.split .col { min-width: 0; }

.frame { position: relative; overflow: hidden; border-radius: 4px; background: var(--coal-3); border: 1px solid var(--line); }
.frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 60px rgba(0,0,0,.5); }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.08) saturate(1.04); transition: transform .9s var(--ease); }
.frame.tall { aspect-ratio: 4/5; }
.frame:hover img { transform: scale(1.04); }
.frame .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(10,8,9,.9));
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  font-size: .82rem; color: var(--ash);
}
.frame .cap .t { color: var(--ember-lt); font-weight: 700; font-variant-numeric: tabular-nums; }

.def p { color: var(--ash); }
.def .lead { margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip { font-size: .8rem; color: var(--cream); border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 15px; display: inline-flex; align-items: center; gap: 8px; }
.chip svg { width: 14px; height: 14px; color: var(--ember); }

/* =========================================================
   FORGE — pinned temperature gauge + firing stages (the heart)
   ========================================================= */
.forge { position: relative; background: var(--coal); overflow: clip; border-top: 1px solid var(--line); }
.forge-haze {
  position: absolute; left: 50%; bottom: -10%; width: min(900px, 96vw); height: 80%;
  transform: translateX(-50%); pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side at 50% 100%, rgba(229,99,31,.4), transparent 72%);
  filter: blur(26px); animation: haze 7s ease-in-out infinite;
}
@keyframes haze { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .forge-haze { animation: none; } }
.forge-sticky { padding: clamp(54px,9vw,120px) 0; position: relative; z-index: 1; }
.forge.is-pinned { height: 320vh; }
.forge.is-pinned .forge-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
.forge-inner { display: grid; grid-template-columns: 1fr; gap: clamp(30px,4vw,60px); width: 100%; }
@media (min-width: 880px) { .forge-inner { grid-template-columns: 150px 1fr; align-items: center; } }

/* vertical thermometer gauge (desktop) */
.gauge { display: none; }
@media (min-width: 880px) {
  .gauge { display: grid; grid-template-rows: auto 1fr; gap: 16px; height: min(60vh, 460px); }
  .gauge-read { font-family: var(--disp); font-weight: 560; color: var(--cream); line-height: 1; }
  .gauge-read .deg { font-size: clamp(2rem, 3vw, 3rem); color: var(--ember-lt); font-variant-numeric: tabular-nums; }
  .gauge-read i { font-style: normal; font-size: 1rem; color: var(--copper); margin-left: 2px; }
  .gauge-body { position: relative; min-height: 0; }
  .gauge-track { position: absolute; left: 0; top: 0; bottom: 0; width: 10px; border-radius: 100px; background: var(--coal-4); overflow: hidden; }
  .gauge-fill { position: absolute; left: 0; right: 0; bottom: 0; height: var(--heat, 0%); background: linear-gradient(0deg, #6b3a1c, var(--ember) 55%, var(--ember-lt)); box-shadow: 0 0 18px rgba(229,99,31,.7); transition: height .12s linear; }
  .gauge-ticks { position: absolute; left: 24px; top: 0; bottom: 0; right: 0; }
  .gauge-ticks span { position: absolute; left: 0; font-size: .64rem; letter-spacing: .1em; color: var(--smoke-dim); transform: translateY(50%); white-space: nowrap; }
}

.stages { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.stage {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,2.4vw,30px);
  padding: clamp(20px,2.6vw,30px) 0; border-bottom: 1px solid var(--line);
  opacity: .5; transition: opacity .4s var(--ease);
}
.forge:not(.is-pinned) .stage { opacity: 1; }
.stage.is-hot { opacity: 1; }
.stage .badge {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid var(--line-2);
  font-family: var(--disp); font-weight: 600; font-size: 1.1rem; color: var(--smoke);
  transition: all .4s var(--ease);
}
.stage.is-hot .badge { color: var(--on-ember); border-color: transparent; background: radial-gradient(circle at 50% 120%, var(--ember-lt), var(--bronze)); box-shadow: 0 0 16px -2px rgba(229,99,31,.8); }
.stage h3 { font-size: clamp(1.3rem,2.6vw,1.9rem); margin: 2px 0 7px; }
.stage p { margin: 0; color: var(--smoke); max-width: 56ch; }
.stage .when { display: inline-block; margin-top: 10px; font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--copper-lt); }

/* =========================================================
   REDUCTION SLIDER — before/after (smoke → metallic)
   ========================================================= */
.compare { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); user-select: none; background: var(--coal-3); touch-action: pan-y; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .after { filter: contrast(1.12) saturate(1.25) brightness(1.02); }
.compare .before { filter: grayscale(.9) brightness(.5) contrast(1.1); clip-path: inset(0 var(--clip, 50%) 0 0); }
.compare .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--ember); transform: translateX(-1px); box-shadow: 0 0 14px rgba(229,99,31,.8); z-index: 3; }
.compare .grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--coal); border: 2px solid var(--ember); display: grid; place-items: center; color: var(--ember-lt); }
.compare .grip svg { width: 20px; height: 20px; }
.compare .ctag { position: absolute; top: 12px; z-index: 4; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 100px; background: rgba(10,8,9,.7); color: var(--ash); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.compare .ctag.l { left: 12px; }
.compare .ctag.r { right: 12px; color: var(--ember-lt); }
.compare input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 5; }
.compare input[type=range]:focus-visible ~ .handle { outline: 2px solid var(--ember-lt); outline-offset: 2px; }

/* =========================================================
   GALLERY — dark asymmetric mosaic, duotone→color, tilt
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(116px,12vw,168px); gap: 14px; } }
.gtile { position: relative; overflow: hidden; border-radius: 4px; background: var(--coal-3); min-height: 200px; border: 1px solid var(--line); perspective: 1000px; }
@media (min-width: 800px) {
  .gtile { min-height: 0; }
  .gtile.a { grid-column: span 5; grid-row: span 2; }
  .gtile.b { grid-column: span 7; grid-row: span 1; }
  .gtile.c { grid-column: span 4; grid-row: span 1; }
  .gtile.d { grid-column: span 3; grid-row: span 1; }
  .gtile.e { grid-column: span 4; grid-row: span 2; }
  .gtile.f { grid-column: span 8; grid-row: span 1; }
}
.gtile .ph { position: absolute; inset: 0; transition: transform .4s var(--ease); transform-style: preserve-3d; }
.gtile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.7) brightness(.7) contrast(1.08); transition: filter .6s ease, transform .8s var(--ease); }
.gtile:hover img { filter: grayscale(0) brightness(1) contrast(1.08) saturate(1.1); transform: scale(1.05); }
.gtile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(8,6,8,.92));
  display: flex; justify-content: space-between; align-items: flex-end; gap: 8px;
  font-family: var(--disp); font-weight: 540; font-size: 1.05rem; color: var(--cream);
  transform: translateZ(28px);
}
.gtile figcaption small { font-family: var(--sans); font-weight: 500; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-lt); text-align: right; }
@media (max-width: 799px) { .gtile figcaption { flex-direction: column; align-items: flex-start; gap: 2px; } .gtile figcaption small { text-align: left; } }

/* =========================================================
   SEANS — firing-step log + price card (distinct from ledger)
   ========================================================= */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.steps .step {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(16px,2.5vw,34px);
  padding: clamp(22px,3vw,36px) 0; border-bottom: 1px solid var(--line); align-items: start;
}
.steps .step:last-child { border-bottom: 0; }
.steps .num { font-family: var(--disp); font-weight: 560; font-size: clamp(1.8rem,3.6vw,2.8rem); line-height: .9; color: transparent; -webkit-text-stroke: 1px var(--copper); }
.steps .when { display: block; font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ember-lt); margin-bottom: 8px; }
.steps h3 { font-size: clamp(1.25rem,2.5vw,1.8rem); margin: 0 0 7px; }
.steps p { margin: 0; color: var(--smoke); max-width: 62ch; }

.offer {
  margin-top: clamp(34px,4vw,56px); display: grid; grid-template-columns: 1fr; border-radius: 6px;
  overflow: hidden; border: 1px solid var(--line-em);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(229,99,31,.16), transparent 55%),
    var(--coal-2);
}
@media (min-width: 800px) { .offer { grid-template-columns: 1.6fr 1fr; } }
.offer .body { padding: clamp(26px,3.5vw,46px); }
.offer .body h3 { font-size: clamp(1.5rem,3.2vw,2.3rem); margin: 6px 0 12px; }
.offer .price-side {
  padding: clamp(26px,3.5vw,46px); border-top: 1px solid var(--line-em);
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
@media (min-width: 800px) { .offer .price-side { border-top: 0; border-left: 1px solid var(--line-em); } }
.offer .amt { font-family: var(--disp); font-weight: 560; font-size: clamp(2.6rem,6vw,4rem); line-height: .9; color: var(--cream); }
.offer .amt span { display: inline-block; font-family: var(--sans); font-weight: 500; font-size: .9rem; color: var(--copper-lt); margin-left: 4px; }
.offer .price-side .note { font-size: .8rem; line-height: 1.6; color: var(--smoke); margin: 0; }

/* =========================================================
   EŞSİZ — molten tier cards
   ========================================================= */
.tiers { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  display: flex; flex-direction: column; padding: clamp(26px,3vw,38px);
  border-radius: 6px; border: 1px solid var(--line); background: var(--coal-2); min-width: 0;
  position: relative; overflow: hidden;
}
.tier::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, var(--bronze), var(--copper-lt)); opacity: .6; }
.tier.feat { border-color: var(--line-em); background: radial-gradient(130% 120% at 50% -10%, rgba(229,99,31,.18), transparent 60%), var(--coal-2); box-shadow: var(--glow); }
.tier.feat::before { background: linear-gradient(90deg, var(--ember), var(--ember-lt)); opacity: 1; }
.tier .tname { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--copper-lt); }
.tier.feat .tname::after { content: " · seçki"; color: var(--ember-lt); }
.tier h3 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 14px 0 4px; }
.tier .tsub { font-size: .86rem; color: var(--smoke); margin: 0 0 20px; }
.tier .price { font-family: var(--disp); font-weight: 560; font-size: clamp(2.1rem,3.6vw,2.7rem); line-height: 1; color: var(--cream); }
.tier .price span { display: block; font-family: var(--sans); font-weight: 400; font-size: .8rem; color: var(--smoke); margin-top: 8px; }
.tier ul { list-style: none; padding: 18px 0 0; margin: 18px 0 0; display: grid; gap: 12px; border-top: 1px solid var(--line); }
.tier li { display: grid; grid-template-columns: auto 1fr; gap: 11px; font-size: .9rem; color: var(--ash); align-items: start; }
.tier li svg { width: 16px; height: 16px; margin-top: 3px; color: var(--ember); flex: 0 0 16px; }
.tier li.no { color: var(--smoke-dim); }
.tier li.no svg { color: var(--smoke-dim); }
.tier .tfoot { margin-top: auto; padding-top: 22px; }
.tiers-note { font-size: .82rem; color: var(--smoke-dim); margin: clamp(28px,4vw,46px) 0 0; max-width: 76ch; }

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto { position: relative; padding: clamp(70px,12vw,180px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: clip; text-align: center; }
.manifesto .glow { position: absolute; left: 50%; top: 50%; width: min(760px,90vw); height: 80%; transform: translate(-50%,-50%); background: radial-gradient(closest-side, rgba(229,99,31,.22), transparent 70%); filter: blur(20px); pointer-events: none; }
.manifesto .big { position: relative; font-family: var(--disp); font-weight: 470; font-size: clamp(2.2rem, 8vw, 7rem); line-height: 1.02; letter-spacing: -0.02em; margin: 0; color: var(--cream); }
.manifesto .big em { color: var(--ember); font-style: italic; }
.manifesto .sub { position: relative; font-size: .96rem; color: var(--smoke); margin: 26px auto 0; max-width: 60ch; }

/* =========================================================
   TESTIMONIALS — staggered ember-edge cards
   ========================================================= */
.quotes { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 880px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.testi {
  display: flex; flex-direction: column; padding: clamp(24px,2.6vw,34px); border-radius: 6px;
  background: var(--coal-2); border: 1px solid var(--line); min-width: 0; position: relative;
}
.testi::before { content: ""; position: absolute; left: 0; top: clamp(24px,2.6vw,34px); bottom: clamp(24px,2.6vw,34px); width: 2px; background: linear-gradient(var(--ember), transparent); border-radius: 2px; }
.testi .qq { font-family: var(--disp); font-size: 2.4rem; line-height: .5; color: var(--ember); margin: 0 0 16px; padding-left: 14px; }
.testi blockquote { margin: 0 0 22px; padding-left: 14px; font-size: 1.04rem; line-height: 1.55; color: var(--cream); }
.testi .who { margin-top: auto; padding-left: 14px; }
.testi .who strong { display: block; font-family: var(--disp); font-weight: 540; font-size: 1.05rem; color: var(--cream); }
.testi .who span { font-size: .76rem; color: var(--copper); }

/* =========================================================
   ATÖLYE NOTLARI — dated log
   ========================================================= */
.notes { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.lognote {
  display: grid; grid-template-columns: 1fr; gap: 6px; padding: clamp(20px,2.6vw,30px) 0;
  border-bottom: 1px solid var(--line); transition: padding-left .25s var(--ease);
}
@media (min-width: 760px) { .lognote { grid-template-columns: clamp(150px,17vw,210px) 1fr; gap: clamp(20px,3vw,46px); align-items: baseline; } }
.lognote:hover { padding-left: 12px; }
.lognote time { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-lt); }
.lognote h3 { font-size: clamp(1.2rem,2.2vw,1.55rem); margin: 0 0 6px; }
.lognote p { margin: 0; color: var(--smoke); max-width: 70ch; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: clamp(20px,2.6vw,28px) 0;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center;
  font-family: var(--disp); font-weight: 540; font-size: clamp(1.1rem,2vw,1.45rem); color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ember); transition: transform .34s var(--ease), background .3s; }
.faq-item summary .ic svg { width: 16px; height: 16px; }
.faq-item[open] summary .ic { transform: rotate(135deg); background: rgba(229,99,31,.14); }
.faq-item > .answer { height: 0; overflow: hidden; color: var(--smoke); transition: height .34s var(--ease), padding-bottom .34s var(--ease); }
.faq-item[open] > .answer { height: auto; padding-bottom: 24px; }
.faq-item .answer p { max-width: 80ch; margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* =========================================================
   CTA — ember-forge band
   ========================================================= */
.cta { position: relative; overflow: clip; border-top: 1px solid var(--line);
  background: radial-gradient(120% 130% at 50% 120%, rgba(229,99,31,.36), transparent 60%), var(--coal-2);
  padding: clamp(56px,9vw,130px) 0; }
.cta-spark { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta .container { position: relative; z-index: 1; }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px,4vw,48px); align-items: end; }
@media (min-width: 820px) { .cta-grid { grid-template-columns: 1.5fr auto; } }
.cta h2 { font-size: clamp(2rem,5.6vw,4.4rem); margin: 0; }
.cta h2 em { color: var(--ember); font-style: italic; }
.cta p { color: var(--ash); margin: 16px 0 0; max-width: 56ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-card { background: var(--coal-2); border: 1px solid var(--line); border-radius: 6px; padding: clamp(24px,3.5vw,42px); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lbl { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-lt); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--cream);
  background: var(--coal); border: 1px solid var(--line-2); border-radius: 4px; padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--smoke-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(229,99,31,.22); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23CE9A55' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; color: var(--cream); }
.field select option { background: var(--coal-2); color: var(--cream); }
.field.kvkk, .kvkk { flex-direction: row; align-items: flex-start; gap: 12px; }
.kvkk label { font-family: var(--sans); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .92rem; color: var(--ash); line-height: 1.5; }
.kvkk a { color: var(--copper-lt); text-decoration: underline; }
.field input[type="checkbox"] { appearance: auto; -webkit-appearance: auto; width: 19px; height: 19px; min-width: 19px; min-height: 19px; padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--ember); }
.form-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.opt { color: var(--smoke-dim); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.page-hero {
  position: relative; padding: calc(var(--hh) + clamp(48px,9vw,100px)) 0 clamp(40px,6vw,72px);
  border-bottom: 1px solid var(--line); overflow: clip;
}
.page-hero::after { content: ""; position: absolute; right: -10%; top: -30%; width: 60%; height: 120%; background: radial-gradient(closest-side, rgba(229,99,31,.18), transparent 70%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .flag { margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(2.4rem,7vw,5rem); font-weight: 470; line-height: 1.02; }
.page-hero h1 em { color: var(--ember); font-style: italic; }
.page-hero p { color: var(--ash); font-size: 1.1rem; max-width: 66ch; margin: 16px 0 0; }

.channel-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .channel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .channel-grid { grid-template-columns: repeat(3, 1fr); } }
.channel {
  display: block; padding: clamp(22px,2.6vw,30px); color: var(--cream); background: var(--coal-2);
  border: 1px solid var(--line); border-radius: 6px; min-width: 0;
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
a.channel:hover { border-color: var(--ember); transform: translateY(-2px); box-shadow: var(--glow); }
.channel .cico { color: var(--ember); margin-bottom: 16px; }
.channel .cico svg { width: 26px; height: 26px; }
.channel .ctype { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-lt); }
.channel .val { font-family: var(--disp); font-weight: 540; font-size: 1.18rem; color: var(--cream); margin: 6px 0 4px; word-break: break-word; overflow-wrap: anywhere; }
.channel .sub { font-size: .82rem; color: var(--smoke); }

.hours { display: grid; grid-template-columns: 1fr; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.hours-row { display: flex; justify-content: space-between; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .9rem; min-width: 0; }
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { background: rgba(229,99,31,.14); }
.hours-row.today .d, .hours-row.today .h { color: var(--ember-lt); }
.hours-row .d { color: var(--ash); font-weight: 600; }
.hours-row .h { color: var(--smoke); font-variant-numeric: tabular-nums; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--coal-2); color: var(--ash); padding: clamp(54px,7vw,92px) 0 34px; border-top: 1px solid var(--line); }
.footer-wm { font-family: var(--disp); font-weight: 470; font-size: clamp(3.6rem,15vw,11rem); line-height: .8; margin: 0 0 clamp(34px,5vw,60px); color: var(--cream); }
.footer-wm em { color: var(--ember); font-style: italic; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; border-top: 1px solid var(--line); padding-top: clamp(34px,4vw,52px); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1.2fr; } }
.footer-brand p { color: var(--smoke); font-size: .95rem; max-width: 42ch; margin: 0; }
.footer-brand .estd { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-lt); margin-bottom: 14px; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--copper); margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--ash); font-size: .96rem; }
.footer-col a:hover { color: var(--ember-lt); }
.footer-contact { display: grid; gap: 9px; font-size: .94rem; }
.footer-contact a, .footer-contact span { color: var(--ash); word-break: break-word; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--ember-lt); }
.footer-bottom { margin-top: clamp(40px,5vw,62px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .78rem; color: var(--smoke-dim); }
.footer-bottom a { color: var(--smoke-dim); }
.footer-bottom a:hover { color: var(--ember-lt); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* =========================================================
   ABOUT
   ========================================================= */
.prose { max-width: 80ch; }
.prose > p:first-of-type { font-size: .82rem; color: var(--smoke-dim); letter-spacing: .04em; }
.prose h2 { font-size: clamp(1.5rem,3vw,2.2rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ash); }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.prose ul li::before { content: "▲"; color: var(--ember); font-size: .7em; line-height: 1.9; }
.prose a { color: var(--copper-lt); text-decoration: underline; word-break: break-word; overflow-wrap: anywhere; }
.prose a:hover { color: var(--ember-lt); }

.team { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--coal-2); min-width: 0; }
.member .photo { aspect-ratio: 4/3; background: var(--coal-3); overflow: hidden; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) contrast(1.06) brightness(.9); transition: filter .5s ease; }
.member:hover .photo img { filter: grayscale(0) contrast(1.06); }
.member .mbody { padding: clamp(20px,2.4vw,28px); }
.member h3 { font-size: 1.3rem; margin: 0 0 4px; }
.member .role { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-lt); margin: 0 0 14px; }
.member .mbody p { font-size: .92rem; color: var(--smoke); margin: 0; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 540px; margin: 0 auto;
  background: var(--coal-2); border: 1px solid var(--line-em); border-radius: 8px;
  padding: 22px; box-shadow: 0 24px 60px -16px rgba(0,0,0,.7), var(--glow);
  transform: translateY(160%); opacity: 0; transition: transform .34s var(--ease), opacity .26s ease; z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 430px; } }
.cookie-banner h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cookie-banner p { font-size: .88rem; color: var(--smoke); margin: 0 0 16px; }
.cookie-banner p a { color: var(--copper-lt); text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { padding: 12px 14px; font-size: .82rem; min-height: 46px; }
.cookie-actions .full { grid-column: 1 / -1; }

/* =========================================================
   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; }
.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: 13px 16px; border-bottom: 1px solid var(--line); font-size: .9rem; }
table th { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-ember); background: var(--ember); }
table td { color: var(--ash); font-variant-numeric: tabular-nums; }
table tr:last-child td { border-bottom: 0; }
table tbody tr:nth-child(even) td { background: rgba(255,255,255,.02); }

/* =========================================================
   THANK YOU / 404
   ========================================================= */
.thanks { min-height: 74vh; display: grid; place-items: center; text-align: center; padding: calc(var(--hh) + 60px) 0 90px; position: relative; overflow: clip; }
.thanks .icon { width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 26px; border-radius: 50%; background: radial-gradient(circle at 50% 120%, var(--ember-lt), var(--bronze)); color: #fff; box-shadow: var(--glow); }
.thanks .icon svg { width: 38px; height: 38px; }
.thanks h1 { font-size: clamp(2.2rem,6vw,4rem); font-weight: 470; }
.thanks h1 em { color: var(--ember); font-style: italic; }
.thanks p { color: var(--smoke); max-width: 56ch; margin: 0 auto 30px; }

.err { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: calc(var(--hh) + 40px) 0 70px; }
.err .code { font-family: var(--disp); font-weight: 470; font-size: clamp(6rem,22vw,15rem); line-height: .8; color: var(--ember); letter-spacing: -0.02em; text-shadow: 0 0 50px rgba(229,99,31,.45); }
.err h1 { font-size: clamp(1.6rem,4vw,2.6rem); font-weight: 470; margin-top: 10px; }
.err p { color: var(--smoke); max-width: 52ch; margin: 0 auto 28px; }

/* =========================================================
   REVEAL / MOTION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.is-in { opacity: 1; transform: none; }
.mask { clip-path: inset(0 0 100% 0); transition: clip-path .9s var(--ease); }
.mask.is-in { clip-path: inset(0 0 0 0); }

html.no-js .reveal, html.no-js .mask { opacity: 1 !important; transform: none !important; clip-path: none !important; }
html.no-js .kin .w { opacity: 1 !important; transform: none !important; filter: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .mask, .kin .w { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; transition: none !important; }
  .hero-spark, .cta-spark { display: none; }
  .frame img, .gtile img, .member .photo img { transition: none; }
  .hero-flagline .pip { animation: none; }
}

/* scroll progress — heating bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--bronze), var(--ember), var(--ember-lt)); z-index: 9998; transition: width 90ms linear; pointer-events: none; box-shadow: 0 0 10px rgba(229,99,31,.7); }

main section[id], .hero[id] { scroll-margin-top: calc(var(--hh) + 14px); }

.mt-l { margin-top: clamp(34px,5vw,56px); }
.center { text-align: center; }

@media (max-width: 480px) {
  body { font-size: 16px; }
  .cookie-actions { grid-template-columns: 1fr; }
}

/* guards (kept high-specificity, matching prior batch safeguards) */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta { padding: 10px 20px; }
.drawer a.nav-cta, .drawer .nav-cta, .drawer a.drawer-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta { color: var(--on-ember) !important; }

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: var(--on-ember) !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)){min-width:0}
