@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ─── RESET & VARIABLES ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

:root {
  --forest-dark:   #1C3A22;
  --forest-mid:    #2D5C35;
  --forest-bright: #3B6D11;
  --forest-light:  #5C8A5E;
  --cream:         #F4EFE4;
  --beige:         #E8E0D0;
  --wood:          #3D2B1A;
  --gold:          #B8965A;
  --gold-light:    #C8A96E;
  --white:         #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.35s var(--ease);
  --radius:      6px;
  --max-width:   1240px;
  --header-h:    80px;
  --topbar-h:    36px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--wood);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
p  { font-size: 1rem; }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
}
.gold-italic {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
}

/* ─── UTILITIES ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* Responsive grid helpers — used to replace inline styles */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.thumb-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

/* ─── SCROLL REVEAL ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  min-width: 0;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }
.d6 { transition-delay: 0.60s; }

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-bright);
  color: var(--cream);
  border-color: var(--forest-bright);
}
.btn-primary:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28,58,34,0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,228,0.45);
}
.btn-ghost:hover {
  background: rgba(244,239,228,0.10);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--forest-dark);
  border-color: var(--forest-dark);
}
.btn-outline:hover {
  background: var(--forest-dark);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184,150,90,0.32);
}
.btn-light {
  background: var(--cream);
  color: var(--forest-dark);
  border-color: var(--cream);
}
.btn-light:hover {
  background: var(--beige);
  transform: translateY(-2px);
}

/* ─── TOPBAR (contact strip) ─────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  font-size: 0.78rem;
}
.topbar-social { display: flex; align-items: center; gap: 0.85rem; }
.topbar-social a { color: rgba(244,239,228,0.62); display: flex; transition: color var(--transition); }
.topbar-social a:hover { color: var(--cream); }
.topbar-social svg { width: 14px; height: 14px; }
.topbar-contact { display: flex; align-items: center; gap: 1.1rem; }
.topbar-contact a {
  color: rgba(244,239,228,0.82);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--cream); }
.topbar-contact svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.85; }
.topbar-divider { width: 1px; height: 13px; background: rgba(244,239,228,0.25); }

/* Topbar rotator — contact info and address take turns, 10s / 5s */
.topbar-rotator { height: 18px; overflow: hidden; position: relative; }
.topbar-rotator-track {
  display: flex;
  flex-direction: column;
  animation: topbarRotate 16s ease-in-out infinite;
}
.topbar-rotator-track > .topbar-contact,
.topbar-rotator-track > .topbar-address {
  height: 18px;
  flex-shrink: 0;
}
.topbar-address {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244,239,228,0.82);
  font-weight: 500;
  white-space: nowrap;
}
.topbar-address svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.85; }
@keyframes topbarRotate {
  0%, 62.5%    { transform: translateY(0); }
  65.625%, 96.875% { transform: translateY(-18px); }
  100%         { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar-rotator-track { animation: none; }
}

/* ─── HEADER ───────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.header.transparent { background: transparent; }
.header.scrolled {
  background: rgba(244,239,228,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28,58,34,0.08), 0 4px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; gap: 0.65rem; }
.logo-img { height: 96px; width: auto; display: block; max-width: 280px; transition: filter var(--transition); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}
.logo-text-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--forest-dark);
  transition: color var(--transition);
}
.logo-text-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--forest-dark);
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(28,58,34,0.35);
  transition: color var(--transition), border-color var(--transition);
}
.header.transparent .logo-text-main,
.header.transparent .logo-text-sub { color: var(--cream); }
.header.transparent .logo-text-sub { border-top-color: rgba(244,239,228,0.4); }
.header.transparent .logo-img { filter: brightness(0) invert(1); }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
.footer-brand .logo-img { height: 200px; width: auto; filter: brightness(0) invert(1); }

/* Nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-item { position: relative; padding: 0 16px 14px; margin: 0 -16px -14px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wood);
  letter-spacing: 0.025em;
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--forest-bright);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--forest-bright); }
.nav-link:hover::after { width: 100%; }
.header.transparent .nav-link { color: rgba(244,239,228,0.88); }
.header.transparent .nav-link:hover { color: var(--cream); }
.header.transparent .nav-link::after { background: var(--cream); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 0.4rem 0;
  min-width: 165px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wood);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--beige); color: var(--forest-dark); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 1.25rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--wood);
  transition: var(--transition);
  transform-origin: center;
}
.header.transparent .hamburger span { background: var(--cream); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 4.5rem 1.5rem 2.5rem;
  min-height: 100%;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-dark);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--forest-bright); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  color: var(--forest-dark);
  font-weight: 300;
}
.mobile-nav-cta {
  margin-top: 1rem;
}

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slideshow */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 6s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(28,58,34,0.55);
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, #1C3A22 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  max-width: 860px;
  padding: 0 2rem;
}
.hero h1 {
  color: #F4EFE4;
  margin-bottom: 1.25rem;
  animation: heroFadeUp 1s var(--ease) 0.1s both;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(244,239,228,0.82);
  margin: 0 auto 2.5rem;
  letter-spacing: 0.03em;
  animation: heroFadeUp 1s var(--ease) 0.25s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1s var(--ease) 0.4s both;
}
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244,239,228,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  display: block;
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(244,239,228,0), rgba(244,239,228,0.45));
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ─── EST STRIP ────────────────────────────────────────────────────── */
.est-strip {
  background: var(--forest-dark);
  padding: 13px 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.65);
  border-top: 1px solid rgba(184,150,90,0.18);
}
.est-strip strong { color: var(--gold); }
.est-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.7;
}

/* ─── SECTION HEADER ───────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .label { display: block; margin-bottom: 0.75rem; }
.section-header h2 { color: var(--forest-dark); margin-bottom: 1rem; }
.section-header p {
  color: var(--forest-light);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ─── PRODUCTS ─────────────────────────────────────────────────────── */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(28,58,34,0.13);
}
.product-card-img {
  height: 265px;
  position: relative;
  overflow: hidden;
}
.product-card-img-inner {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img-inner { transform: scale(1.04); }
.img-kereste {
  background:
    linear-gradient(160deg, rgba(61,43,26,0.78) 0%, rgba(92,61,34,0.42) 50%, rgba(28,74,38,0.72) 100%),
    repeating-linear-gradient(88deg, transparent, transparent 6px, rgba(0,0,0,0.04) 6px, rgba(0,0,0,0.04) 7px);
}
.img-plywood {
  background:
    linear-gradient(150deg, rgba(200,169,110,0.75) 0%, rgba(139,105,20,0.58) 45%, rgba(28,58,34,0.78) 100%),
    repeating-linear-gradient(5deg, transparent, transparent 8px, rgba(0,0,0,0.03) 8px, rgba(0,0,0,0.03) 9px);
}
.img-lambiri {
  background:
    linear-gradient(155deg, rgba(92,61,34,0.78) 0%, rgba(61,43,26,0.60) 45%, rgba(28,58,34,0.74) 100%),
    repeating-linear-gradient(92deg, transparent, transparent 5px, rgba(255,255,255,0.04) 5px, rgba(255,255,255,0.04) 6px);
}
.img-osb {
  background:
    linear-gradient(160deg, rgba(200,169,110,0.55) 0%, rgba(232,224,208,0.65) 45%, rgba(92,138,94,0.55) 100%),
    repeating-linear-gradient(35deg, transparent, transparent 4px, rgba(61,43,26,0.07) 4px, rgba(61,43,26,0.07) 6px),
    repeating-linear-gradient(-35deg, transparent, transparent 5px, rgba(61,43,26,0.05) 5px, rgba(61,43,26,0.05) 7px);
}
.product-card-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(28,58,34,0.85);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.product-card-body { padding: 1.75rem; }
.product-card-body h3 { color: var(--forest-dark); margin-bottom: 0.6rem; }
.product-card-body p { color: #6B5B4E; font-size: 0.93rem; margin-bottom: 1.5rem; line-height: 1.65; }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-bright);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.product-card-link:hover { gap: 0.85rem; }
.arrow-icon { transition: transform var(--transition); }
.product-card-link:hover .arrow-icon { transform: translateX(3px); }

/* ─── VALUES ───────────────────────────────────────────────────────── */
.values-section {
  background: linear-gradient(rgba(18,46,22,0.86), rgba(18,46,22,0.86)), url('../images/forest2.webp') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}
.values-section .container { max-width: 1440px; }
.values-section::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(45,92,53,0.4) 0%, transparent 65%);
  pointer-events: none;
}
.values-section .section-header h2 { color: var(--cream); }
.values-section .section-header p { color: rgba(244,239,228,0.55); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.value-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,150,90,0.22);
  border-radius: 10px;
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(184,150,90,0.42);
  transform: translateY(-3px);
}
.value-icon {
  width: 42px; height: 42px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.value-card h3 { font-size: 1.05rem; color: var(--cream); margin-bottom: 0.2rem; }
.value-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(184,150,90,0.95);
  margin-bottom: 0.75rem;
}
.value-card p { font-size: 0.88rem; color: rgba(244,239,228,0.85); line-height: 1.65; }
.value-quote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,150,90,0.22);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(184,150,90,0.95);
  line-height: 1.55;
}

/* ─── STORY ────────────────────────────────────────────────────────── */
.story-section { background: var(--beige); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(145deg, #1C3A22 0%, #2D5C35 45%, #3B6D11 100%);
}
.story-img-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(28,58,34,0.85);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-display);
  backdrop-filter: blur(4px);
  z-index: 3;
}

/* ─── STORY IMAGE · NOSTALGIC TREATMENT ─────────────────────────────── */
.story-img-vintage {
  border: 10px solid var(--cream);
  box-shadow: 0 14px 34px rgba(28,58,34,0.28);
  background: var(--cream);
}
.story-img-vintage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.55) saturate(1.2) hue-rotate(-12deg) contrast(1.05) brightness(0.9);
}
.story-img-vintage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(28,58,34,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.story-img-vintage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}
.story-content .label { display: block; margin-bottom: 0.9rem; }
.story-content h2 { color: var(--forest-dark); margin-bottom: 1.5rem; }
.story-content p { color: #5C4E40; margin-bottom: 1.25rem; line-height: 1.8; }
.story-year-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.story-year-mark .year {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(28,58,34,0.08);
  line-height: 1;
}

/* ─── DELIVERY ─────────────────────────────────────────────────────── */
.delivery-section { background: var(--cream); text-align: center; }
.delivery-section h2 { color: var(--forest-dark); }
/* ─── DELIVERY MAP IMAGE ────────────────────────────────────────────── */
.delivery-map-block {
  background: #1C3A22;
  border-radius: 16px;
  margin: 2.5rem 0;
  overflow: hidden;
  line-height: 0;
}
.delivery-map-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.delivery-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.delivery-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--forest-dark);
  line-height: 1;
  display: block;
}
.delivery-stat-label {
  font-size: 0.82rem;
  color: var(--forest-light);
  font-weight: 600;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* ─── CTA SECTION ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--forest-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,92,53,0.5) 0%, transparent 68%);
  pointer-events: none;
}
.cta-section h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-section p { color: rgba(244,239,228,0.65); max-width: 480px; margin: 0 auto 2.75rem; }

/* ─── FOOTER ───────────────────────────────────────────────────────── */
.footer {
  background-color: var(--wood);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    repeating-linear-gradient(88deg, transparent 0px, transparent 3px, rgba(255,190,100,0.025) 3px, rgba(255,190,100,0.025) 4px),
    repeating-linear-gradient(91deg, transparent 0px, transparent 14px, rgba(0,0,0,0.03) 14px, rgba(0,0,0,0.03) 16px);
  color: rgba(244,239,228,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-slogan {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(244,239,228,0.55);
  font-size: 1.15rem;
  text-align: center;
}
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; justify-content: center; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(244,239,228,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,239,228,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--forest-bright); color: var(--cream); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.footer-contact-icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-text { font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(244,239,228,0.07);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── WHATSAPP ─────────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

/* ─── PAGE HERO (non-video) ────────────────────────────────────────── */
.page-hero {
  height: 52vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-h) + var(--topbar-h));
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(28,58,34,0.88) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.page-hero .page-hero-sub {
  color: rgba(244,239,228,0.78);
  max-width: 580px;
  font-size: 1rem;
}

/* ─── PRODUCT PAGE ─────────────────────────────────────────────────── */
.product-detail-section { background: var(--cream); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-main-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.product-detail-content h2 { color: var(--forest-dark); margin-bottom: 1.25rem; }
.product-detail-content p { color: #5C4E40; line-height: 1.8; margin-bottom: 1rem; }
.product-specs-list { margin: 1.5rem 0; }
.product-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.92rem;
}
.product-spec-item:last-child { border-bottom: none; }
.spec-key { font-weight: 600; color: var(--forest-dark); }
.spec-val { color: #6B5B4E; }

/* Table */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.data-table th, .data-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--beige);
  font-size: 0.92rem;
}
.data-table th {
  background: var(--forest-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.data-table tr:hover td { background: var(--beige); }
.data-table td:first-child { font-weight: 500; color: var(--forest-dark); }

/* Usage areas */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.usage-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--beige);
  border-radius: 10px;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.usage-card:hover { background: var(--forest-dark); transform: translateY(-4px); }
.usage-card svg { width: 34px; height: 34px; margin: 0 auto 0.9rem; color: var(--forest-dark); transition: color var(--transition); }
.usage-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--forest-dark); transition: color var(--transition); }
.usage-card:hover svg, .usage-card:hover h4 { color: var(--gold); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-dark));
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }

/* ─── ABOUT PAGE ───────────────────────────────────────────────────── */
.about-story { background: var(--cream); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.mv-card {
  padding: 2.5rem;
  border-radius: 12px;
}
.mv-card.mission { background: var(--forest-dark); }
.mv-card.vision { background: var(--forest-dark); }
.mv-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.mv-card.mission .mv-card-label { color: var(--gold); }
.mv-card.vision .mv-card-label { color: var(--gold); }
.mv-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}
.mv-card.mission p { color: rgba(244,239,228,0.88); }
.mv-card.vision p { color: rgba(244,239,228,0.88); }

.stats-bar { background: var(--forest-dark); padding: 64px 0; }
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(244,239,228,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5rem;
}

.about-values-section { background: var(--beige); }

/* Location */
.location-section { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.location-map {
  width: 100%; height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: var(--beige);
}

/* ─── SELL TREE PAGE ───────────────────────────────────────────────── */
.sell-hero-bg {
  background: linear-gradient(150deg, #1C3A22 0%, #2D5C35 50%, #3D2B1A 100%);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
  background: var(--beige);
  border-radius: 10px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(28,58,34,0.07);
  line-height: 1;
  position: absolute;
  top: 0.5rem; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.step-icon {
  width: 54px; height: 54px;
  background: var(--forest-dark);
  border-radius: 50%;
  margin: 1.5rem auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  color: var(--gold);
}
.step-card h4 { font-size: 0.95rem; color: var(--forest-dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.85rem; color: #6B5B4E; }

/* ─── FORMS ────────────────────────────────────────────────────────── */
.form-section { background: var(--cream); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--forest-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--wood);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-bright);
  box-shadow: 0 0 0 3px rgba(59,109,17,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D2B1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6B5B4E;
  cursor: pointer;
}
.form-checkbox input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--forest-bright); -webkit-appearance: auto; appearance: auto; }
.form-checkbox a { color: var(--forest-bright); text-decoration: underline; }
.form-submit { margin-top: 0.5rem; }
.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(59,109,17,0.09);
  border: 1px solid rgba(59,109,17,0.25);
  border-radius: var(--radius);
  color: var(--forest-bright);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 16px;
  padding: 3rem;
}

/* ─── CONTACT PAGE ─────────────────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--forest-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-bright);
  margin-bottom: 0.25rem;
}
.contact-info-text { font-size: 0.92rem; color: var(--wood); line-height: 1.6; }
.contact-info-text a:hover { color: var(--forest-bright); }
.map-embed {
  width: 100%; height: 400px;
  border-radius: 12px;
  border: none;
  display: block;
}
.contact-form-section {
  background: var(--beige);
  margin-top: 0;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .section-pad { padding: 80px 0; }
  .products-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .usage-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .story-inner,
  .about-story-inner,
  .product-detail-grid,
  .location-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .logo-img { height: 72px; }
  .logo-text-main { font-size: 1.2rem; }
  .logo-text-sub { font-size: 0.56rem; }
  .footer-brand .logo-img { height: 150px; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header & nav */
  .nav, .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 52px; }
  .logo-text-main { font-size: 1.05rem; }
  .logo-text-sub { font-size: 0.5rem; letter-spacing: 0.12em; }

  /* Topbar — phone only, click-to-call is the priority on mobile */
  .topbar { padding: 0 1.25rem; justify-content: flex-end; }
  .topbar-social, .topbar-contact a[href^="mailto"], .topbar-divider, .topbar-contact a.topbar-phone-secondary { display: none; }
  .topbar-rotator-track { animation: none; }
  .topbar-address { display: none; }

  /* Footer logo */
  .footer-brand .logo-img { height: 110px; }
  .footer-slogan { font-size: 1rem; }

  /* Grids → single column */
  .products-grid, .values-grid, .usage-grid,
  .how-steps, .grid-2col, .grid-3col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Flex stacks */
  .stats-inner { flex-direction: column; gap: 2rem; }
  .delivery-stats { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }

  /* Sections */
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }
  .page-hero { padding-bottom: 2.5rem; min-height: 260px; }

  /* Maps */
  .map-embed { height: 280px; }
  .location-map { height: 260px; }

  /* Data table — horizontal scroll */
  .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .data-table th, .data-table td { padding: 0.75rem 1rem; }

  /* Forms — 16px min to prevent iOS Safari auto-zoom on focus */
  .form-wrap { padding: 1.75rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Misc */
  .hero-sub { font-size: 0.95rem; }
  .stat-num { font-size: 2.75rem; }

  /* Product spec rows — wrap on narrow screens */
  .product-spec-item { flex-direction: column; gap: 0.2rem; align-items: flex-start; }
  .spec-val { color: #6B5B4E; }
}

/* Short viewports — landscape phones, small Android — keep mobile nav usable */
@media (max-height: 600px) {
  .mobile-nav { gap: 1rem; padding: 4rem 1.5rem 1.5rem; justify-content: flex-start; }
  .mobile-nav a { font-size: 1.4rem; }
  .mobile-nav-cta { margin-top: 0.25rem; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .logo-img { height: 44px; }
  .logo-text-main { font-size: 0.92rem; }
  .logo-text-sub { font-size: 0.44rem; letter-spacing: 0.1em; }
  .footer-brand .logo-img { height: 90px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.65rem; }

  .section-pad { padding: 52px 0; }
  .section-pad-sm { padding: 36px 0; }

  /* Single col on very small screens */
  .gallery-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: repeat(2, 1fr); }

  .map-embed { height: 240px; }
  .location-map { height: 220px; }
  .form-wrap { padding: 1.25rem; }
  .page-hero { min-height: 220px; }

  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-slogan { font-size: 0.9rem; }
}