/* Poppins is linked from <head> (preconnect + stylesheet), not @import'ed here,
   so it fetches in parallel with this file instead of blocking behind it (A6). */

:root {
  --forest-950: #071b16;
  --forest-900: #0b2b22;
  --forest-800: #123c30;
  --forest-700: #1c5141;
  --ivory: #f2eee4;
  --paper: #e8e1d2;
  --ink: #14201b;
  --brass: #b7955b;
  --brass-light: #e0c58f;
  --line: rgba(20, 32, 27, 0.16);
  --editorial: Baskerville, "Baskerville Old Face", "Libre Baskerville", Georgia, serif;
  --font-poppins: "Poppins", sans-serif;
}

/* Original design used Next.js <Image fill>, which auto-applies these rules.
   Plain <img> tags need them explicitly to fill their positioned containers. */
.hero-image,
.master-image-wrap img,
.story-photo img,
.gallery-image,
.gallery-thumb img,
.film-stills img,
.value-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--forest-950); overflow-x: clip; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-poppins), "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--brass); color: var(--forest-950); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { object-fit: cover; }
.skip-link { position: fixed; z-index: 200; left: 18px; top: 18px; padding: 12px 16px; background: var(--ivory); color: var(--forest-950); font-size: 11px; font-weight: 600; transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--brass-light); outline-offset: 4px; }

.float-actions {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.call-float, .whatsapp-float, .scroll-top-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(7, 27, 22, .36), 0 2px 8px rgba(0, 0, 0, .16);
  transition: transform .25s cubic-bezier(.33, .66, .66, 1), box-shadow .25s ease, opacity .25s ease, visibility .25s ease;
}
.call-float { background: var(--forest-950); color: white; }
.call-float svg { width: 21px; height: 21px; }
.whatsapp-float { background: #25d366; color: white; }
.whatsapp-float svg { width: 24px; height: 24px; }
.call-float:hover, .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(7, 27, 22, .42), 0 4px 12px rgba(0, 0, 0, .2); }
.call-float:active, .whatsapp-float:active { transform: scale(.95); }

.scroll-top-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; border: 0; background: var(--forest-950); color: white; cursor: pointer; }
.scroll-top-float svg { width: 22px; height: 22px; }
.scroll-top-float:hover { transform: scale(1.08); background: var(--brass); color: var(--forest-950); box-shadow: 0 14px 32px rgba(7, 27, 22, .42), 0 4px 12px rgba(0, 0, 0, .2); }
.scroll-top-float:active { transform: scale(.95); }
.scroll-top-float[hidden] { display: flex; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px); }

@media (max-width: 800px) {
  .float-actions { left: 12px; bottom: max(12px, env(safe-area-inset-bottom)); gap: 10px; }
  .scroll-top-float { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); }
  .call-float, .whatsapp-float, .scroll-top-float { width: 46px; height: 46px; }
  .call-float svg { width: 19px; height: 19px; }
  .whatsapp-float svg { width: 21px; height: 21px; }
  .scroll-top-float svg { width: 19px; height: 19px; }
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 106px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  background: var(--forest-950);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: flex; align-items: center; width: max-content; }
.brand-name { font-size: 18px; font-weight: 600; line-height: 1.05; letter-spacing: -.035em; }
.brand-name small { display: block; margin-top: 6px; font-size: 8px; text-transform: uppercase; letter-spacing: .22em; font-weight: 400; opacity: .68; }
.nav-links { display: flex; align-items: center; gap: clamp(23px, 3vw, 50px); }
.nav-links a { position: relative; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; opacity: .76; transition: opacity .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: white; transition: right .25s; }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }
.nav-links a.is-active { opacity: 1; }
.nav-links a.is-active::after { right: 0; background: var(--brass-light); }
.header-action { justify-self: end; display: flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.header-action span { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); width: 32px; height: 32px; border-radius: 50%; transition: .25s; }
.header-action:hover span { background: var(--ivory); color: var(--forest-950); transform: rotate(45deg); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px 0 10px 12px; }
.menu-button span { display: block; width: 25px; height: 1px; background: white; margin: 6px 0; transition: .25s; }

.hero { position: relative; min-height: 920px; height: 100svh; max-height: 1080px; overflow: hidden; background: var(--forest-950); color: white; }
.hero-image { object-position: 58% center; filter: brightness(.86) saturate(.88); transform: scale(1.015); }
.hero::before {
  content: ""; position: absolute; z-index: 2; inset: 0;
  background: linear-gradient(90deg, rgba(4,18,14,.86) 0%, rgba(5,22,17,.68) 34%, rgba(6,23,18,.34) 65%, rgba(5,20,16,.24) 100%);
}
.hero::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(0deg, rgba(4,14,11,.62) 0%, transparent 34%); }
.hero-grain { position: absolute; z-index: 3; inset: 0; pointer-events: none; opacity: .12; background: repeating-radial-gradient(circle at 30% 20%, rgba(255,255,255,.06) 0 1px, transparent 1px 5px); mix-blend-mode: soft-light; }
.hero-copy { position: absolute; z-index: 4; left: clamp(24px, 8.5vw, 145px); top: 24%; max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 28px; margin: 0 0 27px; font-size: 9px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; opacity: .66; }
.eyebrow span + span::before { content: ""; display: inline-block; width: 34px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 22px; opacity: .6; }
.eyebrow--dark { color: var(--forest-700); opacity: 1; }
.hero h1, .section-heading h2, .master-copy h2, .verify h2 {
  margin: 0; font-size: clamp(72px, 7.1vw, 122px); letter-spacing: -.07em; line-height: .82; font-weight: 700;
}
.hero h1 em, .section-heading h2 em, .verify h2 em { font-family: var(--editorial); font-style: italic; font-weight: 400; letter-spacing: -.055em; color: #e2c27f; }
.hero h1 em { display: inline-block; margin-left: 50px; font-size: 1.08em; }
.hero-intro { max-width: 570px; margin: 48px 0 34px 6px; font-size: 15px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,.74); }
.hero-actions { display: flex; align-items: center; gap: 38px; margin-left: 6px; }
.button { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 58px; padding: 5px 8px 5px 26px; border: 1px solid transparent; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: transform .28s, color .28s, background .28s, border-color .28s; }
.button::before { content: ""; position: absolute; z-index: -1; inset: 0; background: var(--brass); transform: translateX(-102%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.button span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-900); color: white; font-size: 15px; font-weight: 400; transition: transform .3s, background .3s; }
.button:hover { transform: translateY(-2px); color: var(--forest-950); }
.button:hover::before { transform: translateX(0); }
.button:hover span { transform: rotate(45deg); background: var(--forest-950); color: white; }
.button--ivory { background: var(--ivory); color: var(--forest-950); }
.button--ivory:hover { background: var(--ivory); }
.text-link { display: flex; gap: 15px; align-items: center; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 8px; }
.hero-search { position: absolute; z-index: 5; bottom: 0; left: clamp(24px, 8.5vw, 145px); right: clamp(24px, 8.5vw, 145px); min-height: 118px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.28); }
.hero-search > div { display: flex; align-items: center; gap: 24px; }
.brand-mini { padding-right: 22px; border-right: 1px solid rgba(255,255,255,.24); color: #e0c58f; font-size: 13px; font-weight: 600; letter-spacing: -.025em; white-space: nowrap; }
.hero-search p { display: grid; grid-template-columns: auto 1fr; column-gap: 26px; margin: 0; font-size: 11px; color: rgba(255,255,255,.56); }
.hero-search p strong { color: white; font-size: 12px; }
.hero-search > a { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--brass); color: var(--forest-950); font-size: 18px; transition: .25s; }
.hero-search > a:hover { transform: translateX(5px); background: #d3b77f; }

.manifesto-section { position: relative; padding: 150px clamp(24px, 9vw, 160px) 160px; text-align: center; background: var(--paper); overflow: hidden; }
.section-number { position: absolute; top: 48px; left: clamp(24px, 5vw, 80px); font-size: 10px; color: var(--forest-700); }
.manifesto-kicker { font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--forest-700); margin: 0 0 48px; }
.manifesto-section blockquote { position: relative; z-index: 1; margin: 0 auto; max-width: 1350px; font-size: clamp(31px, 4.5vw, 75px); line-height: 1.35; letter-spacing: -.045em; font-weight: 600; }
.manifesto-section mark { position: relative; padding: 0 .12em; background-color: transparent; background-image: linear-gradient(transparent 20%, #c7a35d 20%, #c7a35d 90%, transparent 90%); background-repeat: no-repeat; background-size: 0% 100%; color: inherit; box-decoration-break: clone; -webkit-box-decoration-break: clone; transition: background-size 1.15s cubic-bezier(.2,.8,.2,1); }
.manifesto-section mark.is-visible { background-size: 100% 100%; }
.manifesto-section .mark-dark { background-image: linear-gradient(transparent 20%, var(--forest-800) 20%, var(--forest-800) 90%, transparent 90%); color: var(--ivory); transition-delay: .18s; }
.signature { margin: 42px 0 0; font-family: var(--editorial); font-style: italic; font-size: 33px; color: var(--forest-700); }

.section-shell { padding: 145px clamp(24px, 6vw, 110px); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; }
.section-heading h2 { font-size: clamp(56px, 5.2vw, 94px); line-height: .94; color: var(--forest-950); }
.section-heading h2 em { display: inline-block; margin-left: 62px; font-size: 1.02em; color: var(--forest-700); }
.section-lede { max-width: 430px; margin: 0 0 10px 40px; font-size: 13px; line-height: 1.8; color: #5d6761; }
.master-section { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(540px, .98fr); min-height: 920px; background: var(--forest-900); color: white; }
.master-image-wrap { position: relative; min-height: 720px; overflow: hidden; }
.master-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(7,27,22,.35)); box-shadow: inset -60px 0 90px rgba(7,27,22,.2); }
.master-image-wrap img { object-position: 55% center; filter: saturate(.78) contrast(1.04); }
.photo-credit { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 24px; margin: 0; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.42); color: rgba(255,255,255,.78); font-size: 7px; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.7); }
.master-copy { display: flex; flex-direction: column; justify-content: center; padding: 95px clamp(45px, 6vw, 105px); }
.master-copy h2 { margin: 0; font-size: clamp(48px, 4.4vw, 76px); line-height: .96; letter-spacing: -.055em; }
.master-copy h2 em { display: inline-block; margin-top: 10px; font-family: var(--editorial); font-style: italic; font-weight: 400; color: #dfbf7a; letter-spacing: -.05em; }
.master-lead { margin: 55px 0 20px; max-width: 540px; font-size: 20px !important; line-height: 1.55 !important; color: white !important; font-weight: 500; }
.master-copy > p:not(.eyebrow) { max-width: 590px; margin-top: 12px; margin-bottom: 8px; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.76); }
.master-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 48px 0 45px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.master-stats div { display: flex; flex-direction: column; gap: 7px; }
.master-stats strong { font-size: 28px; font-weight: 500; color: #d2b77f; }
.master-stats span { font-size: 8px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.button--outline { align-self: flex-start; border-color: rgba(255,255,255,.42); color: white; }
.button--outline span { background: var(--ivory); color: var(--forest-950); }
.button--outline:hover { border-color: var(--brass); color: var(--forest-950); }

.story-gallery { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); grid-template-rows: 350px 350px; gap: 18px; background: #d9d0bf; }
.story-editorial { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; padding-right: clamp(30px, 6vw, 110px); }
.story-editorial h2 { margin: 0 0 42px; font-size: clamp(45px, 4.4vw, 76px); line-height: 1.02; letter-spacing: -.055em; }
.story-editorial h2 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--forest-700); }
.story-editorial > p:not(.eyebrow) { max-width: 650px; margin: 0 0 18px; font-size: 14px; line-height: 1.85; color: #425048; }
.source-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 28px; margin-top: 26px; padding-bottom: 8px; border-bottom: 1px solid var(--forest-700); color: var(--forest-800); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.source-link span { font-size: 15px; transition: transform .25s; }
.source-link:hover span { transform: rotate(45deg); }
.story-photo { position: relative; min-height: 0; margin: 0; overflow: hidden; background: var(--forest-950); }
.story-photo img { filter: saturate(.72) contrast(1.05); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s; }
.story-photo:hover img { transform: scale(1.025); filter: saturate(.9) contrast(1.03); }
.story-photo figcaption { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 14px; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.48); color: rgba(255,255,255,.82); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.7); }
.story-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(5,20,15,.55), transparent 45%); }

.artifact-feature { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--forest-950); color: white; }
.product-gallery { min-width: 0; display: grid; grid-template-rows: minmax(0, 1fr) 112px; overflow: hidden; background: #071b16; }
.gallery-stage { position: relative; min-height: 620px; overflow: hidden; background: #d9d4c8; touch-action: pan-y; }
.gallery-image { animation: gallery-in .55s cubic-bezier(.2,.7,.2,1); }
.gallery-image.demo-view-0 { object-position: 50% 49%; transform: scale(1.55); }
.gallery-image.demo-view-1 { object-position: 28% 38%; transform: scale(2.25); }
.gallery-image.demo-view-2 { object-position: 70% 70%; transform: scale(2.35); }
@keyframes gallery-in { from { opacity: .25; transform: scale(1.035); } }
.gallery-image[class*="demo-view-"] { animation-name: gallery-product-in; }
@keyframes gallery-product-in { from { opacity: .25; transform: scale(1.6); } }
.gallery-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(4,18,14,.08), transparent 55%, rgba(4,18,14,.42)); }
.gallery-counter { position: absolute; z-index: 3; right: 25px; top: 24px; padding: 9px 13px; background: rgba(4,18,14,.62); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); color: white; font-size: 8px; letter-spacing: .15em; }
.verified-label { position: absolute; z-index: 3; left: 25px; top: 24px; padding: 10px 15px; background: var(--forest-900); color: white; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.gallery-arrows { position: absolute; z-index: 3; right: 24px; bottom: 24px; display: flex; gap: 8px; }
.gallery-arrows button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(4,18,14,.6); backdrop-filter: blur(10px); color: white; font-size: 18px; cursor: pointer; transition: background .25s ease, color .25s ease, transform .25s ease; }
.gallery-arrows button:hover { background: var(--brass); color: var(--forest-950); transform: translateY(-2px); }
.gallery-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 96px; align-items: center; gap: 10px; padding: 13px 18px; overflow-x: auto; background: rgba(5,22,17,.96); scrollbar-width: thin; scrollbar-color: #8f7449 transparent; }
.gallery-thumb { position: relative; height: 76px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); opacity: .42; cursor: pointer; transition: opacity .25s ease, border-color .25s ease, transform .25s ease; }
.gallery-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(4,18,14,.18); }
.gallery-thumb img { object-fit: cover; }
.gallery-thumb img.demo-view-0 { object-position: 50% 49%; transform: scale(1.5); }
.gallery-thumb img.demo-view-1 { object-position: 28% 38%; transform: scale(2.15); }
.gallery-thumb img.demo-view-2 { object-position: 70% 70%; transform: scale(2.2); }
.gallery-thumb span { position: absolute; z-index: 2; left: 7px; bottom: 6px; padding: 3px 5px; background: rgba(4,18,14,.65); color: white; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.gallery-thumb:hover, .gallery-thumb.is-active { opacity: 1; border-color: #d6b774; transform: translateY(-2px); }
.gallery-thumb.is-active::after { background: transparent; box-shadow: inset 0 0 0 2px #d6b774; }
.artifact-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(40px, 7vw, 125px); }
.artifact-copy h2 { margin: 0 0 38px; font-size: clamp(50px, 4.7vw, 82px); line-height: .95; letter-spacing: -.06em; }
.artifact-copy h2 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: #dfbf7a; letter-spacing: -.05em; }
.artifact-copy > p:not(.eyebrow):not(.artifact-source) { margin: 0; max-width: 570px; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.76); }
.artifact-copy dl { margin: 42px 0 26px; border-top: 1px solid rgba(255,255,255,.18); }
.artifact-copy dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.artifact-copy dt { font-size: 8px; text-transform: uppercase; letter-spacing: .14em; color: #c8a765; }
.artifact-copy dd { margin: 0; font-size: 12px; }

/* ---------- Product detail panel (urun.php) ---------- */
.product-detail h2 { margin-bottom: 22px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.product-tag { display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; transition: background .2s ease; }
a.product-tag { background: rgba(223,191,122,.14); color: #dfbf7a; }
a.product-tag:hover { background: rgba(223,191,122,.26); }
.product-tag--muted { background: rgba(255,255,255,.08); color: rgba(255,255,255,.62); }

.product-price-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin: 0 0 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.product-price { font-size: 32px; font-weight: 650; letter-spacing: -.02em; color: #dfbf7a; font-variant-numeric: tabular-nums; line-height: 1; }
.product-price small { font-size: 15px; font-weight: 500; margin-left: 3px; opacity: .8; }
.product-price-inquire { font-size: 13px; color: rgba(255,255,255,.62); }
.product-availability-badge { padding: 6px 13px; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.09); color: rgba(255,255,255,.7); }

.product-detail > p:not(.eyebrow):not(.artifact-source) { margin-bottom: 8px; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 34px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.spec-item { padding: 20px 24px 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.spec-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.16); padding-right: 24px; }
.spec-item:nth-child(even) { padding-left: 24px; }
.spec-label { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.42); margin-bottom: 9px; }
.spec-value { font-size: 15px; font-weight: 500; color: #fff; letter-spacing: -.01em; }

.product-code-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.product-code-row .spec-label { margin-bottom: 0; }
.product-code-value { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; letter-spacing: .02em; color: rgba(255,255,255,.85); }

.verify-chip { display: inline-flex; align-items: center; gap: 12px; padding: 6px 6px 6px 20px; border: 1px solid rgba(223,191,122,.35); border-radius: 999px; color: #dfbf7a; font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; transition: border-color .25s ease, background .25s ease; }
.verify-chip span { width: 30px; height: 30px; border-radius: 50%; background: rgba(223,191,122,.12); display: grid; place-items: center; font-size: 13px; transition: transform .25s ease, background .25s ease, color .25s ease; }
.verify-chip:hover { border-color: #dfbf7a; background: rgba(223,191,122,.08); }
.verify-chip:hover span { background: #dfbf7a; color: var(--forest-950); transform: rotate(45deg); }

.product-detail .source-link { color: rgba(255,255,255,.56); border-bottom-color: rgba(255,255,255,.24); transition: color .2s ease, border-color .2s ease; }
.product-detail .source-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.5); }

@media (max-width: 480px) {
  .spec-grid { grid-template-columns: 1fr; }
  .spec-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .spec-item:nth-child(even) { padding-left: 0; }
}
.artifact-source { width: fit-content; margin: 0; font-size: 9px; line-height: 1.7; color: rgba(255,255,255,.6); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.24); transition: color .25s ease, border-color .25s ease; }
.artifact-source:hover { color: var(--brass-light); border-color: var(--brass-light); }

.film-section { display: grid; grid-template-columns: minmax(0,1.28fr) minmax(420px,.72fr); min-height: 820px; background: #c8aa73; color: var(--forest-950); }
.film-media { position: relative; min-height: 820px; overflow: hidden; background: #061712; }
.film-media video, .film-stills { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-media video { background: #061712; }
.film-stills img { object-fit: cover; filter: saturate(.74) contrast(1.08); opacity: 0; animation: film-still 15s infinite cubic-bezier(.45,0,.55,1); }
.film-stills img:nth-child(1) { opacity: 1; animation-delay: 0s; }
.film-stills img:nth-child(2) { animation-delay: 5s; }
.film-stills img:nth-child(3) { animation-delay: 10s; }
@keyframes film-still { 0% { opacity: 0; transform: scale(1.08); } 8%, 30% { opacity: 1; } 38%, 100% { opacity: 0; transform: scale(1); } }
.film-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(5,20,15,.12), rgba(5,20,15,.58)); }
.film-frame { position: absolute; z-index: 3; inset: 0; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto; align-items: end; padding: 34px; color: white; pointer-events: none; }
.film-frame>span { align-self: start; width: max-content; padding: 10px 13px; background: rgba(5,22,17,.66); backdrop-filter: blur(10px); font-size: 8px; letter-spacing: .18em; }
.film-frame>i { grid-row: 1/3; align-self: center; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; background: rgba(5,22,17,.25); backdrop-filter: blur(14px); font-style: normal; font-size: 18px; }
.film-frame>b { font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.film-copy { display: flex; flex-direction: column; justify-content: center; padding: 85px clamp(42px,6vw,105px); }
.film-copy h2 { margin: 0; font-size: clamp(54px,5vw,86px); line-height: .92; letter-spacing: -.065em; }
.film-copy h2 em { font-family: var(--editorial); font-weight: 400; color: var(--forest-700); }
.film-copy>p:not(.eyebrow) { margin: 38px 0; max-width: 530px; font-size: 14px; line-height: 1.85; color: #31493f; }
.film-chapters { display: grid; margin-bottom: 38px; border-top: 1px solid rgba(7,27,22,.23); }
.film-chapters span { min-height: 54px; display: flex; align-items: center; gap: 19px; border-bottom: 1px solid rgba(7,27,22,.23); font-size: 11px; }
.film-chapters b { color: var(--forest-700); font-size: 8px; }
.film-cta { width: max-content; min-height: 52px; display: flex; align-items: center; gap: 26px; padding-bottom: 4px; border-bottom: 1px solid var(--forest-950); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.film-cta span { font-size: 17px; }

.craft { background: var(--paper); }
.section-heading--compact { margin-bottom: 65px; }
.craft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 8vw, 150px); align-items: center; }
.value-feature { position: relative; min-height: 640px; overflow: hidden; background: #214a3d; }
.value-feature > img { object-position: 50% 52%; transform: scale(1.62); filter: saturate(.9) contrast(1.06); }
.value-feature::before { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(20,75,58,.42); mix-blend-mode: multiply; }
.value-feature::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(4,18,14,.03) 20%, rgba(4,18,14,.9) 100%); }
.value-feature-copy { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 36px; color: white; }
.value-feature-copy span { display: block; margin-bottom: 16px; color: var(--brass-light); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.value-feature-copy blockquote { max-width: 520px; margin: 0; font-family: var(--editorial); font-size: clamp(28px, 3vw, 48px); font-style: italic; line-height: 1.08; letter-spacing: -.03em; }
.craft-list { list-style: none; margin: 0; padding: 0; }
.craft-list li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 28px 0; border-top: 1px solid var(--line); }
.craft-list li:last-child { border-bottom: 1px solid var(--line); }
.craft-list > li > span { font-size: 10px; font-weight: 600; color: var(--forest-700); }
.craft-list h3 { margin: 0 0 9px; font-size: 22px; letter-spacing: -.035em; }
.craft-list p { margin: 0; max-width: 520px; font-size: 13.5px; line-height: 1.75; color: #536159; }

.verify { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 155px); padding: 150px clamp(24px, 8vw, 145px); background: var(--forest-950); color: white; }
.verify h2 { font-size: clamp(63px, 6.2vw, 108px); }
.verify-copy > p:not(.eyebrow) { max-width: 500px; margin: 45px 0; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.74); }
.verification-points { display: flex; gap: 28px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.verification-points span { display: flex; flex-direction: column; gap: 7px; font-size: 8px; color: #b99c64; }
.verification-points b { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.72); font-weight: 500; }

.contact-direct { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-direct-label { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #b99c64; }
.contact-direct-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.86); transition: color .2s; width: fit-content; }
.contact-direct-item svg { flex-shrink: 0; width: 15px; height: 15px; opacity: .75; }
.contact-direct-item:hover { color: var(--brass-light); }
.contact-direct-item:hover svg { opacity: 1; }
.verify-panel { align-self: center; background: var(--ivory); color: var(--forest-950); padding: clamp(35px, 5vw, 75px); min-height: 450px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 25px 25px 0 rgba(183,149,91,.12); }
.archive-label { font-size: 8px; letter-spacing: .21em; text-transform: uppercase; color: #748078; }
.verify-panel form { margin: 70px 0; }
.verify-panel label { display: block; margin-bottom: 18px; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.serial-field { display: grid; grid-template-columns: minmax(0, 1fr) 152px; border-bottom: 1px solid var(--forest-950); }
.serial-field input { width: 100%; border: 0; outline: 0; background: transparent; padding: 14px 0 20px; font-size: clamp(23px, 3vw, 40px); letter-spacing: .04em; font-weight: 600; color: var(--forest-950); text-transform: uppercase; }
.serial-field input:focus-visible { outline: 2px solid var(--brass); outline-offset: 6px; }
.serial-field input::placeholder { color: #b4b5af; }
.serial-field button { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 0; padding: 0 16px; background: var(--forest-900); color: white; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: .25s; }
.serial-field button b { font-size: 19px; font-weight: 400; }
.serial-field button:hover { background: var(--brass); color: var(--forest-950); }
.contact-textarea { width: 100%; margin-top: 4px; padding: 14px 0 12px; border: 0; border-bottom: 1px solid var(--forest-950); outline: 0; background: transparent; resize: vertical; font-family: inherit; font-size: 15px; line-height: 1.6; color: var(--forest-950); }
.contact-textarea:focus-visible { outline: 2px solid var(--brass); outline-offset: 6px; }
.contact-textarea::placeholder { color: #b4b5af; }
.contact-submit { margin-top: 22px; }
.contact-submit.is-loading { opacity: .6; cursor: progress; pointer-events: none; }
.form-hint, .form-error { margin: 14px 0 0; font-size: 9px; color: #7a807a; }
.form-hint button { border: 0; padding: 0; background: transparent; text-decoration: underline; cursor: pointer; color: var(--forest-700); }
.form-error { color: #9b3c2d; }
.verify-foot { display: flex; align-items: center; gap: 14px; font-size: 7px; letter-spacing: .12em; text-transform: uppercase; color: #778078; }
.verify-foot i { flex: 1; height: 1px; background: #c9c5bb; }

.contact-strip { display: flex; justify-content: space-between; align-items: center; padding: 68px clamp(24px, 8vw, 145px); background: #c3a46d; color: var(--forest-950); }
.contact-strip p { margin: 0; font-size: clamp(25px, 3vw, 48px); font-weight: 600; letter-spacing: -.05em; }
.contact-strip a { display: flex; gap: 40px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--forest-950); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }

footer { background: #061712; color: white; padding: 95px clamp(24px, 8vw, 145px) 28px; }
.footer-brand { display: flex; align-items: center; padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-brand h2 { margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: .9; letter-spacing: -.05em; }
.footer-brand h2 small { display: block; margin-top: 14px; font-size: 8px; text-transform: uppercase; letter-spacing: .27em; color: rgba(255,255,255,.45); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; padding: 62px 0 80px; }
.footer-newsletter-form { display: flex; align-items: center; gap: 0; margin-top: 4px; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer-newsletter-form input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 8px 0; font-size: 11px; color: white; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form button { flex-shrink: 0; border: 0; background: transparent; padding: 8px 4px; font-size: 15px; color: rgba(255,255,255,.7); cursor: pointer; transition: color .2s, transform .2s; }
.footer-newsletter-form button:hover { color: var(--brass-light); transform: translateX(3px); }
.footer-newsletter-status { margin-top: 10px; font-size: 10px; color: rgba(255,255,255,.55); min-height: 14px; }
.footer-newsletter-status.is-success { color: var(--brass-light); }
.footer-newsletter-status.is-error { color: #e08a72; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-links div > span { margin-bottom: 10px; font-size: 8px; text-transform: uppercase; letter-spacing: .18em; color: #b99a60; }
.footer-links a, .footer-links p, .footer-links button { margin: 0; padding: 0; border: 0; background: transparent; font-size: 11px; color: rgba(255,255,255,.62); cursor: pointer; transition: color .2s; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); font-size: 8px; letter-spacing: .08em; color: rgba(255,255,255,.38); }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(3,14,11,.88); backdrop-filter: blur(16px); overflow-y: auto; animation: fade-in .25s ease; }
@keyframes fade-in { from { opacity: 0; } }
.certificate-modal { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; width: min(1180px, 94vw); min-height: 690px; background: var(--ivory); box-shadow: 0 35px 100px rgba(0,0,0,.45); animation: rise .4s cubic-bezier(.2,.7,.2,1); }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } }
.modal-close { position: absolute; z-index: 5; right: 18px; top: 15px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(20,32,27,.3); background: rgba(242,238,228,.82); font-size: 24px; cursor: pointer; }
.gallery--certificate { min-height: 690px; grid-template-rows: minmax(0, 1fr) 104px; }
.gallery--certificate .gallery-stage { min-height: 586px; }
.gallery--certificate .gallery-counter { right: 78px; }
.certificate-details { padding: 60px clamp(35px, 5vw, 75px) 45px; }
.certificate-top { display: flex; align-items: center; gap: 16px; margin-bottom: 42px; }
.certificate-wordmark { padding-right: 17px; border-right: 1px solid #c9c5bb; color: var(--forest-900); font-size: 17px; font-weight: 600; letter-spacing: -.035em; white-space: nowrap; }
.certificate-top p { margin: 0; font-size: 8px; line-height: 1.7; text-transform: uppercase; letter-spacing: .1em; color: #7b827c; }
.certificate-top b { color: var(--forest-900); }
.certificate-seal { margin-left: auto; width: 62px; height: 62px; display: grid; place-items: center; align-content: center; border: 1px solid #b7955b; border-radius: 50%; color: var(--forest-900); font-family: var(--editorial); font-size: 19px; line-height: 1; }
.certificate-seal small { display: block; margin-top: 4px; font-family: var(--font-poppins); font-size: 5px; letter-spacing: .12em; }
.certificate-details h2 { margin: 0; font-size: clamp(42px, 4vw, 68px); line-height: .95; letter-spacing: -.055em; }
.certificate-collection { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: #8a7147; }
.certificate-details dl { margin: 34px 0; border-top: 1px solid var(--line); }
.certificate-details dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.certificate-details dt { font-size: 8px; text-transform: uppercase; letter-spacing: .12em; color: #7e867f; }
.certificate-details dd { margin: 0; font-size: 10px; font-weight: 500; }
.certificate-note { font-size: 10px; line-height: 1.8; font-style: italic; color: #677068; }
.certificate-provenance { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.certificate-provenance>div { min-height: 72px; display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); }
.certificate-provenance>div>span { color: #9a7c49; font-size: 8px; }.certificate-provenance p { margin: 0; color: #6d756f; font-size: 8px; line-height: 1.5; }.certificate-provenance p b { display: block; color: var(--forest-950); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.certificate-provenance .certificate-qr { grid-column: 1/-1; min-height: 112px; }.certificate-qr img { width: 88px; height: 88px; flex: 0 0 auto; }.certificate-qr p { font-size: 9px; }.certificate-qr p b { font-size: 10px; }
.certificate-status { display: flex; align-items: center; gap: 9px; margin-top: 26px; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; color: var(--forest-700); }
.certificate-status i { width: 7px; height: 7px; border-radius: 50%; background: #3c8668; box-shadow: 0 0 0 5px rgba(60,134,104,.12); }
.signature--small { margin: 0 0 0 auto; font-size: 25px; text-transform: none; letter-spacing: 0; }
.certificate-download { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding: 15px 18px; border: 0; background: var(--forest-900); color: white; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .25s ease; }
.certificate-download span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brass); color: var(--forest-950); font-size: 14px; }
.certificate-download:hover { background: var(--forest-700); }
.download-message { margin: 9px 0 0; color: #667169; font-size: 8px; letter-spacing: .08em; text-align: right; }

/* ---------- Trust tier, meta line, ownership, scope note, report (B2/B4/B5/B8/B11) ---------- */
.trust-chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.trust-chip.tier-qr { background: rgba(28,81,65,.12); color: var(--forest-700); }
.trust-chip.tier-qr::before { content: "●"; font-size: 7px; color: #3c8668; }
.trust-chip.tier-code { background: rgba(154,124,73,.14); color: #8a7147; }
.trust-chip.tier-code::before { content: "●"; font-size: 7px; color: #b7955b; }

.verify-meta { margin: 8px 0 0; font-size: 8px; letter-spacing: .06em; color: #8a8f89; font-variant-numeric: tabular-nums; }

.certificate-scope-note { margin: 18px 0 0; padding: 12px 14px; background: rgba(20,32,27,.04); border-left: 2px solid var(--line); font-size: 9px; line-height: 1.65; color: #6d756f; }

.ownership-chain { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.ownership-chain h4 { margin: 0 0 10px; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #7e867f; }
.ownership-chain ol { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ownership-chain li { display: flex; justify-content: space-between; gap: 12px; font-size: 10px; color: var(--forest-950); }
.ownership-chain li span { color: #9a9f98; font-size: 9px; white-space: nowrap; }

.certificate-secondary-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px; }
.certificate-text-btn { border: 0; padding: 0; background: transparent; font-size: 8.5px; letter-spacing: .06em; color: #7a807a; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.certificate-text-btn:hover { color: var(--forest-700); }

.report-panel { display: none; margin-top: 14px; padding: 14px; background: rgba(20,32,27,.04); border: 1px solid var(--line); }
.report-panel.is-open { display: block; }
.report-panel textarea, .report-panel input {
  width: 100%; margin-top: 6px; padding: 8px; border: 1px solid var(--surface-line, #c9c5bb); background: white; font: inherit; font-size: 11px; color: var(--forest-950); resize: vertical;
}
.report-panel label { display: block; font-size: 8px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #7e867f; margin-top: 10px; }
.report-panel label:first-child { margin-top: 0; }
.report-panel button[type="submit"] { margin-top: 12px; padding: 9px 16px; border: 0; background: var(--forest-900); color: white; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.report-panel button[type="submit"]:hover { background: var(--forest-700); }
.report-panel .report-message { margin: 8px 0 0; font-size: 9px; color: var(--forest-700); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .nav-links { position: absolute; top: 106px; left: 0; right: 0; padding: 24px 30px 36px; background: rgba(5,22,17,.98); flex-direction: column; gap: 0; align-items: flex-start; transform: translateY(-12px); visibility: hidden; opacity: 0; pointer-events: none; transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .25s, visibility .25s; box-shadow: 0 28px 60px rgba(0,0,0,.22); }
  .nav-links.is-open { transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto; }
  .nav-links a { display: flex; align-items: center; width: 100%; min-height: 54px; border-bottom: 1px solid rgba(255,255,255,.12); opacity: .9; }
  .nav-links a::after { position: static; width: auto; height: auto; margin-left: auto; background: none; content: "↗"; font-size: 15px; opacity: .55; }
  .header-action { display: none; }
  .menu-button { display: grid; place-content: center; justify-self: end; width: 48px; height: 48px; padding: 0; cursor: pointer; }
  .menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .master-section { grid-template-columns: 1fr 1fr; }
  .master-copy { padding: 80px 45px; }
  .story-gallery { grid-template-columns: 1fr 1fr; }
  .story-editorial { padding-right: 35px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 35px; }
  .section-lede { margin-left: 0; }
}

@media (max-width: 800px) {
  .site-header {
    height: calc(82px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
    backdrop-filter: blur(2px);
  }
  .brand { min-height: 44px; }
  .brand-name { font-size: 14px; }
  .brand-name small { font-size: 8px; opacity: .74; }
  .nav-links {
    position: fixed;
    top: calc(82px + env(safe-area-inset-top));
    bottom: 0;
    min-height: calc(100svh - 82px - env(safe-area-inset-top));
    padding: 18px max(22px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    justify-content: flex-start;
    background: linear-gradient(155deg, rgba(5,22,17,.99), rgba(11,43,34,.985));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links a { min-height: 66px; font-size: 12px; letter-spacing: .18em; }
  .menu-button { margin-right: -8px; }

  .hero { min-height: max(680px, 100svh); height: auto; max-height: none; }
  .hero-image { object-position: 62% center; opacity: .9; transform: scale(1.03); }
  .hero::before { background: linear-gradient(90deg, rgba(4,18,14,.92), rgba(5,22,17,.56) 70%, rgba(5,22,17,.38)); }
  .hero::after { background: linear-gradient(0deg, rgba(4,14,11,.78) 0%, transparent 42%); }
  .hero-copy { left: 22px; right: 22px; top: clamp(132px, 18svh, 164px); max-width: 620px; }
  .hero h1 { font-size: clamp(55px, 18vw, 74px); line-height: .83; }
  .hero h1 em { margin-left: 20px; }
  .hero-intro { max-width: 34rem; margin: 28px 0 22px 4px; font-size: 14px; line-height: 1.68; color: rgba(255,255,255,.8); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-left: 4px; }
  .button { min-height: 56px; font-size: 10px; }
  .text-link { min-height: 44px; padding: 8px 0; font-size: 10px; }
  .hero-search { left: 88px; right: 22px; bottom: max(0px, env(safe-area-inset-bottom)); min-height: 96px; }
  .hero-search p { display: block; max-width: 250px; font-size: 11px; line-height: 1.5; color: rgba(255,255,255,.68); }
  .hero-search p strong { display: block; margin-bottom: 5px; font-size: 12px; }
  .hero-search .brand-mini { display: none; }
  .hero-search > a { width: 42px; height: 42px; font-size: 16px; flex: 0 0 auto; }

  .eyebrow { margin-bottom: 22px; font-size: 10px; line-height: 1.5; letter-spacing: .2em; }
  .manifesto-section { padding: 96px 23px 100px; }
  .manifesto-kicker { font-size: 10px; margin-bottom: 36px; }
  .manifesto-section blockquote br { display: none; }
  .manifesto-section blockquote { font-size: clamp(30px, 8.7vw, 42px); line-height: 1.36; }
  .signature { margin-top: 34px; font-size: 30px; }
  .section-shell { padding: 88px 22px; }
  .section-heading { margin-bottom: 50px; gap: 28px; }
  .section-heading h2, .master-copy h2, .verify h2 { font-size: clamp(48px, 14vw, 66px); }
  .section-heading h2 em { margin-left: 22px; }
  .section-lede { max-width: 35rem; font-size: 15px; line-height: 1.75; color: #46534c; }
  .master-section { display: flex; flex-direction: column; }
  .master-image-wrap { min-height: clamp(410px, 128vw, 520px); aspect-ratio: auto; }
  .photo-credit { left: 20px; right: 20px; bottom: 18px; font-size: 9px; line-height: 1.55; }
  .master-copy { padding: 76px 23px 82px; }
  .master-copy h2 { font-size: clamp(44px, 12.5vw, 58px); }
  .master-lead { margin-top: 36px; font-size: 18px !important; line-height: 1.55 !important; }
  .master-copy > p:not(.eyebrow) { font-size: 15px; line-height: 1.78; color: rgba(255,255,255,.8); }
  .master-stats { grid-template-columns: 1fr; gap: 0; margin: 36px 0; padding: 0; }
  .master-stats div { min-height: 62px; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .master-stats div:last-child { border-bottom: 0; }
  .master-stats strong { font-size: 23px; }
  .master-stats span { max-width: 180px; font-size: 10px; line-height: 1.5; text-align: right; color: rgba(255,255,255,.66); }
  .story-gallery { display: flex; flex-direction: column; }
  .story-editorial { padding: 0 0 45px; }
  .story-editorial h2 { margin-bottom: 32px; font-size: clamp(42px, 11.5vw, 56px); }
  .story-editorial > p:not(.eyebrow) { font-size: 15px; line-height: 1.78; }
  .source-link { min-height: 48px; margin-top: 20px; padding: 10px 0; font-size: 10px; line-height: 1.5; }
  .story-photo { min-height: 310px; }
  .story-photo--portrait { min-height: 380px; }
  .story-photo figcaption { font-size: 9px; line-height: 1.5; }
  .artifact-feature { display: flex; flex-direction: column; min-height: 0; }
  .gallery--feature { min-height: 0; grid-template-rows: clamp(430px, 62svh, 540px) 104px; }
  .gallery-stage { min-height: 0; }
  .gallery-image.demo-view-0 { object-position: 50% 48%; transform: scale(1.5); }
  .gallery-image.demo-view-1 { object-position: 26% 39%; transform: scale(2.08); }
  .gallery-image.demo-view-2 { object-position: 72% 70%; transform: scale(2.18); }
  .gallery-counter { top: 18px; right: 18px; min-height: 32px; display: grid; place-items: center; }
  .verified-label { left: 18px; top: 18px; min-height: 32px; display: grid; place-items: center; }
  .gallery-arrows { right: 18px; bottom: 18px; }
  .gallery-arrows button { width: 48px; height: 48px; }
  .gallery-thumbs { grid-auto-columns: 88px; padding-inline: 12px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gallery-thumb { height: 76px; scroll-snap-align: start; }
  .gallery-thumb span { font-size: 8px; }
  .artifact-copy { padding: 74px 23px 80px; }
  .artifact-copy h2 { margin-bottom: 30px; font-size: clamp(46px, 12.7vw, 60px); }
  .artifact-copy > p:not(.eyebrow):not(.artifact-source) { font-size: 15px; line-height: 1.78; color: rgba(255,255,255,.8); }
  .artifact-copy dl { margin-top: 34px; }
  .artifact-copy dl > div { grid-template-columns: 96px 1fr; min-height: 52px; align-items: center; }
  .artifact-copy dt { font-size: 10px; }
  .artifact-copy dd { font-size: 13px; }
  .artifact-source { min-height: 48px; display: flex; align-items: center; font-size: 10px; line-height: 1.65; }
  .film-section { display: flex; flex-direction: column; min-height: 0; }
  .film-media { min-height: clamp(470px, 72svh, 620px); }
  .film-frame { padding: 20px; }
  .film-frame>span { font-size: 8px; }
  .film-frame>i { width: 68px; height: 68px; }
  .film-frame>b { max-width: 230px; font-size: 9px; line-height: 1.5; }
  .film-copy { padding: 74px 23px 80px; }
  .film-copy h2 { font-size: clamp(48px, 14vw, 64px); }
  .film-copy>p:not(.eyebrow) { margin: 30px 0; font-size: 15px; line-height: 1.75; }
  .film-chapters { margin-bottom: 30px; }
  .film-chapters span { min-height: 58px; font-size: 12px; }
  .film-cta { min-height: 48px; font-size: 10px; }
  .craft-grid { grid-template-columns: 1fr; }
  .value-feature { min-height: clamp(440px, 120vw, 520px); }
  .value-feature-copy { left: 24px; right: 24px; bottom: 26px; }
  .value-feature-copy span { font-size: 10px; }
  .craft-list li { grid-template-columns: 38px 1fr; gap: 16px; padding: 24px 0; }
  .craft-list > li > span { font-size: 11px; }
  .craft-list h3 { font-size: 21px; }
  .craft-list p { font-size: 15px; line-height: 1.72; }

  .verify { grid-template-columns: 1fr; gap: 54px; padding: 88px 22px 96px; }
  .verify-copy > p:not(.eyebrow) { margin: 32px 0; font-size: 15px; line-height: 1.78; color: rgba(255,255,255,.8); }
  .verification-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 20px; }
  .verification-points span { gap: 8px; font-size: 10px; }
  .verification-points b { font-size: 10px; line-height: 1.45; }
  .verify-panel { padding: 30px 24px; min-height: 430px; box-shadow: 14px 14px 0 rgba(183,149,91,.12); }
  .archive-label { font-size: 9px; line-height: 1.5; }
  .verify-panel form { margin: 44px 0; }
  .verify-panel label { font-size: 10px; }
  .serial-field { grid-template-columns: 1fr; border-bottom: 0; }
  .serial-field input { min-height: 64px; padding: 12px 0 16px; border-bottom: 1px solid var(--forest-950); font-size: clamp(20px, 6.5vw, 26px); }
  .serial-field button { min-height: 56px; margin-top: 12px; padding-inline: 20px; font-size: 11px; }
  .form-hint, .form-error { font-size: 11px; line-height: 1.55; }
  .form-hint button { min-height: 44px; margin: -10px -8px -10px 0; padding: 10px 8px; }
  .verify-foot { font-size: 8px; line-height: 1.4; }

  .contact-strip { align-items: flex-start; flex-direction: column; gap: 24px; padding: 52px 22px; }
  .contact-strip p { max-width: 330px; font-size: clamp(28px, 8vw, 38px); line-height: 1.18; }
  .contact-strip a { min-height: 48px; padding: 10px 0; font-size: 11px; }

  footer { padding: 72px 22px calc(122px + env(safe-area-inset-bottom)); }
  .footer-brand { padding-bottom: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 34px 28px; padding: 44px 0 56px; }
  .footer-links div { gap: 0; }
  .footer-links div:last-child { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
  .footer-links div > span { margin-bottom: 8px; font-size: 10px; }
  .footer-links a, .footer-links p, .footer-links button { display: flex; align-items: center; min-height: 44px; font-size: 12px; line-height: 1.5; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-bottom { font-size: 10px; line-height: 1.55; }

  .modal-backdrop { place-items: stretch; padding: 0; overflow: hidden; backdrop-filter: blur(10px); }
  .modal-close { position: fixed; top: max(14px, env(safe-area-inset-top)); right: max(14px, env(safe-area-inset-right)); width: 48px; height: 48px; background: rgba(242,238,228,.94); box-shadow: 0 8px 24px rgba(0,0,0,.16); }
  .certificate-modal { display: block; width: 100%; height: 100svh; min-height: 0; overflow-y: auto; overscroll-behavior: contain; scroll-behavior: smooth; }
  .gallery--certificate { min-height: 0; grid-template-rows: minmax(400px, 58svh) 100px; }
  .gallery--certificate .gallery-stage { min-height: 0; }
  .gallery--certificate .gallery-counter { right: 80px; }
  .certificate-details { padding: 42px 24px max(38px, env(safe-area-inset-bottom)); }
  .certificate-top { margin-bottom: 34px; padding-right: 46px; }
  .certificate-details .eyebrow { margin-bottom: 22px; }
  .certificate-details h2 { font-size: clamp(40px, 12vw, 54px); }
  .certificate-collection { font-size: 11px; line-height: 1.55; }
  .certificate-details dl > div { grid-template-columns: 105px 1fr; min-height: 48px; align-items: center; }
  .certificate-details dt { font-size: 9px; }
  .certificate-details dd { font-size: 12px; line-height: 1.5; }
  .certificate-note { font-size: 13px; line-height: 1.72; }
  .certificate-provenance { grid-template-columns: 1fr; }
  .certificate-provenance .certificate-qr { grid-column: auto; }
  .certificate-provenance>div { min-height: 76px; }
  .certificate-provenance p { font-size: 10px; }
  .certificate-provenance p b { font-size: 10px; }
  .certificate-status { font-size: 9px; line-height: 1.45; }
  .signature--small { font-size: 22px; }
  .certificate-download { min-height: 58px; font-size: 11px; }
  .download-message { font-size: 10px; }
}

@media (max-width: 420px) {
  .hero-copy { top: clamp(124px, 17svh, 150px); }
  .hero-intro { max-width: 92%; }
  .hero-search p { max-width: 220px; }
  .manifesto-section { padding-inline: 20px; }
  .section-heading h2 em { margin-left: 12px; }
  .gallery--certificate { grid-template-rows: minmax(380px, 57svh) 100px; }
  .certificate-top { align-items: flex-start; flex-direction: column; gap: 12px; }
  .certificate-wordmark { padding: 0 0 9px; border-right: 0; border-bottom: 1px solid #c9c5bb; }
  .certificate-seal { position: absolute; top: 38px; right: 24px; margin: 0; }
  .certificate-details dl > div { grid-template-columns: 92px 1fr; gap: 14px; }
  .certificate-status { align-items: flex-start; flex-wrap: wrap; }
  .signature--small { width: 100%; margin: 8px 0 0 16px; }
}

@media (max-width: 350px) {
  .site-header { padding-inline: 16px; }
  .hero-copy { left: 18px; right: 18px; }
  .hero h1 { font-size: 54px; }
  .hero-intro { font-size: 13px; }
  .hero-search { left: 18px; right: 18px; }
  .hero-search p { max-width: 200px; font-size: 10px; }
  .section-shell, .master-copy, .artifact-copy, .verify { padding-left: 18px; padding-right: 18px; }
  .gallery-thumbs { grid-auto-columns: 84px; gap: 8px; }
  .gallery-thumb { height: 72px; }
  .verify-panel { padding-inline: 20px; }
  .footer-links { gap: 28px 18px; }
}

@media (orientation: landscape) and (max-height: 540px) and (max-width: 950px) {
  .site-header { height: calc(72px + env(safe-area-inset-top)); }
  .nav-links { top: calc(72px + env(safe-area-inset-top)); min-height: calc(100svh - 72px - env(safe-area-inset-top)); }
  .nav-links a { min-height: 54px; }
  .hero { min-height: 100svh; height: 100svh; }
  .hero-image { object-position: 58% 42%; }
  .hero::before { background: linear-gradient(90deg, rgba(4,18,14,.92) 0%, rgba(5,22,17,.68) 48%, rgba(5,22,17,.4)); }
  .hero-copy {
    top: calc(82px + env(safe-area-inset-top));
    bottom: 18px;
    left: max(34px, env(safe-area-inset-left));
    right: max(34px, env(safe-area-inset-right));
    max-width: none;
    display: grid;
    grid-template-columns: minmax(270px, .9fr) minmax(280px, 1fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    column-gap: clamp(28px, 6vw, 70px);
  }
  .hero h1 { grid-row: 1 / 3; align-self: center; font-size: clamp(48px, 7.4vw, 66px); }
  .hero h1 em { margin-left: 16px; }
  .hero-intro { align-self: end; max-width: 510px; margin: 0 0 14px; font-size: 13px; line-height: 1.55; }
  .hero-actions { align-self: start; flex-direction: row; align-items: center; margin: 0; }
  .hero-actions .button { min-height: 52px; }
  .hero-actions .text-link { display: none; }
  .hero-search { display: none; }
}

@media (orientation: landscape) and (max-height: 430px) and (max-width: 700px) {
  .hero-copy { grid-template-columns: minmax(220px, .85fr) minmax(240px, 1fr); column-gap: 24px; }
  .hero h1 { font-size: clamp(44px, 7.5vw, 52px); }
  .hero-intro { font-size: 12px; line-height: 1.48; }
  .hero-actions .button { min-height: 48px; padding-left: 20px; }
  .hero-actions .button span { width: 38px; height: 38px; }
}

/* ---------- Scroll-reveal for photography (A3) ---------- */
.reveal-fade { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal-fade.is-visible { opacity: 1; transform: none; }

/* ---------- Count-up stats (A2) ---------- */
.master-stats strong { font-variant-numeric: tabular-nums; }

/* ---------- Verify button loading state (A1) ---------- */
.serial-field button[aria-busy="true"] { opacity: .72; cursor: progress; }
.serial-field button .btn-spinner {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ---------- Magnetic buttons (A8) ---------- */
.button { will-change: transform; }

/* ---------- Page-load intro (A9) ---------- */
.intro-veil {
  position: fixed; z-index: 300; inset: 0; display: grid; place-items: center;
  background: var(--forest-950); color: var(--ivory);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), visibility .55s;
}
.intro-veil span {
  font-size: 15px; font-weight: 600; letter-spacing: -.02em; opacity: 0;
  animation: intro-in .6s cubic-bezier(.2,.7,.2,1) .1s forwards;
}
@keyframes intro-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.intro-veil.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- Scroll-down hint (A10) ---------- */
.scroll-hint {
  position: absolute; z-index: 5; left: 50%; bottom: 128px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.62); font-size: 8px; letter-spacing: .18em; text-transform: uppercase;
}
.scroll-hint i {
  width: 1px; height: 26px; background: currentColor; opacity: .6;
  position: relative; overflow: hidden;
}
.scroll-hint i::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: #fff; animation: scroll-hint-drip 1.8s ease-in-out infinite;
}
@keyframes scroll-hint-drip { 50% { top: 100%; } 100% { top: 100%; } }
@media (max-width: 800px) { .scroll-hint { display: none; } }

/* ---------- Craft process thumbnails (A11) ---------- */
.craft-list li { display: grid; grid-template-columns: 54px 64px 1fr; gap: 22px; align-items: start; }
.craft-list-thumb {
  grid-row: 1 / 2; width: 64px; height: 64px; border-radius: 3px; overflow: hidden;
  background: var(--forest-950);
}
.craft-list-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.05); }
@media (max-width: 800px) {
  .craft-list li { grid-template-columns: 38px 52px 1fr; gap: 14px; }
  .craft-list-thumb { width: 52px; height: 52px; }
}

/* ---------- Trust / press strip (A12) ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px;
  padding: 34px clamp(24px, 6vw, 110px); background: var(--forest-950); color: rgba(255,255,255,.56);
  font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-strip span { display: flex; align-items: center; gap: 14px; }
.trust-strip span + span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--brass); }
.trust-strip a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 3px; }
.trust-strip a:hover { color: var(--brass-light); }
@media (max-width: 800px) { .trust-strip { gap: 10px 22px; padding: 28px 22px; } .trust-strip span + span::before { display: none; } }

/* ---------- Product catalog ---------- */
.catalog-section { padding: 110px clamp(24px, 6vw, 110px) 90px; background: var(--paper); }
.catalog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.catalog-head h2 { margin: 0; font-size: clamp(40px, 4.4vw, 66px); line-height: .95; letter-spacing: -.05em; color: var(--forest-950); }
.catalog-head h2 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--forest-700); }
.catalog-count { font-size: 11px; color: #6d756f; letter-spacing: .04em; }

.catalog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.catalog-filter { font: inherit; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: #536159; cursor: pointer; transition: .2s ease; }
.catalog-filter:hover { border-color: var(--forest-700); color: var(--forest-950); }
.catalog-filter.is-active { background: var(--forest-950); border-color: var(--forest-950); color: white; }

/* Apple-style radius tokens, scoped to the catalog carousel components */
:root {
  --radius-card: 22px;
  --radius-control: 14px;
}

.catalog-carousel { position: relative; }
.catalog-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 12px;
  margin: -4px -4px 0;
}
.catalog-grid::-webkit-scrollbar { display: none; }

.catalog-arrow {
  position: absolute; top: 38%; z-index: 5; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--ivory); color: var(--forest-950);
  font-size: 19px; display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 10px 28px rgba(20,32,27,.14);
  transition: background .25s ease, color .25s ease, opacity .25s ease, transform .25s ease;
}
.catalog-arrow:hover { background: var(--forest-950); color: white; transform: translateY(-50%) scale(1.06); }
.catalog-arrow--prev { left: -22px; }
.catalog-arrow--next { right: -22px; }
.catalog-arrow[disabled] { opacity: 0; pointer-events: none; }

.product-card {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  display: block; background: var(--ivory); text-decoration: none; color: inherit;
  border-radius: var(--radius-card);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover { transform: translateY(-4px); }
.product-card-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--forest-950); border-radius: var(--radius-card); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge { position: absolute; top: 12px; left: 12px; padding: 6px 12px; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(7,27,22,.82); color: white; border-radius: 999px; }
.product-card-badge.tier-sold { background: rgba(90,74,42,.9); }
.product-card-body { padding: 16px 6px 4px; }
.product-card-category { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #8a7147; margin-bottom: 6px; }
.product-card-title { font-size: 14px; font-weight: 600; color: var(--forest-950); letter-spacing: -.01em; margin-bottom: 6px; }
.product-card-price { font-size: 12px; color: #536159; }
.product-card-price strong { color: var(--forest-700); font-weight: 600; }

.catalog-empty { padding: 60px 20px; text-align: center; color: #7e867f; font-size: 13px; }

/* ---------- Store page — full grid variant (non-carousel) ---------- */
.shop-page { padding-top: 106px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 0 22px; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: rgba(20, 32, 27, .5); }
.breadcrumb a { color: inherit; opacity: .85; transition: opacity .2s; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb-sep { opacity: .45; }
.breadcrumb-current { color: var(--forest-950); font-weight: 600; }
.breadcrumb--on-dark { color: rgba(255, 255, 255, .5); }
.breadcrumb--on-dark a { color: rgba(255, 255, 255, .8); }
.breadcrumb--on-dark a:hover { color: white; }
.breadcrumb--on-dark .breadcrumb-current { color: white; }

.shop-hero { padding: 90px clamp(24px, 6vw, 110px) 10px; background: var(--paper); }
.shop-hero .eyebrow { margin-bottom: 20px; }
.shop-hero h1 { margin: 0 0 18px; font-size: clamp(44px, 5.4vw, 80px); line-height: .95; letter-spacing: -.05em; color: var(--forest-950); }
.shop-hero h1 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--forest-700); }
.shop-hero p { max-width: 520px; margin: 0; font-size: 14px; line-height: 1.8; color: #5d6761; }
.shop-grid-section, .related-products { padding: 40px clamp(24px, 6vw, 110px) 120px; background: var(--paper); }

.faq-section { padding: 20px clamp(24px, 6vw, 110px) 120px; background: var(--paper); }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-card, 22px); padding: 22px 26px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 600; color: var(--forest-950); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon { flex-shrink: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--forest-950); color: white; font-size: 16px; font-weight: 400; transition: transform .3s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.8; color: #5d6761; }
@media (max-width: 800px) {
  .faq-section { padding: 10px 18px 80px; }
  .faq-item { padding: 18px 20px; border-radius: 16px; }
  .faq-item summary { font-size: 14px; }
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px 22px;
}
.shop-grid .product-card { width: auto; }
.shop-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.shop-pagination a {
  display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 6px;
  border-radius: 999px; border: 1px solid var(--line); font-size: 12px; font-weight: 600;
  color: var(--forest-950); background: var(--ivory); transition: .2s ease;
}
.shop-pagination a:hover { border-color: var(--forest-700); }
.shop-pagination a.is-active { background: var(--forest-950); border-color: var(--forest-950); color: white; }

@media (max-width: 800px) {
  .shop-hero { padding: 70px 22px 6px; }
  .shop-grid-section { padding: 30px 22px 80px; }
  .shop-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px 14px; }
}

@media (max-width: 800px) {
  .catalog-section { padding: 80px 22px 60px; }
  .catalog-grid { gap: 14px; }
  .product-card { width: 168px; }
  .catalog-head { margin-bottom: 26px; }
  .catalog-arrow { width: 42px; height: 42px; font-size: 16px; }
  .catalog-arrow--prev { left: 6px; }
  .catalog-arrow--next { right: 6px; }
}

/* ---------- "Kendi Tesbihini Ürettir" — Apple-style rounded CTA + configurator ---------- */
.commission-cta {
  margin: 90px clamp(24px, 6vw, 110px) 90px;
  padding: clamp(48px, 6vw, 76px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-950));
  color: white;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  box-shadow: 0 30px 70px rgba(7,27,22,.28);
}
.commission-cta-text h2 { margin: 0 0 12px; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -.03em; line-height: 1.1; }
.commission-cta-text h2 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--brass-light); }
.commission-cta-text p { margin: 0; max-width: 46ch; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.72); }
.commission-cta-btn {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px; border-radius: 999px; background: white; color: var(--forest-950);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.commission-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.25); }
@media (max-width: 800px) {
  .commission-cta { margin: 60px 22px 60px; padding: 40px 26px; border-radius: 26px; flex-direction: column; align-items: flex-start; text-align: left; }
}

.commission-page { max-width: 720px; margin: 0 auto; padding: 150px 24px 100px; }
.commission-page .eyebrow { justify-content: center; }
.commission-header { text-align: center; margin-bottom: 56px; }
.commission-header h1 { margin: 12px 0 16px; font-size: clamp(34px, 5vw, 54px); letter-spacing: -.03em; color: var(--forest-950); }
.commission-header h1 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--forest-700); }
.commission-header p { max-width: 52ch; margin: 0 auto; font-size: 14px; line-height: 1.75; color: #5d6761; }

.option-group { margin-bottom: 44px; }
.option-group-label { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-950); }
.option-group-label span { font-size: 10px; font-weight: 400; letter-spacing: .02em; text-transform: none; color: #9a9f98; }
.option-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.option-card label {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 64px; padding: 14px 16px; border-radius: 18px; border: 1.5px solid var(--line);
  background: white; font-size: 13px; font-weight: 500; color: var(--forest-950); cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.option-card label:hover { border-color: var(--brass); transform: translateY(-2px); }
.option-card input:checked + label { border-color: var(--forest-950); background: var(--forest-950); color: white; box-shadow: 0 10px 24px rgba(7,27,22,.18); }
.option-card input:focus-visible + label { outline: 2px solid var(--brass); outline-offset: 2px; }

.commission-field { margin-bottom: 22px; }
.commission-field label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--forest-950); }
.commission-field input, .commission-field textarea {
  width: 100%; padding: 14px 18px; border-radius: 16px; border: 1.5px solid var(--line);
  background: white; font: inherit; font-size: 14px; color: var(--forest-950); resize: vertical;
  transition: border-color .2s ease;
}
.commission-field input:focus, .commission-field textarea:focus { outline: none; border-color: var(--forest-950); }
.commission-field input:focus-visible, .commission-field textarea:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.commission-submit {
  width: 100%; padding: 18px; border: 0; border-radius: 999px;
  background: var(--forest-950); color: white; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.commission-submit:hover { background: var(--forest-700); }
.commission-submit:disabled { opacity: .6; cursor: default; }
.commission-result { margin-top: 20px; padding: 18px 22px; border-radius: 18px; font-size: 13px; text-align: center; display: none; }
.commission-result.is-success { display: block; background: rgba(60,134,104,.12); color: var(--forest-700); }
.commission-result.is-error { display: block; background: rgba(155,60,45,.1); color: #9b3c2d; }

@media (max-width: 600px) {
  .commission-page { padding: 120px 20px 80px; }
  .option-cards { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

/* ---------- Commission wizard (step-by-step) ---------- */
.wizard-progress { margin-bottom: 48px; }
.wizard-progress-bar { position: relative; height: 3px; background: var(--line); border-radius: 999px; margin-bottom: 16px; overflow: hidden; }
.wizard-progress-bar span { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--forest-950); border-radius: 999px; transition: width .4s cubic-bezier(.4,0,.2,1); }
.wizard-progress-steps { display: flex; justify-content: space-between; gap: 6px; margin: 0; padding: 0; list-style: none; }
.wizard-progress-steps li { flex: 1; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-align: center; color: #b3b8b0; transition: color .25s ease; }
.wizard-progress-steps li.is-active { color: var(--forest-950); }
.wizard-progress-steps li.is-done { color: var(--brass); }

.wizard-step { display: none; animation: wizard-step-in .35s cubic-bezier(.2,.7,.2,1); }
.wizard-step.is-active { display: block; }
.wizard-step.has-error .option-cards { animation: wizard-shake .35s; }
@keyframes wizard-step-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes wizard-shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }

.wizard-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.wizard-nav--first { justify-content: flex-end; }
.wizard-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border: 0; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.wizard-btn--next { background: var(--forest-950); color: white; margin-left: auto; }
.wizard-btn--next:hover { background: var(--forest-700); transform: translateY(-1px); }
.wizard-btn--back { background: transparent; color: #6b736e; padding-left: 4px; }
.wizard-btn--back:hover { color: var(--forest-950); }
.wizard-step[data-step="5"] .wizard-nav { margin-top: 32px; }
.wizard-step[data-step="5"] .commission-submit { width: auto; flex: 1; }

.wizard-summary { display: flex; flex-direction: column; gap: 2px; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--line); }
.wizard-summary-row { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: white; border-bottom: 1px solid var(--line); }
.wizard-summary-row:last-child { border-bottom: 0; }
.wizard-summary-label { flex: 0 0 110px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9a9f98; }
.wizard-summary-value { flex: 1; font-size: 14px; font-weight: 500; color: var(--forest-950); word-break: break-word; }
.wizard-summary-edit { flex: 0 0 auto; border: 0; background: transparent; padding: 4px 0; font-size: 11px; font-weight: 600; text-decoration: underline; color: var(--brass); cursor: pointer; }
.wizard-summary-edit:hover { color: var(--forest-950); }

@media (max-width: 600px) {
  .wizard-progress-steps li { font-size: 0; }
  .wizard-progress-steps li::before { content: attr(data-step); display: inline-block; font-size: 10px; }
  .wizard-summary-row { flex-wrap: wrap; padding: 14px 16px; }
  .wizard-summary-label { flex-basis: 100%; }
  .wizard-summary-edit { margin-left: auto; }
}

/* ---------- Blog & Hakkımızda (editorial reading pages) ---------- */
.content-page { max-width: 760px; margin: 0 auto; padding: 150px 24px 110px; }
.content-page .eyebrow { justify-content: center; }
.content-header { text-align: center; margin-bottom: 60px; }
.content-header h1 { margin: 12px 0 0; font-size: clamp(36px, 5.4vw, 58px); letter-spacing: -.03em; line-height: 1.05; color: var(--forest-950); }
.content-header h1 em { font-family: var(--editorial); font-style: italic; font-weight: 400; color: var(--forest-700); }
.content-header p { max-width: 56ch; margin: 18px auto 0; font-size: 14px; line-height: 1.8; color: #5d6761; }

.blog-list { display: flex; flex-direction: column; gap: 2px; }
.blog-card { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); text-decoration: none; color: inherit; }
.blog-list .blog-card:last-child { border-bottom: 1px solid var(--line); }
.blog-card-image { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; background: var(--forest-950); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-date { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #8a7147; margin-bottom: 8px; }
.blog-card-title { font-size: 20px; font-weight: 600; letter-spacing: -.02em; color: var(--forest-950); margin-bottom: 8px; }
.blog-card-excerpt { font-size: 13px; line-height: 1.7; color: #5d6761; }
.blog-empty { text-align: center; padding: 60px 20px; color: #7e867f; font-size: 14px; }

.article-cover { aspect-ratio: 21/9; border-radius: 20px; overflow: hidden; margin-bottom: 40px; background: var(--forest-950); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #8a7147; text-align: center; margin-bottom: 14px; }
.article-body { font-family: var(--editorial); font-size: 18px; line-height: 1.85; color: #303b34; }
.article-body p { margin: 0 0 28px; }
.article-back { display: inline-flex; align-items: center; gap: 10px; margin-top: 48px; padding-bottom: 6px; border-bottom: 1px solid var(--forest-700); font-family: var(--font-poppins); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-800); }

@media (max-width: 700px) {
  .content-page { padding: 120px 20px 80px; }
  .blog-card { grid-template-columns: 1fr; gap: 14px; }
  .article-body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .intro-veil { display: none; }
}
