/* ============================================================
   Hugon Veneer — Decospan-Inspired Concept Site
   Original design. No copyrighted material reproduced.
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Palette — warm dark luxury + natural wood tones */
  --dark:       #1a1a18;
  --dark-2:     #2a2a26;
  --dark-3:     #3a3a34;
  --wood:       #8B7355;
  --wood-light: #C4A77D;
  --wood-pale:  #E8DDD0;
  --cream:      #F5F2ED;
  --white:      #FFFFFF;
  --text:       #2C2C28;
  --text-light: #6B665E;
  --text-on-dark: rgba(255,255,255,.92);
  --text-muted-on-dark: rgba(255,255,255,.6);
  --border:     rgba(0,0,0,.08);
  --border-dark: rgba(255,255,255,.12);
  --shadow:     0 20px 60px rgba(0,0,0,.12);
  --shadow-lg:  0 32px 80px rgba(0,0,0,.18);

  /* Typography */
  --font-serif:    Georgia, 'Times New Roman', serif;
  --font-sans:     'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:    100px;
  --container-max: 1280px;

  /* Radius */
  --radius:   6px;
  --radius-lg: 12px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: min(var(--container-max), calc(100% - 48px));
  margin: 0 auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Image Placeholder System ─────────────────────────────── */
.img-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #3a3a34 0%, #2a2a26 50%, #1a1a18 100%);
}
.img-placeholder::after {
  content: attr(data-alt);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px;
  text-align: center;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Navigation ───────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26,26,24,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: background .3s var(--ease);
}
.topbar.scrolled {
  background: rgba(26,26,24,.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--wood);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-text strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav-brand-text span {
  color: var(--text-muted-on-dark);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links > li > a,
.nav-links > li > button {
  color: var(--text-on-dark);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.active > a,
.nav-links > li.active > button {
  color: var(--wood-light);
}
.nav-links > li > button::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  transition: transform .2s var(--ease);
}
.nav-links > li:hover > button::after {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, calc(100vw - 48px));
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-links > li:hover .mega-menu,
.nav-links > li.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}
.mega-section h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--wood);
  margin-bottom: 14px;
  font-weight: 700;
}
.mega-section ul li {
  margin-bottom: 6px;
}
.mega-section ul li a {
  color: var(--text);
  font-size: .9rem;
  transition: color .2s var(--ease);
  display: block;
  padding: 3px 0;
}
.mega-section ul li a:hover {
  color: var(--wood);
}

.mega-featured {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  grid-column: span 1;
}
.mega-featured h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
  font-style: italic;
}
.mega-featured p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}
.mega-featured a {
  color: var(--wood);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .03em;
}
.mega-featured a:hover {
  color: var(--dark);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nav {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .2s var(--ease);
}
.btn-nav-primary {
  background: var(--wood);
  color: var(--white);
}
.btn-nav-primary:hover {
  background: var(--wood-light);
}
.btn-nav-outline {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--text-on-dark);
}
.btn-nav-outline:hover {
  border-color: var(--wood-light);
  color: var(--wood-light);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--text-on-dark);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav a:hover {
  color: var(--wood-light);
}
.mobile-nav .mobile-sub {
  padding-left: 16px;
}
.mobile-nav .mobile-sub a {
  font-size: .95rem;
  color: var(--text-muted-on-dark);
  padding: 10px 0;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .img-placeholder,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,24,.88) 0%,
    rgba(26,26,24,.72) 40%,
    rgba(26,26,24,.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 680px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--wood-light);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--wood-light);
}
.hero-desc {
  color: var(--text-muted-on-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-lg {
  padding: 16px 32px;
  font-size: .95rem;
}
.btn-md {
  padding: 12px 24px;
  font-size: .88rem;
}
.btn-sm {
  padding: 9px 18px;
  font-size: .82rem;
}
.btn-primary {
  background: var(--wood);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--wood-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139,115,85,.3);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark);
}
.btn-secondary:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--wood-light);
  color: var(--wood-light);
}
.btn-outline-dark {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-wood {
  border: 1.5px solid var(--wood);
  color: var(--wood);
  background: transparent;
}
.btn-wood:hover {
  background: var(--wood);
  color: var(--white);
}

/* ── Section Patterns ─────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}
.section-dark {
  background: var(--dark);
  color: var(--text-on-dark);
}
.section-cream {
  background: var(--cream);
}
.section-white {
  background: var(--white);
}

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 16px;
}
.section-dark .section-eyebrow {
  color: var(--wood-light);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-dark .section-title {
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--wood);
}
.section-dark .section-title em {
  color: var(--wood-light);
}
.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}
.section-dark .section-desc {
  color: var(--text-muted-on-dark);
}

/* ── Card Grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-img {
  height: 240px;
  overflow: hidden;
}
.card-img .img-placeholder,
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card-img img,
.card:hover .card-img .img-placeholder {
  transform: scale(1.04);
}
.card-body {
  padding: 28px;
}
.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card-body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-link {
  font-weight: 600;
  font-size: .88rem;
  color: var(--wood);
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover {
  color: var(--dark);
}
.card-link::after {
  content: '\2192';
}

/* Dark section cards */
.section-dark .card {
  background: var(--dark-2);
  color: var(--text-on-dark);
}
.section-dark .card-body p {
  color: var(--text-muted-on-dark);
}
.section-dark .card-link {
  color: var(--wood-light);
}
.section-dark .card-link:hover {
  color: var(--white);
}

/* ── Feature Row ──────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * {
  direction: ltr;
}
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.feature-img .img-placeholder,
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text .section-eyebrow {
  margin-bottom: 12px;
}
.feature-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 18px;
}
.feature-text h2 em {
  font-style: italic;
  color: var(--wood);
}
.section-dark .feature-text h2 em {
  color: var(--wood-light);
}
.feature-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}
.section-dark .feature-text p {
  color: var(--text-muted-on-dark);
}

/* ── Species / Look Grid ──────────────────────────────────── */
.species-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.species-card {
  text-align: center;
  transition: transform .3s var(--ease);
}
.species-card:hover {
  transform: translateY(-3px);
}
.species-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--dark-2);
}
.species-swatch img,
.species-swatch .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.species-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 4px;
}
.species-card p {
  font-size: .8rem;
  color: var(--text-light);
}
.section-dark .species-card p {
  color: var(--text-muted-on-dark);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner-text h3 em {
  font-style: italic;
  color: var(--wood-light);
}
.cta-banner-text p {
  color: var(--text-muted-on-dark);
  font-size: .95rem;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ── Dual CTA ─────────────────────────────────────────────── */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dual-cta-item {
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .3s var(--ease);
}
.dual-cta-item:hover {
  transform: translateY(-2px);
}
.dual-cta-dark {
  background: var(--dark);
}
.dual-cta-wood {
  background: var(--wood);
}
.dual-cta-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.dual-cta-item p {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  margin-bottom: 20px;
}
.dual-cta-item .btn {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.dual-cta-item .btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* ── Spec Table ───────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.spec-table th {
  font-weight: 600;
  color: var(--dark);
  background: var(--cream);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.spec-table td {
  color: var(--text);
}
.spec-table tr:hover td {
  background: rgba(139,115,85,.04);
}

/* ── Inquiry Form ─────────────────────────────────────────── */
.inquiry-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--wood);
  box-shadow: 0 0 0 3px rgba(139,115,85,.12);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── Download Cards ───────────────────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.download-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.download-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wood);
  font-size: 1.4rem;
}
.download-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.download-info p {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.download-info a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--wood);
}

/* ── Contact Info ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-list {
  list-style: none;
}
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list li:last-child {
  border-bottom: none;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wood);
  font-size: 1rem;
}
.contact-detail h4 {
  font-size: .9rem;
  margin-bottom: 2px;
}
.contact-detail p,
.contact-detail a {
  font-size: .85rem;
  color: var(--text-light);
}
.contact-detail a:hover {
  color: var(--wood);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.footer-brand span {
  font-size: .78rem;
  color: var(--text-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted-on-dark);
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--wood-light);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: var(--text-muted-on-dark);
  font-size: .88rem;
  transition: color .2s var(--ease);
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--text-muted-on-dark);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-on-dark);
  font-size: .85rem;
  transition: all .2s var(--ease);
}
.footer-social a:hover {
  border-color: var(--wood-light);
  color: var(--wood-light);
}

/* ── Page Header (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,115,85,.15), transparent);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--wood-light);
}
.page-hero p {
  color: var(--text-muted-on-dark);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .82rem;
}
.breadcrumb a {
  color: var(--text-muted-on-dark);
}
.breadcrumb a:hover {
  color: var(--wood-light);
}
.breadcrumb span {
  color: var(--wood-light);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .species-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-row { gap: 40px; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links,
  .nav-actions .btn-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }

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

  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .feature-img { height: 280px; }

  .dual-cta { grid-template-columns: 1fr; }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .cta-banner-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .spec-table { font-size: .82rem; }
  .spec-table th, .spec-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .species-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
}
