:root {
  --orange: #f36b21;
  --orange-deep: #da5010;
  --ink: #151310;
  --cream: #fff8ef;
  --sand: #ecdac3;
  --sage: #c9d2b7;
  --paper: #fbf4e9;
  --pointer-x: 0;
  --pointer-y: 0;
  --page-progress: 0;
  --scroll-y: 0;
	--font-geist-sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
	--font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange); color: white; }

.progress-bar {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: calc(var(--page-progress) * 100%);
  height: 3px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(243, 107, 33, .6);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(21, 19, 16, .12);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  height: 78px;
  background: rgba(255, 248, 239, .88);
  border-color: rgba(21, 19, 16, .08);
  box-shadow: 0 14px 45px rgba(45, 31, 19, .08);
  backdrop-filter: blur(18px) saturate(1.25);
}
.brand { display: inline-flex; width: max-content; }
.brand-lockup { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { width: clamp(58px, 5.5vw, 76px); height: auto; flex: none; }
.brand-wordmark { display: grid; gap: 2px; line-height: 1; }
.brand-wordmark strong { font-size: clamp(14px, 1.35vw, 19px); letter-spacing: -.025em; white-space: nowrap; }
.brand-wordmark small { color: var(--orange-deep); font-size: 8px; font-weight: 800; letter-spacing: .34em; }
.site-header nav { display: flex; gap: 34px; font-size: 14px; font-weight: 650; }
.site-header nav a { position: relative; }
.site-header nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 2px; background: var(--orange); transition: right .3s ease;
}
.site-header nav a:hover::after { right: 0; }
.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(21, 19, 16, .25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.header-call svg, .button svg { width: 30px; height: 30px; padding: 7px; border-radius: 50%; }
.header-call svg { background: var(--ink); stroke: white; }
.header-call path, .button path { fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px clamp(24px, 7.2vw, 110px) 80px;
  background: var(--cream);
}
.hero-photo { position: absolute; z-index: -4; inset: 0; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.035) translate(calc(var(--pointer-x) * -10px), calc(var(--pointer-y) * -10px));
  transition: transform .18s ease-out;
}
.hero-wash {
  position: absolute; z-index: -3; inset: 0;
  background: linear-gradient(90deg, rgba(255,248,239,.97) 0%, rgba(255,248,239,.91) 34%, rgba(255,248,239,.2) 61%, rgba(255,248,239,.04) 100%);
}
.hero::after {
  content: ""; position: absolute; z-index: -2; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.1), transparent 45%, rgba(21,19,16,.12)); pointer-events: none;
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(243,107,33,.23); border-radius: 50%; }
.orbit-one { width: 44vw; aspect-ratio: 1; right: -8vw; top: 15%; }
.orbit-two { width: 31vw; aspect-ratio: 1; right: -.5vw; top: 27%; border-color: rgba(255,255,255,.65); }

.hero-content { position: relative; z-index: 4; width: min(720px, 58vw); }
.eyebrow, .section-kicker {
  display: flex; align-items: center; gap: 12px; margin: 0 0 25px;
  text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 750;
}
.eyebrow span { width: 36px; height: 2px; background: var(--orange); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(64px, 7.3vw, 118px);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 760;
}
.hero h1 em { display: block; margin-top: .18em; color: var(--orange); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.055em; }
.hero-copy { max-width: 560px; margin: 34px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; color: rgba(21,19,16,.72); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; gap: 18px; min-height: 58px; padding: 8px 10px 8px 24px; border-radius: 999px; font-size: 14px; font-weight: 760; }
.button-primary { color: white; background: var(--orange); box-shadow: 0 15px 42px rgba(218,80,16,.25); transition: transform .3s ease, background .3s ease; }
.button-primary svg { background: white; stroke: var(--ink); }
.button-primary:hover { transform: translateY(-3px); background: var(--orange-deep); }
.text-link { font-weight: 750; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.hero-trust { display: flex; gap: 0; margin-top: 52px; }
.hero-trust div { display: grid; gap: 4px; padding: 0 24px; border-left: 1px solid rgba(21,19,16,.18); }
.hero-trust div:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong { font-size: 14px; }
.hero-trust span { color: rgba(21,19,16,.58); font-size: 11px; }

.hero-chair-wrap {
  position: absolute; z-index: 3; right: clamp(2vw, 5.5vw, 90px); bottom: -5%;
  width: clamp(410px, 43vw, 700px); aspect-ratio: 1; pointer-events: none;
  transform: translate(calc(var(--pointer-x) * 18px), calc(var(--pointer-y) * 13px)) rotate(calc(var(--pointer-x) * 1.8deg));
  transition: transform .2s ease-out;
}
.hero-chair { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 35px 30px rgba(21,19,16,.28)); animation: float-chair 5.5s ease-in-out infinite; }
.chair-glow { position: absolute; z-index: 1; width: 72%; aspect-ratio: 1; left: 16%; top: 18%; border-radius: 50%; background: rgba(243,107,33,.3); filter: blur(48px); }
.chair-note { position: absolute; z-index: 3; right: 5%; bottom: 24%; padding: 9px 14px; border-radius: 999px; background: rgba(255,248,239,.8); backdrop-filter: blur(14px); font: 650 10px/1 var(--font-geist-mono), monospace; letter-spacing: .1em; text-transform: uppercase; }
@keyframes float-chair { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }

.scroll-cue { position: absolute; z-index: 6; left: clamp(24px, 5vw, 76px); bottom: 26px; display: flex; align-items: center; gap: 12px; font: 700 10px/1 var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .15em; }
.scroll-cue i { position: relative; width: 44px; height: 1px; background: var(--ink); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 50%,100% { transform: translateX(100%); } }

.marquee { overflow: hidden; padding: 22px 0; background: var(--orange); color: white; transform: rotate(-1deg) scale(1.02); }
.marquee-track { display: flex; align-items: center; width: max-content; gap: 30px; animation: marquee 27s linear infinite; }
.marquee span { font-family: Georgia, serif; font-style: italic; font-size: clamp(20px, 2.1vw, 32px); }
.marquee b { font-size: 13px; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

.first-story { min-height: 74vh; padding: 150px clamp(24px, 8vw, 124px); background: var(--cream); }
.section-kicker { color: var(--orange-deep); }
.first-story h2 { margin: 0; max-width: 1050px; font-size: clamp(48px, 7vw, 104px); line-height: .98; letter-spacing: -.065em; }

.quality-seal {
  position: absolute;
  z-index: 5;
  right: clamp(26px, 4.5vw, 72px);
  top: 132px;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.quality-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: seal-spin 18s linear infinite; }
.quality-seal text { font: 700 8px/1 var(--font-geist-mono), monospace; letter-spacing: 2px; fill: var(--ink); }
.quality-seal > span { display: grid; place-items: center; width: 50px; aspect-ratio: 1; border-radius: 50%; background: var(--orange); color: white; font: 800 22px/1 Georgia, serif; }
@keyframes seal-spin { to { transform: rotate(360deg); } }

.hero-enter { opacity: 0; transform: translateY(28px); animation: hero-in .85s cubic-bezier(.16,1,.3,1) forwards; }
.delay-one { animation-delay: .12s; }
.delay-two { animation-delay: .22s; }
.delay-three { animation-delay: .34s; }
.delay-four { animation-delay: .46s; }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1), clip-path 1.15s cubic-bezier(.16,1,.3,1);
}
.js-ready [data-reveal] { opacity: 0; transform: translateY(52px); }
.js-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.reveal-image { clip-path: inset(0 0 0 0 round 2px); }
.js-ready .reveal-image { clip-path: inset(0 0 100% 0 round 2px); }
.js-ready .reveal-image.is-visible { clip-path: inset(0 0 0 0 round 2px); }

.story-section {
  position: relative;
  padding: clamp(120px, 13vw, 210px) clamp(24px, 8vw, 128px);
  background: var(--cream);
  overflow: hidden;
}
.story-index {
  position: absolute;
  top: 70px;
  right: 5vw;
  color: rgba(243, 107, 33, .1);
  font-size: clamp(180px, 26vw, 430px);
  font-weight: 800;
  line-height: .7;
  letter-spacing: -.1em;
  pointer-events: none;
}
.story-heading { position: relative; z-index: 2; max-width: 1150px; }
.story-heading h2,
.section-head h2,
.values-title h2,
.contact-top h2 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 112px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 720;
}
.story-heading h2 em,
.section-head h2 em,
.values-title h2 em,
.contact-top h2 em,
.craft-content h2 em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
}
.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin-top: clamp(70px, 10vw, 155px);
}
.story-photo { position: relative; min-height: 580px; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.story-photo:hover img { transform: scale(1.035); }
.photo-label { position: absolute; left: 22px; bottom: 22px; padding: 12px 16px; background: rgba(255,248,239,.86); backdrop-filter: blur(14px); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 750; }
.story-copy { padding-bottom: 18px; }
.story-copy .lead { margin: 0 0 30px; font-size: clamp(23px, 2.25vw, 35px); line-height: 1.35; letter-spacing: -.035em; }
.story-copy > p:not(.lead) { margin: 0; color: rgba(21,19,16,.62); font-size: 16px; line-height: 1.8; }
.story-signature { display: grid; gap: 7px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(21,19,16,.15); }
.story-signature strong { font-size: 14px; letter-spacing: .02em; }
.story-signature span { color: var(--orange-deep); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }

.showcase {
  --showcase-progress: 0;
  --chair-rotate: -18deg;
  --chair-y: 0px;
  position: relative;
  height: 285vh;
  background: var(--ink);
}
.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(243,107,33,.25), transparent 27%),
    linear-gradient(135deg, #171512, #0f0e0c);
  color: white;
}
.showcase-noise {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  pointer-events: none;
}
.showcase-label { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); margin: 0; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; color: rgba(255,255,255,.52); }
.showcase-ghost {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(calc(.88 + var(--showcase-progress) * .2));
  font-size: clamp(130px, 22vw, 360px);
  font-weight: 820;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  white-space: nowrap;
}
.showcase-chair {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: clamp(440px, 47vw, 760px);
  aspect-ratio: 1;
  transform: translate(-50%, calc(-48% + var(--chair-y))) rotate(var(--chair-rotate)) scale(calc(.88 + var(--showcase-progress) * .12));
  will-change: transform;
}
.showcase-chair img { position: relative; z-index: 3; width: 100%; filter: drop-shadow(0 50px 38px rgba(0,0,0,.55)); }
.showcase-ring { position: absolute; z-index: 1; left: 50%; top: 48%; border: 1px solid rgba(243,107,33,.4); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-a { width: 88%; aspect-ratio: 1; }
.ring-b { width: 66%; aspect-ratio: 1; border-color: rgba(255,255,255,.18); }
.showcase-step {
  position: absolute;
  z-index: 5;
  max-width: 300px;
  opacity: .15;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.showcase-step.is-active { opacity: 1; transform: translateY(0); }
.showcase-step > span { display: inline-block; margin-bottom: 15px; color: var(--orange); font: 700 11px/1 var(--font-geist-mono), monospace; }
.showcase-step h3 { margin: 0; font: italic 400 clamp(52px, 6vw, 92px)/.9 Georgia, serif; }
.showcase-step p { margin: 20px 0 0; color: rgba(255,255,255,.6); line-height: 1.65; font-size: 14px; }
.step-left { left: 7vw; top: 32%; }
.step-right { right: 7vw; top: 27%; text-align: right; }
.step-bottom { right: 9vw; bottom: 16%; text-align: right; }
.showcase-meter { position: absolute; z-index: 6; left: 50%; bottom: 38px; width: min(360px, 38vw); height: 2px; transform: translateX(-50%); background: rgba(255,255,255,.14); }
.showcase-meter i { display: block; width: calc(var(--showcase-progress) * 100%); height: 100%; background: var(--orange); box-shadow: 0 0 14px var(--orange); }

.collections { padding: clamp(120px, 13vw, 210px) clamp(20px, 6vw, 94px); background: var(--paper); }
.section-head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; margin-bottom: 85px; }
.section-head > p { margin: 0 0 8px; max-width: 420px; color: rgba(21,19,16,.62); font-size: 16px; line-height: 1.75; }
.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.collection-card { position: relative; min-height: clamp(470px, 52vw, 720px); overflow: hidden; background: #dfd4c7; color: white; }
.collection-card:nth-child(2), .collection-card:nth-child(3) { min-height: clamp(390px, 43vw, 620px); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1s cubic-bezier(.16,1,.3,1), filter .8s ease; }
.collection-card:hover > img { transform: scale(1.055); }
.card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(15,13,11,.72) 100%); }
.card-count { position: absolute; top: 28px; left: 30px; z-index: 3; font: 700 11px/1 var(--font-geist-mono), monospace; letter-spacing: .1em; }
.card-title { position: absolute; z-index: 3; left: 30px; bottom: 30px; }
.card-title h3 { margin: 0 0 8px; font-size: clamp(34px, 4vw, 64px); letter-spacing: -.05em; line-height: 1; }
.card-title span { color: rgba(255,255,255,.72); font-size: 13px; }
.collection-card > i { position: absolute; z-index: 3; right: 28px; bottom: 28px; width: 52px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transition: transform .4s ease, background .4s ease; }
.collection-card:hover > i { transform: rotate(-38deg); background: var(--orange); border-color: var(--orange); }
.collection-card > i svg { width: 23px; stroke: white; }
.collection-card > i path { fill: none; stroke-width: 1.7; }
.card-chair { background: var(--sage); color: var(--ink); }
.card-chair > img { object-fit: contain; inset: 7% 5% 12%; width: 90%; height: 81%; filter: drop-shadow(0 28px 22px rgba(31,28,20,.23)); }
.card-chair .card-title span { color: rgba(21,19,16,.58); }
.card-chair > i { border-color: rgba(21,19,16,.4); }
.card-chair > i svg { stroke: var(--ink); }
.card-chair:hover > i svg { stroke: white; }
.chair-card-word { position: absolute; top: 12%; left: -2%; color: transparent; -webkit-text-stroke: 1px rgba(21,19,16,.17); font-size: clamp(90px, 14vw, 220px); font-weight: 820; letter-spacing: -.08em; transform: rotate(-8deg); }
.card-type { background: var(--orange); }
.type-lines { position: absolute; inset: 12% 0 auto; display: grid; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.28); font-size: clamp(82px, 13vw, 210px); font-weight: 830; line-height: .75; letter-spacing: -.09em; transform: rotate(-7deg) translateX(-4%); }

.craft-section { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 130px clamp(24px, 8vw, 130px); color: white; background: var(--ink); }
.craft-image, .craft-overlay { position: absolute; inset: 0; }
.craft-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }
.craft-overlay { background: linear-gradient(90deg, rgba(14,12,10,.94) 0%, rgba(14,12,10,.73) 48%, rgba(14,12,10,.12) 100%); }
.craft-content { position: relative; z-index: 2; max-width: 760px; }
.section-kicker.light { color: #ffb184; }
.craft-content h2 { margin: 0; font-size: clamp(66px, 9vw, 140px); line-height: .83; letter-spacing: -.08em; }
.craft-content p:not(.section-kicker) { max-width: 540px; margin: 40px 0 0; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.75; }
.button-light { margin-top: 35px; color: var(--ink); background: white; }
.button-light svg { background: var(--orange); stroke: white; }
.craft-side-note { position: absolute; right: 31px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: center; color: rgba(255,255,255,.48); font: 700 10px/1 var(--font-geist-mono), monospace; letter-spacing: .22em; }

.values-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 11vw, 180px); padding: clamp(120px, 14vw, 220px) clamp(24px, 8vw, 130px); background: var(--cream); }
.values-title { position: sticky; top: 150px; align-self: start; }
.values-title h2 { font-size: clamp(54px, 6vw, 92px); }
.value-list article { display: grid; grid-template-columns: 55px 1fr; column-gap: 24px; padding: 46px 0; border-top: 1px solid rgba(21,19,16,.17); }
.value-list article:last-child { border-bottom: 1px solid rgba(21,19,16,.17); }
.value-list article > span { grid-row: 1 / 3; color: var(--orange); font: 700 11px/1 var(--font-geist-mono), monospace; padding-top: 10px; }
.value-list h3 { margin: 0; font-size: clamp(25px, 2.5vw, 40px); letter-spacing: -.04em; }
.value-list p { max-width: 580px; margin: 15px 0 0; color: rgba(21,19,16,.6); font-size: 15px; line-height: 1.75; }

.contact-section { position: relative; overflow: hidden; padding: clamp(120px, 13vw, 200px) clamp(24px, 7vw, 110px) 70px; background: var(--orange); color: white; }
.contact-word { position: absolute; left: -3vw; bottom: 10%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.17); font-size: clamp(150px, 24vw, 390px); font-weight: 850; letter-spacing: -.09em; line-height: .7; }
.contact-orb { position: absolute; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.orb-a { width: 46vw; aspect-ratio: 1; right: -12vw; top: -18vw; }
.orb-b { width: 28vw; aspect-ratio: 1; right: -3vw; top: -7vw; }
.contact-top { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; }
.contact-top h2 { font-size: clamp(68px, 9.5vw, 150px); }
.contact-top h2 em { color: var(--ink); }
.contact-circle { width: clamp(150px, 15vw, 220px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; align-content: center; gap: 12px; background: var(--ink); color: white; box-shadow: 0 24px 55px rgba(74,24,4,.26); transform: translate(var(--magnet-x, 0), var(--magnet-y, 0)); transition: transform .25s ease; }
.contact-circle > svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.contact-circle span { font-size: 13px; font-weight: 760; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.35fr 1fr; gap: 1px; margin-top: 110px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.28); }
.contact-item { min-height: 165px; display: grid; grid-template-columns: 36px 1fr 28px; align-items: center; gap: 18px; padding: 28px; background: rgba(218,80,16,.86); transition: background .35s ease; }
.contact-item:hover { background: var(--ink); }
.contact-item > svg:first-child { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.contact-item .fill-dot { fill: currentColor; stroke: none; }
.contact-item > svg:last-child { width: 24px; stroke: white; }
.contact-item > svg:last-child path { fill: none; stroke-width: 1.7; }
.contact-item div { display: grid; gap: 10px; }
.contact-item div span { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 760; text-transform: uppercase; letter-spacing: .16em; }
.contact-item strong { font-size: clamp(14px, 1.2vw, 18px); line-height: 1.45; }

footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 45px; padding: 42px clamp(24px, 7vw, 110px) 28px; background: var(--ink); color: white; }
.footer-brand { display: inline-flex; width: max-content; }
.brand-lockup-footer { gap: 15px; }
.brand-lockup-footer .brand-mark { width: 82px; }
.brand-lockup-footer .brand-wordmark strong { color: white; font-size: 20px; }
.brand-lockup-footer .brand-wordmark small { color: #ff9a61; }
footer > p { margin: 0; color: rgba(255,255,255,.57); font-size: 13px; }
footer > a:not(.footer-brand) { justify-self: end; font-size: 12px; font-weight: 750; }
footer > a:not(.footer-brand) span { display: inline-grid; place-items: center; margin-left: 8px; width: 30px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .08em; }

.floating-call { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: none; align-items: center; gap: 9px; padding: 11px 16px 11px 11px; border-radius: 999px; background: var(--ink); color: white; box-shadow: 0 14px 35px rgba(21,19,16,.25); font-size: 12px; font-weight: 760; }
.floating-call svg { width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--orange); fill: none; stroke: white; stroke-width: 1.7; }

[data-magnetic] { transform: translate(var(--magnet-x, 0), var(--magnet-y, 0)); }

@media (max-width: 1100px) {
  .story-grid { grid-template-columns: 1fr .8fr; gap: 60px; }
  .story-photo { min-height: 500px; }
  .showcase-chair { width: 58vw; }
  .showcase-step { max-width: 230px; }
  .step-left { left: 4vw; }
  .step-right { right: 4vw; }
  .step-bottom { right: 5vw; }
  .contact-grid { grid-template-columns: 1fr 1.3fr; }
  .contact-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 86px; padding-inline: 24px; }
  .site-header nav {
    position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    background: var(--cream); opacity: 0; visibility: hidden; transform: translateY(-18px); transition: opacity .35s ease, transform .35s ease, visibility .35s;
  }
  .site-header nav a { font-size: clamp(32px, 6vw, 54px); letter-spacing: -.04em; }
  .site-header.menu-open nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu-toggle { position: relative; z-index: 3; display: grid; align-content: center; gap: 6px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--ink); }
  .menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 0 auto; background: white; transition: transform .3s ease; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .brand-mark { width: 64px; }
  .header-call { display: none; }
  .hero { min-height: 920px; align-items: flex-start; padding-top: 145px; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(62px, 12vw, 104px); }
  .hero-copy { max-width: 530px; }
  .hero-chair-wrap { width: min(74vw, 590px); right: -4%; bottom: -7%; }
  .hero-photo img { object-position: 62% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(255,248,239,.98) 0%, rgba(255,248,239,.9) 45%, rgba(255,248,239,.18) 78%); }
  .quality-seal { width: 86px; top: auto; right: 25px; bottom: 34%; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { min-height: 62vw; }
  .story-copy { max-width: 680px; margin-left: auto; }
  .showcase { height: 250vh; }
  .showcase-chair { width: min(78vw, 660px); }
  .showcase-step { max-width: 250px; }
  .step-left { left: 5vw; top: 23%; }
  .step-right { right: 5vw; top: 22%; }
  .step-bottom { right: 6vw; bottom: 13%; }
  .section-head { grid-template-columns: 1fr; gap: 35px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card, .collection-card:nth-child(2), .collection-card:nth-child(3) { min-height: min(720px, 105vw); }
  .values-section { grid-template-columns: 1fr; }
  .values-title { position: relative; top: auto; }
  .contact-top { grid-template-columns: 1fr; }
  .contact-circle { justify-self: end; margin-top: -40px; }
  footer { grid-template-columns: 1fr auto; }
  footer > p { grid-column: 1 / -1; grid-row: 2; }
  .floating-call { display: flex; }
}

@media (max-width: 620px) {
  .site-header { height: 76px; }
  .brand-mark { width: 54px; }
  .brand-lockup { gap: 9px; }
  .brand-wordmark strong { font-size: 13px; }
  .brand-wordmark small { font-size: 7px; }
  .hero { min-height: 880px; padding: 118px 20px 68px; }
  .eyebrow { font-size: 9px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(54px, 17vw, 76px); line-height: .87; }
  .hero-copy { margin-top: 25px; font-size: 16px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 25px; }
  .hero-trust { display: none; }
  .hero-chair-wrap { width: 105vw; right: -23%; bottom: -8%; }
  .chair-note { right: 20%; bottom: 28%; }
  .quality-seal { width: 74px; right: 17px; bottom: 29%; opacity: .85; }
  .scroll-cue { display: none; }
  .first-story { padding: 110px 20px; }
  .story-section { padding: 100px 20px; }
  .story-index { top: 46px; right: 8px; }
  .story-heading h2, .section-head h2, .values-title h2, .contact-top h2 { font-size: clamp(47px, 14vw, 68px); }
  .story-grid { margin-top: 65px; gap: 45px; }
  .story-photo { min-height: 92vw; }
  .story-copy .lead { font-size: 23px; }
  .showcase { height: 240vh; }
  .showcase-sticky { min-height: 620px; }
  .showcase-label { top: 26px; }
  .showcase-ghost { font-size: 36vw; }
  .showcase-chair { width: 112vw; top: 47%; }
  .showcase-step { left: 20px; right: 20px; top: auto; bottom: 12%; max-width: none; text-align: left; pointer-events: none; }
  .showcase-step:not(.is-active) { opacity: 0; }
  .showcase-step h3 { font-size: 50px; }
  .showcase-step p { max-width: 290px; margin-top: 10px; }
  .showcase-meter { width: calc(100% - 40px); bottom: 24px; }
  .collections { padding: 100px 14px; }
  .section-head { padding-inline: 6px; margin-bottom: 55px; }
  .collection-card, .collection-card:nth-child(2), .collection-card:nth-child(3) { min-height: 123vw; }
  .card-title { left: 22px; bottom: 24px; }
  .card-count { top: 22px; left: 22px; }
  .collection-card > i { right: 20px; bottom: 22px; width: 44px; }
  .craft-section { min-height: 880px; padding: 100px 20px; align-items: flex-end; }
  .craft-image img { object-position: 58% center; }
  .craft-overlay { background: linear-gradient(180deg, rgba(14,12,10,.14), rgba(14,12,10,.92) 68%); }
  .craft-content h2 { font-size: 20vw; }
  .craft-content p:not(.section-kicker) { font-size: 15px; }
  .craft-side-note { display: none; }
  .values-section { padding: 100px 20px; gap: 60px; }
  .value-list article { grid-template-columns: 38px 1fr; column-gap: 13px; padding: 35px 0; }
  .contact-section { padding: 100px 20px 30px; }
  .contact-top h2 { font-size: 17vw; }
  .contact-circle { width: 142px; margin-top: -18px; }
  .contact-grid { grid-template-columns: 1fr; margin-top: 70px; }
  .contact-item, .contact-item:last-child { grid-column: auto; min-height: 135px; padding: 20px; grid-template-columns: 30px 1fr 22px; gap: 13px; }
  footer { grid-template-columns: 1fr; padding: 36px 20px 90px; }
  .brand-lockup-footer .brand-mark { width: 72px; }
  .brand-lockup-footer .brand-wordmark strong { font-size: 18px; }
  footer > p { grid-column: auto; grid-row: auto; }
  footer > a:not(.footer-brand) { justify-self: start; }
  footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], .hero-enter { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .showcase-chair { transform: translate(-50%, -48%) !important; }
}

/* WordPress uyarlaması ve yeni görsel sistem */
body.menu-is-open { overflow: hidden; }
body.admin-bar .site-header { top: 32px; }

.hero-feature-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 80px);
  bottom: clamp(54px, 7vh, 88px);
  width: clamp(340px, 35vw, 570px);
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 8px solid rgba(255, 248, 239, .72);
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 38px 80px rgba(34, 24, 16, .25);
  transform:
    translate(
      calc(var(--pointer-x) * 22px),
      calc(var(--pointer-y) * 16px + var(--hero-scroll) * 24px)
    )
    rotate(calc(-3deg + var(--pointer-x) * 2deg));
  transition: transform .2s ease-out;
  pointer-events: none;
}
.hero-feature-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(18, 15, 12, .48)); }
.hero-feature-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  color: white;
  font: 700 10px/1 var(--font-geist-mono), monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero-feature-glow {
  position: absolute;
  z-index: -1;
  width: 80%;
  aspect-ratio: 1;
  right: -20%;
  bottom: -40%;
  border-radius: 50%;
  background: rgba(243, 107, 33, .4);
  filter: blur(42px);
}

.showcase-frame {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: clamp(430px, 47vw, 760px);
  aspect-ratio: 1.48;
  transform:
    translate(-50%, calc(-50% + var(--frame-y, 0px)))
    rotate(var(--frame-rotate, -7deg))
    scale(calc(.9 + var(--showcase-progress) * .08));
  will-change: transform;
}
.showcase-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -5% -8% 5%;
  border: 1px solid rgba(243, 107, 33, .46);
  transform: rotate(-5deg);
}
.showcase-frame .showcase-ring { z-index: -2; top: 50%; }
.showcase-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 3px;
  background: #211d19;
  box-shadow: 0 48px 70px rgba(0, 0, 0, .55);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: scale(.94) rotate(-2deg);
  transition: opacity .48s ease, clip-path .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.showcase-visual.is-active { opacity: 1; clip-path: inset(0); transform: scale(1) rotate(0); }
.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.07 - var(--showcase-progress) * .035));
  filter: saturate(.9) contrast(1.03);
}

.collection-grid { align-items: start; }
.collection-card,
.collection-card:nth-child(2),
.collection-card:nth-child(3) {
  min-height: clamp(430px, 43vw, 650px);
}
.collection-card:nth-child(1),
.collection-card:nth-child(4) { min-height: clamp(500px, 50vw, 720px); }
.collection-card img {
  top: -5%;
  height: 110%;
  transform: scale(1.055) translateY(var(--card-shift, 0px));
  will-change: transform;
}
.collection-card:hover > img { transform: scale(1.1) translateY(var(--card-shift, 0px)); }

.craft-image { overflow: hidden; }
.craft-image img {
  height: calc(100% + 70px);
  margin-top: -35px;
  transform: scale(1.05) translateY(var(--craft-shift, 0px));
  will-change: transform;
}

.region-section {
  --region-shift: 0px;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: start;
  padding: clamp(110px, 12vw, 190px) clamp(24px, 7vw, 110px);
  background: #f1e3d2;
  overflow: clip;
}
.region-photo {
  position: sticky;
  top: 120px;
  min-height: min(720px, calc(100svh - 160px));
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(52, 35, 22, .16);
}
.region-photo img {
  position: absolute;
  inset: -48px 0 auto;
  width: 100%;
  height: calc(100% + 96px);
  object-fit: cover;
  transform: translateY(var(--region-shift));
  will-change: transform;
}
.region-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15, 13, 11, .58)); }
.region-distance {
  position: absolute;
  left: 26px;
  bottom: 26px;
  color: white;
  font: 700 11px/1.5 var(--font-geist-mono), monospace;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.region-content { padding-top: clamp(8px, 2vw, 34px); }
.region-content h2 {
  margin: 0;
  font-size: clamp(55px, 6.5vw, 104px);
  line-height: .9;
  letter-spacing: -.07em;
}
.region-content h2 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.region-copy { display: grid; gap: 22px; margin-top: 48px; }
.region-copy p { margin: 0; color: rgba(21, 19, 16, .68); font-size: 16px; line-height: 1.82; }
.region-copy p:first-child { color: var(--ink); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.7; }
.region-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 42px 0 0; padding: 0; list-style: none; }
.region-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(21, 19, 16, .17);
  border-radius: 999px;
  background: rgba(255, 248, 239, .6);
  font-size: 11px;
  font-weight: 720;
}
.region-tags li:nth-child(1),
.region-tags li:nth-child(2),
.region-tags li:nth-child(11),
.region-tags li:nth-child(13) { border-color: var(--orange); color: var(--orange-deep); }
.region-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 42px; }
.region-directions { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 760; }

.content-shell {
  min-height: 70svh;
  padding: 150px max(24px, calc((100vw - 920px) / 2)) 100px;
  background: var(--cream);
}
.content-shell h1 { margin: 0 0 36px; font-size: clamp(48px, 7vw, 88px); letter-spacing: -.06em; }
.content-shell p { font-size: 17px; line-height: 1.8; }

@media (max-width: 1180px) {
  .site-header nav { gap: 22px; font-size: 13px; }
  .hero-feature-card { width: clamp(320px, 36vw, 470px); right: 28px; }
  .showcase-frame { width: 53vw; }
  .region-section { grid-template-columns: minmax(320px, .75fr) 1.25fr; gap: 55px; }
}

@media (max-width: 980px) {
  body.admin-bar .site-header { top: 32px; }
  .hero-feature-card { width: min(70vw, 570px); right: -3%; bottom: -1%; }
  .showcase-frame { width: min(72vw, 680px); }
  .collection-card,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2),
  .collection-card:nth-child(3),
  .collection-card:nth-child(4) { min-height: min(690px, 92vw); }
  .region-section { grid-template-columns: 1fr; }
  .region-photo { position: relative; top: auto; min-height: min(720px, 92vw); }
  .region-content { max-width: 800px; margin-left: auto; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 620px) {
  .hero { min-height: 930px; }
  .hero-feature-card { width: 104vw; right: -36%; bottom: -1%; border-width: 5px; }
  .hero-feature-card span { left: 16px; bottom: 14px; }
  .showcase-frame { width: 108vw; top: 44%; }
  .showcase-frame::before { inset: 6% 2% -6% -2%; }
  .collection-card,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2),
  .collection-card:nth-child(3),
  .collection-card:nth-child(4) { min-height: 112vw; }
  .region-section { padding: 90px 20px 105px; gap: 54px; }
  .region-photo { min-height: 118vw; }
  .region-content h2 { font-size: 14.5vw; }
  .region-copy { margin-top: 34px; }
  .region-copy p { font-size: 15px; line-height: 1.75; }
  .region-copy p:first-child { font-size: 18px; }
  .region-tags { margin-top: 32px; }
  .region-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .region-actions .button { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-feature-card { transform: none !important; }
  .showcase-frame { transform: translate(-50%, -50%) !important; }
  .showcase-visual { opacity: 0; clip-path: none; transform: none; }
  .showcase-visual.is-active { opacity: 1; }
  .collection-card img,
  .collection-card:hover > img,
  .region-photo img,
  .craft-image img { transform: none !important; }
}
