:root {
  --bg: #171815;
  --bg-soft: #1c1e19;
  --canopy: #24271f;
  --bark: #8a6344;
  --wood-dark: #3a3228;
  --surface: rgba(243, 239, 230, 0.035);
  --surface-strong: #24271f;
  --text: #f3efe6;
  --muted: #b8b1a3;
  --linen: #e8e1d5;
  --moss: #c59a5b;
  --moss-dim: #a8824a;
  --brand: #c59a5b;
  --brand-soft: #d4b07a;
  --ember: #8a6344;
  --line: rgba(232, 225, 213, 0.1);
  --ok: #b8b1a3;
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1120px;
  --header-h: 72px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
  --grain: repeating-linear-gradient(
    95deg,
    transparent 0,
    transparent 12px,
    rgba(243, 239, 230, 0.012) 12px,
    rgba(243, 239, 230, 0.012) 13px
  );
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 40% at 20% -5%, rgba(197, 154, 91, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 30%, rgba(138, 99, 68, 0.08), transparent 50%),
    linear-gradient(180deg, #1a1c17 0%, var(--bg) 40%, #121410 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.bg-canopy {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 75% 0%, rgba(36, 39, 31, 0.9), transparent 55%),
    radial-gradient(ellipse 40% 28% at 0% 90%, rgba(138, 99, 68, 0.06), transparent 50%);
  pointer-events: none;
  z-index: -3;
  contain: strict;
}

.bg-glow {
  position: fixed;
  inset: auto -15% -35% -10%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(
    circle at 45% 45%,
    rgba(138, 99, 68, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: -2;
  contain: strict;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.45;
  background-image: var(--grain);
  pointer-events: none;
  z-index: -1;
  contain: strict;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 10;
}

.delivery-bar {
  background: linear-gradient(90deg, #2a2218 0%, #3a3228 45%, #2a2218 100%);
  border-bottom: 1px solid rgba(197, 154, 91, 0.45);
  text-align: center;
  padding: 0.55rem 1rem;
}

.delivery-bar p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--linen);
}

.site-header {
  background: rgba(23, 24, 21, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.logo span {
  color: var(--brand);
}

.logo-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 35% 35%, rgba(243, 239, 230, 0.2), transparent 55%),
    repeating-conic-gradient(
      from 0deg,
      #8a6344 0deg 14deg,
      #2a2218 14deg 28deg,
      #c59a5b 28deg 42deg,
      #2a2218 42deg 56deg
    );
  box-shadow: inset 0 0 0 1px rgba(197, 154, 91, 0.25);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(243, 239, 230, 0.03);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.nav-open .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.82rem 1.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #171815;
  background: var(--brand);
  transition: transform 0.2s var(--ease-out), background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: #d0a86a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

.btn-ghost {
  border-color: rgba(243, 239, 230, 0.22);
  color: var(--text);
  background: transparent;
  text-transform: uppercase;
}

.btn-ghost:hover {
  border-color: rgba(243, 239, 230, 0.4);
  background: rgba(243, 239, 230, 0.04);
  filter: none;
  box-shadow: none;
  color: var(--text);
}

.hero .btn-ghost {
  border-color: rgba(243, 239, 230, 0.28);
  color: var(--text);
  background: transparent;
}

.hero .btn-ghost:hover {
  border-color: rgba(243, 239, 230, 0.5);
  background: rgba(23, 24, 21, 0.35);
}

.hero .btn {
  color: #171815;
  background: var(--brand);
  border-color: transparent;
}

.hero .btn:hover {
  background: #d0a86a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* ——— Hero: full-bleed, brand-first ——— */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-ken 18s var(--ease-out) both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 24, 21, 0.45) 0%, rgba(23, 24, 21, 0.15) 40%, rgba(23, 24, 21, 0.92) 100%),
    linear-gradient(90deg, rgba(23, 24, 21, 0.78) 0%, rgba(23, 24, 21, 0.25) 55%, rgba(23, 24, 21, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.25rem;
  max-width: 36rem;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
  margin-right: auto;
  width: min(100% - 2.5rem, 36rem);
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-brand span {
  color: var(--brand);
}

.hero .eyebrow {
  margin-top: 0;
  color: var(--muted);
}

.hero h1 {
  margin-top: 0.55rem;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  max-width: 16ch;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero .lead {
  margin-top: 0.95rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 32ch;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-strip {
  padding: 0;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(36, 39, 31, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-strip-inner article {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-right: 1px solid var(--line);
}

.trust-strip-inner article:last-child {
  border-right: 0;
}

.trust-strip-inner strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text);
  font-weight: 600;
}

.trust-strip-inner span {
  color: var(--muted);
  font-size: 0.86rem;
}

.transport-disclaimer {
  margin: 1.75rem auto 0.5rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border: 2px solid rgba(197, 154, 91, 0.65);
  background:
    linear-gradient(135deg, rgba(197, 154, 91, 0.16), rgba(36, 39, 31, 0.92) 55%),
    var(--surface-strong);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.transport-disclaimer-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.transport-disclaimer-text {
  margin: 0;
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 62ch;
}

.transport-disclaimer-text strong {
  color: var(--linen);
  font-weight: 700;
}

.transport-disclaimer--compact {
  margin: 1.1rem 0 0;
  padding: 1rem 1.1rem;
  border-width: 1.5px;
  box-shadow: none;
}

.transport-disclaimer--compact .transport-disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.availability {
  padding: 2.75rem 0 1.5rem;
}

.availability-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.availability-copy h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.availability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.availability-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.availability-list li:last-child {
  border-bottom: 0;
}

.availability-list strong {
  color: var(--text);
  font-size: 0.85rem;
  white-space: nowrap;
}

.products-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.35rem 0 0;
}

.products-pillars article {
  padding: 0;
  border: 0;
  background: none;
}

.products-pillars h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 0;
  font-weight: 600;
}

.products-pillars p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  margin: 1.15rem 0 0;
}

/* Legacy hero bits kept for compatibility */
.hero-copy,
.hero-aside,
.hero-float-decor,
.hero-stats,
.hero-card,
.hero-photo,
.log-stack,
.tree-ring {
  display: none;
}

.img-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.img-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.img-frame:hover img {
  transform: scale(1.03);
}

.section-divider {
  display: none;
}

.card-media {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease;
}

.card-media:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 180, 122, 0.35);
}

.card-media .card-photo {
  position: relative;
  overflow: hidden;
}

.card-media .card-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.card-media:hover .card-photo img {
  transform: scale(1.04);
}

.card-media .card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-media .card-body h3 {
  margin: 0;
}

.card-media .card-body p {
  margin: 0.55rem 0 0;
}

.history {
  padding: 3rem 0;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.history-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(120, 90, 60, 0.35);
}

.history-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.history-copy {
  padding: 0.5rem 0.25rem 0.5rem 0.5rem;
  border-left: 2px solid rgba(196, 163, 90, 0.45);
  padding-left: 1.35rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.history-copy h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
}

.history-lead {
  margin: 0.9rem 0 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
}

.history-copy p:not(.eyebrow):not(.history-lead) {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.history-tags li {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.03);
}

.wood-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.wood-panel > * {
  position: relative;
  z-index: 1;
}

.wood-panel::after {
  display: none;
}

.supply-strip {
  padding: 2rem 0;
}

.supply-strip-inner {
  position: relative;
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.supply-heading {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  margin-top: 0.45rem;
}

.supply-lead {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 42ch;
}

.supply-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.supply-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 244, 230, 0.04);
  border: 1px solid var(--line);
}

.step-num {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #171815;
  background: var(--brand);
}

.step-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.45;
}

section {
  padding: 2.75rem 0;
}

section h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.product {
  border-radius: var(--radius);
  padding: 1rem;
}

.card h3,
.product h3 {
  font-size: 1.08rem;
  color: var(--text);
}

.card p,
.product p {
  color: var(--muted);
  margin: 0.55rem 0 0;
}

.card-media .card-body a {
  color: var(--moss);
}

.about {
  display: none;
}

.contact {
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr 1.05fr;
}

.contact-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.contact-copy p:last-of-type:not(.contact-legal),
.contact-copy > p:not(.eyebrow):not(.contact-legal) {
  color: var(--muted);
  margin-top: 0.75rem;
}

.contact-legal {
  margin: 1.1rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.client-hook {
  padding: 2rem 0 1.25rem;
}

.client-hook-inner {
  border-radius: 0;
  padding: 0.5rem 0;
  border: 0;
  background: none;
  max-width: 40rem;
}

.client-hook-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0.5rem 0 0;
  line-height: 1.25;
}

.client-hook-text {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 48ch;
  font-size: 1.02rem;
}

.depot {
  padding: 1.5rem 0 2rem;
}

.depot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.depot-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(120, 90, 60, 0.35);
}

.depot-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.depot-inner {
  border-radius: 0;
  padding: 0.5rem 0;
  max-width: 40rem;
  border: 0;
  background: none;
}

.depot-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: 0.4rem;
}

.depot-lead,
.depot-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.products-intro {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.products-code {
  font-size: 0.82em;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: rgba(212, 180, 122, 0.1);
  border: 1px solid var(--line);
  color: var(--brand-soft);
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  scroll-margin-top: 5.5rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(212, 180, 122, 0.35);
  outline: none;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.product-card:focus-visible {
  box-shadow: 0 0 0 2px var(--brand);
}

.product-card-thumb {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}

.product-card-thumb img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}

.product-card-content {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.28;
  margin: 0;
  color: var(--text);
}

.product-card-price {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand);
}

.product-card-excerpt {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.product-card-actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.product-card-add.is-added {
  background: var(--brand);
  border-color: var(--brand);
  color: #171815;
}

.order-howto {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
  counter-reset: howto;
}

.order-howto li {
  counter-increment: howto;
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 244, 230, 0.03);
  box-shadow: none;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.order-howto li::before {
  content: counter(howto);
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(243, 239, 230, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.order-howto strong {
  color: var(--text);
}

.order-howto a {
  color: var(--brand-soft);
}

@media (max-width: 720px) {
  .order-howto {
    grid-template-columns: 1fr;
  }
}

.product-card-hint {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 0.25rem;
}

.product-modal[hidden] {
  display: none !important;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 5, 0.72);
  cursor: pointer;
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.35rem 1.4rem 1.5rem;
  padding-top: calc(1.35rem + env(safe-area-inset-top, 0));
  -webkit-overflow-scrolling: touch;
}

.product-modal-close {
  position: absolute;
  top: calc(0.65rem + env(safe-area-inset-top, 0));
  right: 0.75rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(30, 24, 18, 0.95);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-close:hover {
  background: rgba(48, 38, 28, 0.95);
}

.product-modal-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin: 0 3rem 0.5rem 0;
  line-height: 1.2;
  padding-right: 0.25rem;
}

.product-modal-price {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-soft);
}

.product-modal-body {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.product-modal-body p {
  margin: 0 0 0.75rem;
}

.product-modal-body p:last-child {
  margin-bottom: 0;
}

.product-modal-body strong {
  color: var(--text);
}

.product-price-modal {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(212, 180, 122, 0.08);
  border: 1px solid rgba(212, 180, 122, 0.22);
  color: var(--text);
}

.product-modal-slider {
  position: relative;
  margin-bottom: 1rem;
}

.p-slider-viewport {
  --p-slides: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: #1a1511;
}

.p-slider-track {
  display: flex;
  height: 100%;
  width: calc(var(--p-slides) * 100%);
  transition: transform 0.38s ease;
}

.p-slider-slide {
  flex: 0 0 calc(100% / var(--p-slides));
  min-width: 0;
  height: 100%;
}

.p-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(232, 210, 164, 0.3);
  background: rgba(16, 14, 12, 0.75);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
}

.p-slider-btn:hover {
  background: rgba(30, 24, 18, 0.9);
}

.p-slider-prev {
  left: 0.5rem;
}

.p-slider-next {
  right: 0.5rem;
}

.p-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.p-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.p-slider-dot.is-active {
  background: var(--moss);
  transform: scale(1.15);
}

body.product-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .p-slider-track {
    transition: none;
  }

  .product-card {
    transition: none;
  }
}

.extras-section {
  padding: 1.5rem 0 2.5rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.15rem;
}

.extras-card {
  border-radius: 0;
  padding: 0;
  border: 0;
  background: none;
  border-top: 2px solid rgba(138, 99, 68, 0.45);
  padding-top: 1rem;
}

.extras-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
}

.extras-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.extras-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.extras-muted {
  margin: 0.65rem 0 0 !important;
  font-size: 0.86rem !important;
  color: var(--muted) !important;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(8, 6, 5, 0.55);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(197, 154, 91, 0.4);
  box-shadow: 0 0 0 3px rgba(197, 154, 91, 0.1);
}

.form-status {
  margin: 0;
  min-height: 1.1em;
  color: var(--brand-soft);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  background: rgba(8, 6, 5, 0.55);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-wrap a {
  color: var(--moss);
  text-decoration: none;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

@keyframes hero-ken {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.04);
  }
}

.reveal.visible .reveal-stagger > *,
.reveal.visible.reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .reveal-stagger > *:nth-child(1),
.reveal.visible.reveal-stagger > *:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal.visible .reveal-stagger > *:nth-child(2),
.reveal.visible.reveal-stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal.visible .reveal-stagger > *:nth-child(3),
.reveal.visible.reveal-stagger > *:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal.visible .reveal-stagger > *:nth-child(4),
.reveal.visible.reveal-stagger > *:nth-child(4) {
  transition-delay: 0.22s;
}

.reveal.visible .reveal-stagger > *:nth-child(5),
.reveal.visible.reveal-stagger > *:nth-child(5) {
  transition-delay: 0.28s;
}

.reveal.visible .reveal-stagger > *:nth-child(6),
.reveal.visible.reveal-stagger > *:nth-child(6) {
  transition-delay: 0.34s;
}

@keyframes ring-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-4px, -6px) scale(1.03);
    opacity: 0.65;
  }
}

@keyframes log-float-1 {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-6px) rotate(-6deg);
  }
}

@keyframes log-float-2 {
  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes log-float-3 {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-6px) rotate(5deg);
  }
}

@keyframes log-icon-wobble {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(3px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal .reveal-stagger > *,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg-img {
    animation: none !important;
    transform: scale(1.04);
  }

  .tree-ring,
  .log,
  .log-icon {
    animation: none !important;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(8, 6, 5, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-top {
    padding-top: env(safe-area-inset-top, 0);
  }

  .site-header {
    padding-top: 0;
  }

  .nav-wrap {
    min-height: 56px;
    gap: 0.5rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100% - 3.5rem, 20rem);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(1rem + env(safe-area-inset-top, 0)) 1rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #171815;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.65rem;
    color: var(--text);
  }

  .main-nav a:active {
    background: rgba(110, 231, 168, 0.1);
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .contact,
  .supply-strip-inner,
  .history-layout,
  .depot-layout,
  .extras-grid,
  .availability-inner,
  .products-pillars,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(78vh, 620px);
    display: flex;
    align-items: flex-end;
    padding: 0;
  }

  .hero-content {
    margin-left: 1.25rem;
    width: min(100% - 2.5rem, 36rem);
    padding: 4.5rem 0 2.5rem;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.25rem;
    gap: 0.55rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .trust-strip {
    margin-top: -1rem;
  }

  .trust-strip-inner article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .trust-strip-inner article:last-child {
    border-bottom: 0;
  }

  .availability-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .availability-inner .btn {
    justify-self: start;
  }

  .history-photo img,
  .depot-photo img {
    min-height: 240px;
  }

  .cards-3,
  .cards-4,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .supply-strip-inner {
    padding: 1.25rem 1.1rem;
  }

  section {
    padding: 2rem 0;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  textarea {
    min-height: 7rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 1.25rem 0;
    gap: 0.75rem;
  }

  .footer-wrap a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}

@media (max-width: 620px) {
  .cards-3,
  .cards-4,
  .products-grid,
  .products-pillars {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(72vh, 560px);
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .nav-cta {
    padding-inline: 0.75rem;
    font-size: 0.82rem;
  }

  #services {
    padding: 1.25rem 0 1.35rem;
  }

  #services > .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  #services > h2 {
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    line-height: 1.22;
    margin-top: 0.3rem;
    margin-bottom: 0;
  }

  #services .grid {
    gap: 0.6rem;
    margin-top: 0.75rem;
  }

  #services .card-media .card-photo img {
    aspect-ratio: 2 / 1;
    max-height: 120px;
  }

  #services .card-media .card-body {
    padding: 0.55rem 0.7rem 0.65rem;
    gap: 0;
  }

  #services .card-body .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.1rem;
  }

  #services .card-body .eyebrow + h3 {
    margin-top: 0.15rem;
  }

  #services .card h3 {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  #services .card p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0.32rem 0 0;
  }

  #services .card-media .card-body p:last-child {
    margin-top: 0.3rem;
  }
}

@media (max-width: 960px) and (prefers-reduced-motion: reduce) {
  .main-nav,
  .nav-backdrop {
    transition: none;
  }
}

/* ——— Store / cart / checkout ——— */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 244, 230, 0.04);
  color: var(--text);
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--ember);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15rem;
  text-align: center;
}

.product-card-stock,
.product-modal-stock {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card-stock.is-ok,
.product-modal-stock.is-ok {
  color: var(--ok);
}

.product-card-stock.is-low,
.product-modal-stock.is-low {
  color: var(--brand-soft);
}

.product-card-stock.is-out,
.product-modal-stock.is-out {
  color: #e08a6a;
}

.products-loading,
.products-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  text-align: center;
  padding: 1.5rem 0;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-modal-qty-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.product-modal-qty {
  width: 5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 6, 5, 0.55);
  color: var(--text);
  font: inherit;
}

.product-modal-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

body.cart-open .cart-backdrop {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 100%;
  background: linear-gradient(180deg, #24271f 0%, #171815 100%);
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.28s var(--ease-out);
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-head,
.cart-drawer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-foot {
  flex-direction: column;
  align-items: stretch;
  border-bottom: 0;
  border-top: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.15rem;
}

.cart-empty {
  color: var(--muted);
  margin: 0;
}

.cart-empty a {
  color: var(--brand-soft);
}

.cart-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-row-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.cart-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.cart-row-price {
  margin: 0.2rem 0 0.45rem;
  color: var(--brand-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-row-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-row-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 244, 230, 0.05);
  color: var(--text);
  cursor: pointer;
}

.cart-row-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.order-summary {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.order-summary-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.order-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
}

.form-status.is-error {
  color: #e08a6a;
}

.success-page .success-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  max-width: 36rem;
}

.success-meta {
  color: var(--muted);
  font-size: 0.9rem;
  word-break: break-all;
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
