/* ============================================================
   ahsaptanev.com — dinamik bahçe-ahşap markası
   Palet: koyu orman yeşili · ceviz · krem · beyaz · altın-tan
   Fontlar: Fraunces (display) · Plus Jakarta Sans (body)
   ============================================================ */

:root {
  /* surfaces */
  --paper: #FBFAF5;
  --cream: #F2ECDF;
  --cream-2: #E9E0CC;
  --surface: #FFFFFF;

  /* greens */
  --green: #1C4634;
  --green-700: #143527;
  --green-900: #0E261C;
  --green-600: #245C44;
  --green-bright: #2E7D57;
  --green-wash: #EAF1ED;

  /* walnut + gold */
  --walnut: #6B4A2E;
  --walnut-mid: #946239;
  --tan: #C99B63;
  --tan-light: #E4CCA3;

  /* ink */
  --ink: #1B2A22;
  --muted: #5E6B62;
  --faint: #8B968D;
  --cream-ink: #EFE7D6;

  /* lines / shadows */
  --line: rgba(28, 70, 52, 0.12);
  --line-2: rgba(28, 70, 52, 0.22);
  --shadow-sm: 0 8px 20px -14px rgba(20, 53, 39, 0.30);
  --shadow-md: 0 24px 50px -32px rgba(20, 53, 39, 0.40);
  --shadow-lg: 0 50px 90px -50px rgba(14, 38, 28, 0.55);

  --display: var(--font-display), "Fraunces", Georgia, serif;
  --body: var(--font-body), system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper); color: var(--ink); font-family: var(--body);
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
main { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; border-radius: 2px; }

/* ---------- primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section.sec-cream { background: var(--cream); }
.section.sec-paper { background: var(--paper); }

.eyebrow {
  font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: var(--green-600); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--tan); border-radius: 2px; }
.eyebrow.light { color: var(--tan-light); }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--display); font-weight: 600; font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02; letter-spacing: -0.025em; margin-top: 18px; color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--green); }
.section-sub { margin-top: 18px; color: var(--muted); font-size: 18px; max-width: 58ch; }
.tag { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); font-weight: 600; }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px; overflow: hidden;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em; padding: 14px 24px; border-radius: 11px;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
}
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--green); color: #F4F8F5; box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: var(--green-bright); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--green-wash); border-color: var(--green); }
.btn-wa { background: var(--walnut); color: #FBF6EF; box-shadow: var(--shadow-sm); }
.btn-wa:hover { background: var(--walnut-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-cream { background: var(--cream-ink); color: var(--green-900); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(239,231,214,.4); color: var(--cream-ink); }
.btn-outline-light:hover { background: rgba(239,231,214,.1); border-color: var(--cream-ink); }

/* ============================================================
   HEADER
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 60; }

/* top utility bar (collapses on scroll) */
.topbar { background: var(--green-900); overflow: hidden; max-height: 52px; transition: max-height .35s ease, opacity .3s ease; }
.nav[data-scrolled="true"] .topbar { max-height: 0; opacity: 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 9px; font-size: 13px; }
.topbar-item { display: inline-flex; align-items: center; gap: 9px; color: rgba(239,231,214,.7); }
.topbar-item .star { color: var(--tan); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: var(--cream-ink); font-weight: 500; transition: color .18s; }
.topbar-right a:hover { color: var(--tan); }
.topbar-sep { color: rgba(239,231,214,.28); }

/* main bar */
.navbar { position: relative; background: color-mix(in srgb, var(--paper) 86%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.nav[data-scrolled="true"] .navbar { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(20,53,39,.55); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(150deg, var(--green-600), var(--green) 55%, var(--walnut)); color: var(--tan-light); display: grid; place-items: center; box-shadow: var(--shadow-sm); flex-shrink: 0; transition: transform .25s ease; }
.brand:hover .brand-logo { transform: rotate(-6deg); }
.brand-logo svg { width: 23px; height: 23px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--green); }
.brand-mark span { color: var(--tan); }
.brand-sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; padding-block: 8px; display: inline-flex; align-items: center; gap: 6px; background: none; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 0; background: var(--tan); border-radius: 2px; transition: width .25s ease; }
.nav-link:hover::after, .nav-link[data-active="true"]::after { width: 100%; }
.nav-link .caret { font-size: 9px; transition: transform .25s ease; opacity: .6; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--green); white-space: nowrap; padding-left: 20px; margin-left: 4px; border-left: 1px solid var(--line-2); transition: color .18s ease; }
.nav-phone:hover { color: var(--green-bright); }
.nav-phone svg { width: 16px; height: 16px; }

/* search */
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-search-btn { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: var(--green); border: 1px solid var(--line-2); background: transparent; transition: background .18s, border-color .18s; flex-shrink: 0; }
.nav-search-btn:hover { background: var(--green-wash); border-color: var(--green); }
.nav-search-btn svg { width: 19px; height: 19px; }

.search-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(14,38,28,.5); backdrop-filter: blur(4px); display: flex; justify-content: center; align-items: flex-start; padding: clamp(14px, 8vh, 90px) 16px 16px; animation: ovFade .2s ease; }
.search-panel { width: min(640px, 100%); background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; animation: ovPanel .24s cubic-bezier(.2,.7,.2,1); }
.search-input-row { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.sir-ic { color: var(--green); display: grid; } .sir-ic svg { width: 22px; height: 22px; }
.search-input-row input { flex: 1; min-width: 0; border: none; outline: none; font: inherit; font-size: 18px; background: transparent; color: var(--ink); }
.search-input-row input::placeholder { color: var(--faint); }
.search-close { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; color: var(--muted); transition: background .15s, color .15s; flex-shrink: 0; }
.search-close:hover { background: var(--cream); color: var(--ink); }
.search-close svg { width: 18px; height: 18px; }
.search-results { max-height: min(60vh, 460px); overflow-y: auto; padding: 8px; }
.search-hint, .search-empty { padding: 22px 14px; color: var(--muted); font-size: 15px; }
.search-empty b { color: var(--ink); }
.search-result { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-radius: 12px; transition: background .12s ease; }
.search-result[data-active="true"] { background: var(--green-wash); }
.sr-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--cream); color: var(--walnut); display: grid; place-items: center; flex-shrink: 0; }
.sr-ic svg { width: 25px; height: 25px; }
.sr-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sr-name { font-weight: 600; font-size: 15px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-cat { font-size: 12.5px; color: var(--walnut); }
.sr-code { font-size: 12px; color: var(--faint); font-weight: 600; flex-shrink: 0; }
@keyframes ovFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ovPanel { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }

/* categories dropdown */
.nav-drop { position: relative; }
.nav-drop:hover .caret, .nav-drop:focus-within .caret { transform: rotate(180deg); }
.nav-panel {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: 680px; max-width: 86vw; background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 16px; z-index: 70;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease;
}
.nav-panel::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-drop:hover .nav-panel, .nav-drop:focus-within .nav-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.np-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 11px; transition: background .15s ease; }
.np-item:hover { background: var(--green-wash); }
.np-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--cream); color: var(--walnut); display: grid; place-items: center; flex-shrink: 0; transition: background .18s, color .18s; }
.np-ic svg { width: 21px; height: 21px; }
.np-item:hover .np-ic { background: var(--green); color: #fff; }
.np-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.np-foot { grid-column: 1 / -1; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.np-foot .np-all { font-size: 14px; font-weight: 600; color: var(--green); display: inline-flex; gap: 6px; align-items: center; }
.np-foot .np-hint { font-size: 13px; color: var(--faint); }
.nav-toggle { display: none; }

/* ============================================================
   HERO (dark, dramatic)
   ============================================================ */
.hero {
  position: relative; overflow: hidden; color: var(--cream-ink);
  background:
    radial-gradient(90% 120% at 88% 8%, rgba(150, 98, 57, 0.42) 0%, transparent 52%),
    radial-gradient(70% 90% at 10% 100%, rgba(46, 125, 87, 0.30) 0%, transparent 55%),
    var(--green-900);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 46px);
}

/* admin-set background photos / videos (one or more, crossfading) */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
}
.hero-bg-slide[data-active="true"] { opacity: 1; }
.hero-bg-slide video, .hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background-size: cover; background-position: center;
}
.hero-bg-img { transform: scale(1.04); animation: heroKen 18s ease-in-out infinite alternate; }
@keyframes heroKen { from { transform: scale(1.04); } to { transform: scale(1.12) translateY(-1.5%); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(98deg, rgba(14,38,28,.94) 0%, rgba(14,38,28,.78) 38%, rgba(14,38,28,.42) 72%, rgba(14,38,28,.30) 100%),
    linear-gradient(0deg, rgba(14,38,28,.82) 0%, rgba(14,38,28,0) 46%);
}
.hero-has-media::before { display: none; }
.hero-has-media .hero-inner, .hero-has-media .hero-marquee { position: relative; z-index: 2; }
.hero-dots {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: clamp(84px, 11vh, 120px);
  display: flex; justify-content: center; gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 99px; padding: 0; cursor: pointer;
  border: 1px solid rgba(239,231,214,.6); background: transparent; transition: background .25s, width .25s, border-color .25s;
}
.hero-dot[data-active="true"] { width: 26px; background: var(--tan); border-color: var(--tan); }
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { transition: none; }
  .hero-bg-img { animation: none; }
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(40px, 6vw, 70px); }
.hero h1 {
  font-family: var(--display); font-weight: 500; color: #fff;
  font-size: clamp(44px, 6.6vw, 86px); line-height: 0.99; letter-spacing: -0.035em; margin-top: 22px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--tan); }
.hero h1 .wood { color: var(--tan-light); }
.hero-lead { margin-top: 24px; font-size: clamp(17px, 1.7vw, 20px); color: rgba(239,231,214,.78); max-width: 46ch; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 44px; display: flex; gap: clamp(22px, 4vw, 50px); flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(239,231,214,.16); }
.hero-meta .stat-n { font-family: var(--display); font-weight: 600; font-size: 34px; color: var(--tan); letter-spacing: -0.02em; }
.hero-meta .stat-l { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(239,231,214,.6); margin-top: 4px; }

/* hero collage of floating tiles */
.hero-collage { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.htile {
  background: rgba(255,255,255,.05); border: 1px solid rgba(239,231,214,.14); border-radius: 18px;
  padding: 22px; backdrop-filter: blur(4px); display: flex; flex-direction: column; gap: 14px;
  min-height: 150px; min-width: 0; justify-content: space-between; transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.htile span { overflow-wrap: anywhere; }
.htile:hover { background: rgba(255,255,255,.1); border-color: rgba(201,155,99,.5); transform: translateY(-6px); }
.htile .htile-ic { width: 44px; height: 44px; color: var(--tan-light); }
.htile .htile-ic svg { width: 100%; height: 100%; }
.htile span { font-family: var(--display); font-weight: 500; font-size: 18px; color: #fff; }
.hspec {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--tan); color: var(--green-900); border-radius: 14px; padding: 14px 20px; font-weight: 600; font-size: 14px;
}
.hspec .hspec-dim { font-family: var(--display); font-style: italic; }

/* hero marquee */
.hero-marquee { position: relative; border-top: 1px solid rgba(239,231,214,.14); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; padding-block: 20px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; }
.marquee-item { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 3vw, 34px); color: rgba(239,231,214,.5); display: inline-flex; align-items: center; gap: 38px; white-space: nowrap; transition: color .2s; }
.marquee-item:hover { color: var(--tan); }
.marquee-dot { color: var(--tan); font-size: 14px; }
.marquee.dark .marquee-item { color: var(--green); }
.marquee.dark .marquee-item:hover { color: var(--walnut); }
.marquee.dark .marquee-dot { color: var(--tan); }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 38s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}

/* ============================================================
   CATEGORIES (bento)
   ============================================================ */
.catx-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.catx-card {
  position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px; min-height: 168px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.catx-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 40%, var(--green-wash)); opacity: 0; transition: opacity .3s ease; }
.catx-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green); }
.catx-card:hover::after { opacity: 1; }
.catx-card > * { position: relative; z-index: 1; }
.catx-card.big { grid-column: span 2; grid-row: span 2; justify-content: space-between; background: var(--green); border-color: var(--green); color: var(--cream-ink); }
.catx-card.big h3, .catx-card.big .catx-count { color: #fff; }
.catx-card.big .catx-ic { width: 64px; height: 64px; background: rgba(255,255,255,.1); color: var(--tan-light); }
.catx-card.big .catx-tag { color: var(--tan-light); }
.catx-card.big::after { display: none; }
.catx-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--green-wash); color: var(--green); transition: background .3s, color .3s, transform .3s; }
.catx-ic svg { width: 30px; height: 30px; }
.catx-card:hover .catx-ic { transform: rotate(-6deg) scale(1.06); }
.catx-card:not(.big):hover .catx-ic { background: var(--green); color: #fff; }
.catx-tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--tan); }
.catx-card h3 { font-family: var(--display); font-weight: 500; font-size: 20px; line-height: 1.12; letter-spacing: -0.01em; margin-top: auto; }
.catx-card.big h3 { font-size: clamp(26px, 3vw, 38px); }
.catx-count { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); font-weight: 500; }
.catx-card.big .catx-count { color: rgba(239,231,214,.8); }
.catx-count .arrow { color: var(--green); transition: transform .25s; }
.catx-card.big .catx-count .arrow { color: var(--tan-light); }
.catx-card:hover .catx-count .arrow { transform: translateX(5px); }

/* ============================================================
   FEATURED (bento product cards)
   ============================================================ */
.featx-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.plate {
  position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--surface);
  border: 1px solid var(--line); border-radius: 18px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.plate:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green); }
.plate-fig {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; display: grid; place-items: center; padding: 26px;
  background: linear-gradient(150deg, #FFFFFF 0%, var(--cream) 120%);
  border-bottom: 1px solid var(--line);
}
.plate-fig .plate-ic { color: var(--walnut); opacity: .5; display: block; width: 78px; transition: transform .4s ease, opacity .35s ease; }
.plate-fig .plate-ic svg { width: 100%; height: auto; }
.plate:hover .plate-fig .plate-ic { transform: scale(1.12) rotate(-3deg); opacity: .82; color: var(--green); }
.plate-fig .plate-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plate:hover .plate-fig .plate-photo { transform: scale(1.06); }
.plate-fig .code-chip { position: absolute; top: 14px; left: 14px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; background: var(--green); color: #F0F6F2; padding: 5px 10px; border-radius: 7px; }
.plate-fig .dim-chip { position: absolute; bottom: 14px; right: 14px; font-size: 11px; font-weight: 500; color: var(--muted); background: rgba(255,255,255,.85); padding: 4px 9px; border-radius: 7px; backdrop-filter: blur(4px); }
.plate-body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plate-body h3 { font-family: var(--display); font-weight: 500; font-size: 20px; line-height: 1.15; letter-spacing: -0.01em; }
.plate-cat { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--walnut); font-weight: 600; }
.plate-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.plate-price { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.plate-price[data-quote="true"] { font-family: var(--body); font-size: 13px; font-weight: 600; color: var(--walnut); letter-spacing: 0; }
.plate-foot .detay { font-size: 13px; font-weight: 600; color: var(--green); display: inline-flex; gap: 6px; align-items: center; }
.plate-foot .detay .arrow { transition: transform .22s ease; }
.plate:hover .plate-foot .detay .arrow { transform: translateX(4px); }

/* ============================================================
   CRAFT SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-visual {
  position: relative; aspect-ratio: 1 / 1; border-radius: 26px; overflow: hidden;
  background: radial-gradient(120% 120% at 20% 10%, var(--walnut-mid), var(--walnut) 55%, var(--green-700));
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.split-visual .sv-ic { width: 46%; color: var(--cream-ink); }
.split-visual .sv-ic svg { width: 100%; height: auto; }
.split-visual .sv-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: no-preference) { .split-visual .sv-ic { animation: floaty 6s ease-in-out infinite; } }
.split-list { margin-top: 28px; display: grid; gap: 4px; }
.split-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.split-list li .n { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--tan); }
.split-list li h4 { font-weight: 600; font-size: 17px; }
.split-list li p { color: var(--muted); font-size: 15px; margin-top: 2px; }

/* ============================================================
   PROCESS BAND
   ============================================================ */
.band { background: var(--green); color: var(--cream-ink); position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, transparent 1px 46px); }
.band .container { position: relative; }
.band .eyebrow { color: var(--tan-light); } .band .eyebrow::before { background: var(--tan); }
.band .section-title { color: #fff; } .band .section-title em { color: var(--tan); }
.band-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.band-points { display: grid; gap: 2px; }
.band-points li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-top: 1px solid rgba(239,231,214,.16); }
.band-points .bp-n { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--tan); flex-shrink: 0; }
.band-points h4 { font-weight: 600; font-size: 18px; color: #fff; }
.band-points p { color: rgba(239,231,214,.72); font-size: 15px; margin-top: 2px; }

/* ============================================================
   CTA block
   ============================================================ */
.cta-x { position: relative; overflow: hidden; border-radius: 28px; padding: clamp(40px, 6vw, 76px); text-align: center; color: var(--cream-ink);
  background: radial-gradient(80% 140% at 50% -20%, var(--walnut-mid) 0%, transparent 55%), var(--green); box-shadow: var(--shadow-lg); }
.cta-x h2 { font-family: var(--display); font-weight: 500; color: #fff; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.04; letter-spacing: -0.025em; max-width: 18ch; margin-inline: auto; }
.cta-x h2 em { font-style: italic; color: var(--tan); }
.cta-x p { margin: 18px auto 0; color: rgba(239,231,214,.78); max-width: 52ch; }
.cta-x .hero-actions { justify-content: center; margin-top: 30px; }

/* ============================================================
   DIMENSION FRAME (product detail signature)
   ============================================================ */
.dimframe { position: relative; padding: 30px 42px 30px 8px; }
.dimframe .draw { position: relative; z-index: 1; color: var(--green); }
.dimframe .draw > span { display: block; }
.dimframe .draw svg { width: 100%; height: auto; }
.hero-ic { display: block; color: var(--walnut); padding: 6px; }
.hero-ic svg { width: 100%; height: auto; }
.dim-w { position: absolute; top: 6px; left: 8px; right: 42px; height: 14px; display: flex; align-items: center; }
.dim-w .bar { flex: 1; height: 1px; background: var(--line-2); position: relative; }
.dim-w .bar::before, .dim-w .bar::after { content: ""; position: absolute; top: -4px; width: 1px; height: 9px; background: var(--line-2); }
.dim-w .bar::before { left: 0; } .dim-w .bar::after { right: 0; }
.dim-label { font-size: 11px; font-weight: 600; color: var(--green-600); background: var(--surface); padding: 0 8px; white-space: nowrap; }
.dim-h { position: absolute; top: 30px; bottom: 30px; right: 8px; width: 14px; display: flex; flex-direction: column; align-items: center; }
.dim-h .bar { width: 1px; flex: 1; background: var(--line-2); position: relative; }
.dim-h .bar::before, .dim-h .bar::after { content: ""; position: absolute; left: -4px; height: 1px; width: 9px; background: var(--line-2); }
.dim-h .bar::before { top: 0; } .dim-h .bar::after { bottom: 0; }
.dim-h .dim-label { writing-mode: vertical-rl; transform: rotate(180deg); padding: 8px 0; }

/* ============================================================
   PAGE HEADER (catalog / contact)
   ============================================================ */
.page-head { background: radial-gradient(90% 140% at 85% -10%, rgba(150,98,57,.4), transparent 55%), var(--green-900); color: var(--cream-ink); padding-block: clamp(48px, 7vw, 92px); position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, transparent 1px 46px); }
.page-head .container { position: relative; }
.page-head .eyebrow { color: var(--tan-light); }
.page-head h1 { font-family: var(--display); font-weight: 500; color: #fff; font-size: clamp(34px, 5vw, 62px); line-height: 1.02; letter-spacing: -0.025em; margin-top: 18px; }
.page-head h1 em { font-style: italic; color: var(--tan); }
.page-head p { margin-top: 16px; color: rgba(239,231,214,.78); font-size: 18px; max-width: 60ch; }

/* ============================================================
   CATALOG — sidebar filter + grid
   ============================================================ */
.catalog-layout { display: grid; grid-template-columns: 256px minmax(0, 1fr); gap: clamp(28px, 4vw, 52px); align-items: start; }
.cat-filter { position: sticky; top: 96px; max-height: calc(100vh - 116px); overflow-y: auto; overscroll-behavior: contain; padding-right: 6px; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.cat-filter::-webkit-scrollbar { width: 8px; }
.cat-filter::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
.cat-filter::-webkit-scrollbar-track { background: transparent; }
.cat-filter-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--green-600); padding-left: 13px; }
.cat-filter-nav { display: grid; gap: 3px; margin-top: 14px; }
.cat-filter-item { display: flex; align-items: center; gap: 11px; padding: 10px 13px; border-radius: 12px; color: var(--muted); font-weight: 500; font-size: 14.5px; transition: background .18s ease, color .18s ease; }
.cat-filter-item:hover { background: var(--green-wash); color: var(--green); }
.cat-filter-item[data-active="true"] { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.cfi-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--cream); color: var(--walnut); display: grid; place-items: center; flex-shrink: 0; transition: background .18s, color .18s; }
.cfi-ic svg { width: 18px; height: 18px; }
.cat-filter-item:hover .cfi-ic { background: #fff; color: var(--green); }
.cat-filter-item[data-active="true"] .cfi-ic { background: rgba(255,255,255,.16); color: #fff; }
.cfi-name { flex: 1; }
.cfi-n { font-size: 12.5px; font-weight: 600; opacity: .6; }
.cat-filter-item[data-active="true"] .cfi-n { opacity: .85; }

.catalog-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.catalog-bar .cb-count { font-size: 14.5px; color: var(--muted); }
.catalog-bar .cb-count b { color: var(--ink); font-weight: 600; }

.catalog-main { min-width: 0; }
.prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.catalog-main .prod-grid { grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); }

@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .cat-filter { position: static; max-height: none; overflow: visible; padding-right: 0; }
  .cat-filter-label { display: none; }
  .cat-filter-nav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; gap: 8px; margin-top: 0; padding-bottom: 8px; }
  .cat-filter-item { white-space: nowrap; padding: 9px 15px; border: 1px solid var(--line-2); border-radius: 99px; }
  .cat-filter-item[data-active="true"] { border-color: var(--green); }
  .cfi-ic { display: none; }
  .catalog-main .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  /* keep two columns on phones so the catalog stays scannable; tighten the cards */
  .catalog-main .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .catalog-main .plate-body { padding: 13px 13px 15px; gap: 6px; }
  .catalog-main .plate-body h3 { font-size: 16px; line-height: 1.2; overflow-wrap: anywhere; }
  .catalog-main .plate-cat { font-size: 10px; }
  .catalog-main .plate-foot { flex-wrap: wrap; gap: 6px 10px; padding-top: 11px; }
  .catalog-main .plate-fig { padding: 16px; }
  .catalog-main .plate-fig .code-chip { top: 10px; left: 10px; }
  .catalog-main .plate-fig .dim-chip { display: none; }
}
@media (max-width: 380px) {
  .catalog-main .prod-grid { grid-template-columns: 1fr; }
  .catalog-main .plate-fig .dim-chip { display: block; }
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pd-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.pd-fig { position: sticky; top: 98px; background: linear-gradient(150deg, #fff, var(--cream)); border: 1px solid var(--line); border-radius: 22px; padding: clamp(30px, 4vw, 54px); box-shadow: var(--shadow-sm); }
.pd-crumb { font-size: 13px; color: var(--muted); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.pd-crumb a:hover { color: var(--green); }
.pd-code { font-size: 13px; letter-spacing: 0.1em; color: var(--walnut); text-transform: uppercase; font-weight: 600; }
.pd-title { font-family: var(--display); font-weight: 500; font-size: clamp(32px, 4.6vw, 52px); line-height: 1.02; letter-spacing: -0.025em; margin-top: 12px; }
.pd-lead { margin-top: 20px; color: var(--muted); font-size: 18px; }
.pd-price { margin-top: 22px; display: flex; align-items: baseline; gap: 12px; font-family: var(--display); font-weight: 600; font-size: clamp(28px, 4vw, 36px); color: var(--green); letter-spacing: -0.02em; }
.pd-price-vat { font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.pd-price[data-quote="true"] { font-family: var(--body); font-size: 16px; font-weight: 600; color: var(--walnut); letter-spacing: 0; }
.spec-table { margin-top: 30px; border-top: 1px solid var(--line-2); }
.spec-row { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.spec-row dd { font-size: 16px; }
.pd-feats { margin-top: 30px; display: grid; gap: 12px; }
.pd-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.pd-feats li::before { content: "✦"; color: var(--tan); font-size: 13px; padding-top: 3px; }
.pd-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.pd-note { margin-top: 18px; font-size: 13px; color: var(--faint); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 26px; align-items: start; }
.contact-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { font: inherit; font-size: 16px; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line-2); border-radius: 12px; color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--surface); box-shadow: 0 0 0 3px var(--green-wash); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-aside { background: radial-gradient(120% 100% at 100% 0%, var(--green-600), var(--green) 60%); color: var(--cream-ink); border-radius: 20px; padding: clamp(26px, 4vw, 38px); position: sticky; top: 98px; box-shadow: var(--shadow-md); }
.contact-aside h3 { font-family: var(--display); font-weight: 500; font-size: 24px; color: #fff; }
.contact-aside .aside-lead { color: rgba(239,231,214,.8); font-size: 15px; margin-top: 10px; }
.contact-row { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-bottom: 1px solid rgba(239,231,214,.16); }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tan-light); font-weight: 600; }
.contact-row .v, .contact-row a { font-size: 16px; color: #fff; }
.contact-row a:hover { color: var(--tan-light); }
.contact-aside .pd-note { color: rgba(239,231,214,.6); }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.loc-card { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; transition: border-color .25s, box-shadow .25s, transform .25s; }
.loc-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.loc-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.loc-ic svg { width: 22px; height: 22px; }
.loc-label { font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--walnut); }
.loc-card p { margin-top: 6px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.map-card { margin-top: 18px; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--cream); }
.map-card iframe { filter: saturate(.92); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; overflow: hidden; background: var(--green-900); color: rgba(239,231,214,.78); padding-top: 74px; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--tan), transparent); }
.footer-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(55% 75% at 88% 0%, rgba(150,98,57,.28), transparent 60%); }
.footer .container { position: relative; z-index: 2; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.35fr 1.7fr 1fr; gap: clamp(32px, 5vw, 56px); padding-bottom: 50px; }
.footer .brand-mark { color: #fff; font-size: 34px; } .footer .brand-mark span { color: var(--tan); }
.footer-tagline { margin-top: 16px; max-width: 34ch; font-size: 15px; color: rgba(239,231,214,.6); }
.footer-chips { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.footer-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid rgba(239,231,214,.22); border-radius: 99px; font-size: 14px; font-weight: 500; color: var(--cream-ink); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.footer-chip:hover { background: var(--tan); border-color: var(--tan); color: var(--green-900); transform: translateY(-2px); }
.footer h5 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; font-weight: 600; }
.footer-cat-grid { columns: 2; column-gap: 30px; }
.footer-cat-grid a { display: block; width: fit-content; padding: 7px 0; font-size: 15px; color: rgba(239,231,214,.72); transition: color .18s, transform .18s; }
.footer-cat-grid a:hover { color: #fff; transform: translateX(4px); }
.footer-cat-grid a.all { color: var(--tan); font-weight: 600; }
.footer-col-links { display: grid; gap: 4px; }
.footer-col-links a { padding: 7px 0; font-size: 15px; color: rgba(239,231,214,.72); width: fit-content; transition: color .18s, transform .18s; }
.footer-col-links a:hover { color: #fff; transform: translateX(4px); }
.footer-hours { margin-top: 26px; font-size: 14px; color: rgba(239,231,214,.55); }
.footer-hours b { display: block; color: var(--cream-ink); font-weight: 500; margin-top: 3px; }
.footer-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(239,231,214,.5); }
.footer-credit { display: inline-flex; align-items: center; gap: 10px; opacity: .8; transition: opacity .2s ease; }
.footer-credit:hover { opacity: 1; }
.footer-credit span { font-size: 12px; letter-spacing: 0.04em; color: rgba(239,231,214,.5); }
.footer-credit img { height: 22px; width: auto; }
.footer-watermark { position: absolute; left: 50%; transform: translateX(-50%); bottom: -0.18em; font-family: var(--display); font-weight: 600; font-size: clamp(80px, 17vw, 250px); line-height: .8; color: rgba(239,231,214,.045); letter-spacing: -0.04em; pointer-events: none; white-space: nowrap; z-index: 0; }

/* ============================================================
   CORPORATE PAGES (about / faq / delivery)
   ============================================================ */
.prose { max-width: 62ch; }
.prose p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-top: 16px; }
.prose p:first-child { margin-top: 0; }

.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 26px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.value-card .v-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; margin-bottom: 18px; transition: background .25s, color .25s; }
.value-card:hover .v-ic { background: var(--green); color: #fff; }
.value-card .v-ic svg { width: 26px; height: 26px; }
.value-card h3 { font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; }
.value-card p { color: var(--muted); font-size: 15px; margin-top: 8px; line-height: 1.6; }

.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 2px 24px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 0; font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-mark { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; font-size: 18px; line-height: 1; transition: transform .25s ease, background .25s, color .25s; }
.faq-item[open] .q-mark { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-item .faq-a { padding: 0 0 24px; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 64ch; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.info-block { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.info-block h3 { display: flex; align-items: center; gap: 13px; font-family: var(--display); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.info-block .ib-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.info-block .ib-ic svg { width: 23px; height: 23px; }
.info-block ul { margin-top: 16px; display: grid; gap: 11px; }
.info-block li { display: flex; gap: 11px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.info-block li::before { content: "✦"; color: var(--tan); font-size: 12px; padding-top: 4px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatySm { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .eyebrow, .hero-lead, .hero-actions, .hero-meta { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both; }
  .hero .eyebrow { animation-delay: .05s; }
  .hero h1 { animation-delay: .12s; }
  .hero-lead { animation-delay: .26s; }
  .hero-actions { animation-delay: .36s; }
  .hero-meta { animation-delay: .46s; }
  .hero-collage .htile { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both, floatySm 7s ease-in-out infinite; }
  .hero-collage .htile-a { animation-delay: .3s, 0s; }
  .hero-collage .htile-b { animation-delay: .42s, .8s; }
  .hero-collage .htile-c { animation-delay: .54s, 1.4s; }
  .hero-collage .htile-d { animation-delay: .66s, 2s; }
  .hero-collage .hspec { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: .78s; }
  @keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) { .catx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .catx-card.big { grid-column: span 2; grid-row: auto; } }
@media (max-width: 960px) {
  .hero-inner, .split, .band-inner, .pd-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-collage { order: -1; max-width: 460px; }
  .pd-fig, .contact-aside { position: static; }
  .featx-grid, .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-grid, .loc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .topbar-item { display: none; }
  .topbar-inner { justify-content: center; }
}
/* nav collapses to a hamburger from tablet down — the desktop bar is too dense
   (4 links + phone + CTA + search) to fit below ~900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line-2); padding: 18px var(--gutter); box-shadow: var(--shadow-md); max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav-links.open .nav-link { font-size: 17px; padding-block: 10px; }
  .nav-links.open .nav-phone { border-left: none; padding-left: 0; margin-left: 0; font-size: 16px; padding-block: 8px; }
  .nav-links.open .btn { margin-top: 8px; }
  .nav-panel { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 11px; color: var(--green); flex-shrink: 0; }
  .nav-toggle svg { width: 20px; height: 20px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .nav-right { gap: 9px; }
  .nav-search-btn { width: 40px; height: 40px; }
  .brand-sub { display: none; }
  .nav-inner { gap: 10px; }
  .catx-grid, .featx-grid, .prod-grid, .form-grid, .footer-top, .values-grid { grid-template-columns: 1fr; }
  .footer-cat-grid { columns: 1; }
  .footer-watermark { font-size: 64px; }
  .catx-card.big { grid-column: auto; }
  .spec-row { grid-template-columns: 1fr; gap: 3px; padding: 12px 0; }
  .spec-row dt { font-size: 11px; }
  .pd-actions .btn { flex: 1; justify-content: center; }
  .hero-meta { gap: 22px; }
  .hero-collage { max-width: 100%; gap: 12px; }
  .htile { min-height: 118px; padding: 16px; }
  .htile span { font-size: 15px; }
  .htile .htile-ic { width: 38px; height: 38px; }
  .hspec { flex-wrap: wrap; gap: 4px 12px; padding: 12px 16px; font-size: 13px; }
}
