:root {
  --ink: #141210;
  --ink-2: #2a2620;
  --paper: #efece6;
  --paper-2: #e4e0d8;
  --wood: #a67c45;
  --wood-deep: #855f30;
  --mute: #6a645b;
  --line: rgba(20, 18, 16, 0.12);
  --font-display: "Syne", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(166, 124, 69, 0.1), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }
@media (min-width: 640px) { .wrap { width: min(100% - 2.4rem, var(--max)); } }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: .75rem; left: .75rem; z-index: 100;
  width: auto; height: auto; margin: 0; clip: auto;
  padding: .65rem 1rem; background: var(--ink); color: #fff;
}

.kicker {
  margin: 0 0 .55rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: .75rem 1.2rem;
  font: inherit; font-weight: 700; font-size: .9rem;
  border: 1px solid transparent; border-radius: 0; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(239,236,230,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  min-height: 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__logo {
  width: 2.6rem !important; height: 2.6rem !important;
  border-radius: 50%; object-fit: cover;
  box-shadow: 0 4px 14px rgba(20,18,16,.12);
}
.brand__text { display: flex; flex-direction: column; gap: .1rem; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: .14em; font-size: .85rem;
}
.brand__sub {
  font-size: .55rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute);
}
.nav-toggle {
  width: 2.75rem; height: 2.75rem; border: 1px solid var(--line);
  background: transparent; display: inline-grid; place-items: center; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 1.1rem; height: 1.5px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.site-nav { display: none; }
.site-nav.is-open {
  display: block; position: absolute; inset: 100% 0 auto;
  background: rgba(239,236,230,.98); border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem 1.25rem;
}
.site-nav ul { display: flex; flex-direction: column; gap: 1rem; }
.site-nav a { font-weight: 600; opacity: .8; min-height: 44px; display: inline-flex; align-items: center; }
.site-nav a:hover, .nav-cta { opacity: 1; }
.nav-cta { border-bottom: 1px solid var(--wood); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; position: static; padding: 0; background: transparent; border: 0; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 1.4rem; }
}

.flash {
  width: min(100% - 1.5rem, var(--max)); margin: 1rem auto 0;
  padding: .85rem 1rem; border: 1px solid var(--line); font-weight: 600;
}
.flash--ok { background: rgba(166,124,69,.12); }
.flash--error { background: rgba(160,40,40,.08); }

/* Hero */
.hero {
  position: relative; min-height: 92svh;
  display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,.35), rgba(20,18,16,.72) 70%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: 7rem 0 3rem;
}
.hero__kicker {
  margin: 0 0 .8rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #e2c79a;
}
.hero__logo {
  width: clamp(4.5rem, 16vw, 6.5rem) !important;
  height: clamp(4.5rem, 16vw, 6.5rem) !important;
  border-radius: 50%; object-fit: cover; margin: 0 0 .9rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.hero__brand {
  margin: 0 0 .4rem;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: .18em; font-size: clamp(2.4rem, 11vw, 5.5rem); line-height: .92;
}
.hero__title {
  margin: 0 0 .85rem; max-width: 14ch;
  font-family: var(--font-serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.45rem, 4.5vw, 2.4rem); line-height: 1.15;
}
.hero__text { margin: 0 0 1.25rem; max-width: 36ch; color: rgba(255,255,255,.84); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }

.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: rgba(255,255,255,.28);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; font-size: .78rem;
  padding: .85rem 0; color: var(--ink-2);
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

.section { padding: 3.5rem 0; }
.section--alt { background: rgba(255,255,255,.35); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 1.5rem; max-width: 40ch; }
.section-head h2, .manifesto h2, .cta-band h2, .related h2, .page-hero h1, .product-summary h1 {
  margin: 0 0 .6rem;
  font-family: var(--font-display); font-weight: 750;
  letter-spacing: -.03em; line-height: 1.05;
}
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-head p, .manifesto p, .cta-band p { margin: 0; color: var(--mute); }
.section-more { margin: 1.75rem 0 0; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.product-card {
  display: flex; flex-direction: column;
  background: #cfc8bc; overflow: hidden; color: inherit;
}
.product-card__media { aspect-ratio: 4/5; overflow: hidden; background: #bdb5a8; }
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.product-card:hover img { transform: scale(1.05); }
.product-card__body { padding: .85rem .75rem 1rem; display: grid; gap: .25rem; }
.product-card__cat { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); font-weight: 700; }
.product-card__body strong {
  font-family: var(--font-display); font-size: .98rem; font-weight: 700; letter-spacing: -.01em;
}
.product-card__short {
  font-size: .82rem; color: var(--mute);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(220px, 26vw);
    gap: 1rem;
  }
  .product-grid .product-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .product-grid .product-card:nth-child(2),
  .product-grid .product-card:nth-child(3) { grid-column: span 5; }
  .product-grid .product-card:nth-child(4) { grid-column: span 7; }
  .product-grid .product-card:nth-child(n+5) { grid-column: span 4; }
  .product-grid--catalog .product-card,
  .product-grid--related .product-card {
    grid-column: auto !important; grid-row: auto !important;
  }
  .product-grid--catalog, .product-grid--related {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
  }
  .product-card__media { aspect-ratio: auto; height: 100%; min-height: 220px; }
  .product-grid--catalog .product-card__media,
  .product-grid--related .product-card__media { aspect-ratio: 4/5; height: auto; min-height: 0; }
}

.product-grid--related {
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}
@media (min-width: 640px) {
  .product-grid--related { grid-template-columns: repeat(4, 1fr); gap: .75rem; }
}
.related .product-card__body { padding: .5rem .45rem .65rem; }
.related .product-card__body strong {
  font-size: .82rem; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.related .product-card__media { aspect-ratio: 1 / 1; }

.manifesto {
  display: grid; gap: 2rem;
}
.pillars { display: grid; gap: 1rem; }
.pillars li {
  padding-top: .85rem; border-top: 1px solid var(--line);
  display: grid; gap: .2rem;
}
.pillars strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--wood-deep); }
.pillars span { color: var(--mute); font-size: .9rem; }
@media (min-width: 820px) {
  .manifesto { grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end; }
}

.cta-band { text-align: left; }
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
.cta-band .btn { margin-top: 1.1rem; }

.page-hero { padding: 5.5rem 0 1.5rem; }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
.page-hero__lead {
  margin: .35rem 0 0; max-width: 38ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem); color: var(--mute);
}

.filters {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.5rem;
}
.filter {
  min-height: 40px; padding: .45rem .85rem;
  border: 1px solid var(--line); font-size: .82rem; font-weight: 700;
}
.filter.is-active, .filter:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .78rem; color: var(--mute); margin: 1.25rem 0 1.5rem;
}
.breadcrumb a { color: var(--mute); }

.product-page { padding-bottom: 3.5rem; }
.product-layout { display: grid; gap: 1.5rem; }
.product-gallery { margin: 0; background: #cfc8bc; }
.product-gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.product-summary h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.product-summary__lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15rem; color: var(--ink-2); max-width: 36ch;
}
.price-muted { color: var(--mute); font-weight: 500; }
.product-summary__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

.product-story {
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.product-story__grid { display: grid; gap: 1.75rem; }
.product-story__lead {
  font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--ink-2);
}
.product-story__aside { padding-top: 1rem; border-top: 1px solid var(--line); }
.product-facts, .about-facts { display: grid; gap: .85rem; }
.product-facts li, .about-facts li {
  display: grid; gap: .15rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line);
}
.product-facts li:last-child, .about-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.product-facts span, .about-facts span {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--mute);
}
.product-facts strong, .about-facts strong {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
}
.related { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.related h2 { font-size: 1.5rem; margin-bottom: 1rem; }

@media (min-width: 820px) {
  .product-layout { grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }
  .product-story__grid { grid-template-columns: 1.25fr .75fr; gap: 3rem; }
  .product-story__aside { border-top: 0; border-left: 1px solid var(--line); padding: 0 0 0 1.75rem; }
}

.about-story__grid { display: grid; gap: 2rem; padding-top: 1.5rem; }
.prose p { margin: 0 0 1.1rem; max-width: 62ch; color: var(--ink-2); }
.prose strong {
  display: block; margin: 1.5rem 0 .4rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 750; color: var(--ink);
}
.about-story__aside { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.about-story__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
@media (min-width: 820px) {
  .about-story__grid { grid-template-columns: 1.25fr .75fr; gap: 3rem; }
  .about-story__aside { border-top: 0; border-left: 1px solid var(--line); padding: 0 0 0 1.75rem; }
}

.contact-grid { display: grid; gap: 2rem; padding-bottom: 3.5rem; }
.contact-form label {
  display: block; margin: 0 0 .35rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--mute);
}
.contact-form input, .contact-form textarea {
  width: 100%; margin-bottom: 1.1rem; padding: .9rem 0; min-height: 44px;
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  background: transparent; color: var(--ink); font: inherit;
}
.contact-form textarea { min-height: 8rem; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--wood); }
.contact-panel { padding-top: 1.25rem; border-top: 1px solid var(--line); }
.contact-panel h2 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 .75rem; }
.contact-panel .muted, .muted { color: var(--mute); font-size: .92rem; }
.contact-panel__place { margin: 0 0 .35rem; font-weight: 600; color: var(--ink); }
.contact-panel__address { margin: 0 0 .75rem; color: var(--mute); font-size: .95rem; line-height: 1.45; }
.contact-people { list-style: none; margin: 1.25rem 0; padding: 0; display: grid; gap: 1rem; }
.contact-people li { display: grid; gap: .2rem; }
.contact-people strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.contact-people a { min-height: 44px; display: inline-flex; align-items: center; }
@media (min-width: 820px) {
  .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; }
  .contact-panel { border-top: 0; border-left: 1px solid var(--line); padding: 0 0 0 1.75rem; }
}

.site-footer {
  border-top: 1px solid var(--line); padding: 1.75rem 0 2.25rem; color: var(--mute); font-size: .9rem;
}
.site-footer__inner {
  width: min(100% - 1.5rem, var(--max)); margin: 0 auto;
  display: grid; gap: 1rem;
}
.site-footer__brand {
  display: inline-flex; align-items: center; gap: .6rem; margin: 0;
  font-family: var(--font-display); font-weight: 800; letter-spacing: .12em; color: var(--ink);
}
.site-footer__brand img {
  width: 2.1rem !important; height: 2.1rem !important; border-radius: 50%; object-fit: cover;
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer__links a:hover { color: var(--ink); }
.site-footer__address, .site-footer__phones { margin: 0; line-height: 1.5; }
.site-footer__phones a { color: inherit; }
.site-footer__phones a:hover { color: var(--ink); }
.site-footer__copy { margin: 0; }
.site-footer__credit { margin: .35rem 0 0; font-size: .85rem; }
.site-footer__credit a { color: var(--ink); text-decoration: underline; text-underline-offset: .15em; }
.site-footer__credit a:hover { color: var(--wood-deep); }
.site-footer__legal {
  margin: .65rem 0 0; display: flex; flex-wrap: wrap; gap: .75rem 1.1rem;
  font-size: .82rem;
}
.site-footer__legal a, .linkish {
  color: var(--mute); background: none; border: 0; padding: 0;
  font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: .15em;
  min-height: 44px; display: inline-flex; align-items: center;
}
.site-footer__legal a:hover, .linkish:hover { color: var(--ink); }

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: .85rem .85rem calc(.85rem + env(safe-area-inset-bottom));
  pointer-events: none;
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cookie-banner.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(20, 18, 16, 0.94);
  color: #f4f0ea;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 40px rgba(20, 18, 16, .28);
}
.cookie-banner__title {
  margin: 0 0 .35rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.cookie-banner__copy p:last-child { margin: 0; font-size: .9rem; line-height: 1.45; color: rgba(244,240,234,.82); }
.cookie-banner__copy a { color: #fff; text-decoration: underline; text-underline-offset: .15em; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cookie-banner .btn { min-height: 44px; }
.cookie-banner .btn-ghost {
  border-color: rgba(255,255,255,.28); color: #fff;
}
.cookie-banner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.cookie-banner .btn-primary { background: #fff; color: var(--ink); }
.cookie-banner .btn-primary:hover { background: var(--paper); }
@media (min-width: 820px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem;
    padding: 1.15rem 1.35rem;
  }
}

.cookie-policy h2 {
  font-family: var(--font-display); font-size: 1.25rem; margin: 1.75rem 0 .55rem;
}
.cookie-policy ul { margin: .5rem 0 1rem; padding-left: 1.1rem; display: grid; gap: .55rem; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track, .product-card__media img { animation: none !important; transition: none !important; }
}
