/* ============================================================
   FUEGO Y ESPECIAS — Master Stylesheet
   Design: Sri Lankan Ayurvedic · Dark Premium · Gold Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg-0: #030703;
  --bg-1: #070d07;
  --bg-2: #0c150c;
  --bg-3: #111c11;
  --bg-4: #172417;
  --bg-card: #0d160d;

  --gold: #c9a84c;
  --gold-light: #e5c76a;
  --gold-pale: #f0dfa0;
  --gold-dark: #8a6520;
  --gold-glow: rgba(201, 168, 76, 0.14);
  --gold-border: rgba(201, 168, 76, 0.25);

  --cream: #f0ebe0;
  --cream-dim: #b8b09a;
  --text-muted: #6a6252;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1220px;
  --section-py: clamp(5rem, 9vw, 9rem);

  --t:      0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

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

/* ── Typography helpers ────────────────────────────────────── */
.label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}
.heading {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 300;
  color: var(--cream);
}
.body-text {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}
.rule.center {
  margin: 1.5rem auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 100px;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.section      { padding: var(--section-py) 0; }
.section.alt  { background: var(--bg-2); }
.section.dark { background: var(--bg-0); }
.section-head { text-align: center; margin-bottom: 4rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.9rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: var(--t);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-0);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,235,224,0.3);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(240,235,224,0.05);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-ghost:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Navbar ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(7,13,7,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.4rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding var(--t);
}
.nav.scrolled .nav-inner { padding-top: 0.85rem; padding-bottom: 0.85rem; }

.brand img {
  width: 52px; height: 52px;
  object-fit: contain;
  transition: var(--t);
}
.nav.scrolled .brand img { width: 42px; height: 42px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-link:hover, .nav-link.active         { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-end {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lang-btn {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
  padding: 0.15rem;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-sep { color: var(--text-muted); font-size: 0.55rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 16px;
  cursor: pointer;
  z-index: 101;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--cream);
  transition: var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(3,7,3,0.20) 0%,
    rgba(3,7,3,0.45) 42%,
    rgba(3,7,3,0.72)  82%,
    var(--bg-1) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(4.5rem, 10vh, 7rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 6vh, 5rem);
  max-width: 860px;
  width: 100%;
}
.hero-logo {
  width: auto;
  height: auto;
  max-width: min(390px, 80vw);
  max-height: 32vh;
  object-fit: contain;
  display: block;
  margin: 0 auto 2.8rem;
  filter: drop-shadow(0 6px 36px rgba(201,168,76,0.5));
  animation: floatLogo 7s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.hero-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 1.3rem;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
  z-index: 2;
  gap: 0.55rem;
}
.scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 1; }
}

/* ── Features strip ────────────────────────────────────────── */
.features {
  background: var(--bg-0);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 2.4rem 0;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-right: 1px solid var(--gold-border);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 1.7rem; flex-shrink: 0; }
.feature-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
}
.feature-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Certifications strip ──────────────────────────────────── */
.certs {
  background: var(--bg-0);
  border-bottom: 1px solid var(--gold-border);
  padding: 2rem 0;
}
.certs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.certs-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.certs-logos { max-width: 430px; }
.certs-logos img {
  width: 100%;
  filter: grayscale(0.1) brightness(0.88);
  transition: filter var(--t);
}
.certs-logos img:hover { filter: none; }

/* ── Split layout ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--gold-border);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 1;
}
.split-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.split-visual:hover img { transform: scale(1.04); }
.split-text { display: flex; flex-direction: column; gap: 1rem; }

/* ── Category grid ─────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.cat-card:hover {
  border-color: rgba(201,168,76,0.55);
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.18);
}
.cat-card:hover::before { opacity: 1; }
.cat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  transition: opacity var(--t);
}
.cat-card:hover::after { opacity: 1; }
.cat-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  position: relative; z-index: 1;
}
.cat-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.7;
  flex: 1;
  position: relative; z-index: 1;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative; z-index: 1;
}
.cat-link::after { content: '→'; transition: transform var(--t); display: inline-block; }
.cat-card:hover .cat-link::after { transform: translateX(5px); }

/* ── Quote section ─────────────────────────────────────────── */
.quote-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,7,3,0.88);
}
.quote-body {
  position: relative;
  z-index: 2;
  max-width: 740px;
  text-align: center;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 9rem;
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.2;
  display: block;
  margin-bottom: 2rem;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.2vw, 2.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.quote-cite {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--bg-0);
  border-top: 1px solid var(--gold-border);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { width: 62px; margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 230px;
}
.footer-col-title {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.9; }
.footer-contact strong { color: var(--cream-dim); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy  { font-size: 0.72rem; color: var(--text-muted); }
.footer-motto { font-family: var(--font-serif); font-style: italic; font-size: 0.9rem; color: var(--gold); }

/* ── Back to top ───────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 42px; height: 42px;
  background: var(--bg-3);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--t);
  cursor: pointer;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold-glow); border-color: var(--gold); }

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.30s; }
.d3 { animation-delay: 0.45s; }
.d4 { animation-delay: 0.60s; }
.d5 { animation-delay: 0.75s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.td1 { transition-delay: 0.08s; }
.reveal.td2 { transition-delay: 0.18s; }
.reveal.td3 { transition-delay: 0.28s; }
.reveal.td4 { transition-delay: 0.38s; }
.reveal.td5 { transition-delay: 0.48s; }
.reveal.td6 { transition-delay: 0.58s; }
.reveal.td7 { transition-delay: 0.68s; }

/* ── Page header (inner pages) ─────────────────────────────── */
.page-header {
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
  position: relative;
}
.page-header-sub {
  font-size: 0.95rem;
  color: var(--cream-dim);
  position: relative;
}

/* ── Catalog filters ───────────────────────────────────────── */
.filters {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}
.filter-btn {
  padding: 0.48rem 1.3rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  color: var(--cream-dim);
  background: transparent;
  transition: var(--t);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
}

/* ── Product cards ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.14);
}
.product-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.product-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), opacity var(--t);
}
.product-thumb img.hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: contain;
  background: #ffffff;
  padding: 0.5rem;
}
.product-card:hover .product-thumb img.hover-img {
  opacity: 1;
}
.product-card:hover .product-thumb img:not(.hover-img) {
  transform: scale(1.06);
}
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: background var(--t-slow);
}
.thumb-icon   { font-size: 2.8rem; opacity: 0.35; }
.thumb-cat {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Placeholder gradients per category */
.ph-gewuerze  { background: linear-gradient(145deg, #162a10, #0d1d09); }
.ph-bbq       { background: linear-gradient(145deg, #201208, #130a04); }
.ph-zimt      { background: linear-gradient(145deg, #261608, #160e05); }
.ph-pfeffer   { background: linear-gradient(145deg, #1c0808, #120504); }
.ph-kokosnuss { background: linear-gradient(145deg, #0e2020, #081515); }
.ph-tee       { background: linear-gradient(145deg, #0e1e16, #081410); }
.ph-geschenk  { background: linear-gradient(145deg, #201c06, #141202); }
.product-card:hover .ph-gewuerze  { background: linear-gradient(145deg, #1e3a18, #132610); }
.product-card:hover .ph-bbq       { background: linear-gradient(145deg, #2a1a08, #1a0e04); }
.product-card:hover .ph-zimt      { background: linear-gradient(145deg, #321e0a, #201408); }
.product-card:hover .ph-pfeffer   { background: linear-gradient(145deg, #260a0a, #1a0606); }
.product-card:hover .ph-kokosnuss { background: linear-gradient(145deg, #102a2a, #0a1c1c); }
.product-card:hover .ph-tee       { background: linear-gradient(145deg, #122618, #0a1a10); }
.product-card:hover .ph-geschenk  { background: linear-gradient(145deg, #282008, #1a1604); }

.coming-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(3,7,3,0.82);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.28rem 0.8rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.product-body { padding: 1.5rem; flex: 1; }
.product-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.2rem 0.68rem;
  margin-bottom: 0.75rem;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.7;
}
.product-foot {
  padding: 0.9rem 1.5rem 1.4rem;
  border-top: 1px solid var(--gold-border);
}
.product-origin {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.product-origin strong { color: var(--gold); font-weight: 500; }

/* ── About page ────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: var(--t);
}
.value-card:hover {
  transform: translateX(6px);
  background: var(--bg-3);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.value-icon  { font-size: 2rem; margin-bottom: 1rem; }
.value-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.55rem;
}
.value-text { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.8; }

/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { min-height: 420px; }

/* Certifications */
.cert-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-image { max-width: 520px; width: 100%; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .features-inner      { grid-template-columns: 1fr 1fr; }
  .feature-item        { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--gold-border); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  .split               { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse       { direction: ltr; }
  .gallery             { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall   { grid-row: span 1; }
  .gallery-item.tall img { min-height: 240px; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 82vw);
    height: 100dvh;
    background: rgba(7,13,7,0.97);
    backdrop-filter: blur(28px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2.2rem 2rem;
    gap: 1.8rem;
    transform: translateX(110%);
    transition: transform var(--t);
    border-left: 1px solid var(--gold-border);
    z-index: 99;
  }
  .nav-menu.open   { transform: translateX(0); }
  .nav-link        { font-size: 1rem; }
  .hamburger       { display: flex; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .cat-grid        { grid-template-columns: 1fr 1fr; }
  .gallery         { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .certs-inner     { flex-direction: column; text-align: center; gap: 1.5rem; }
  /* Photo strip stacks to 2 columns on tablet */
  [style*="grid-template-columns:repeat(3,1fr) repeat(2,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  [style*="grid-template-columns:repeat(3,1fr) repeat(2,1fr)"] > div {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  /* Contact grid stacks */
  [style*="grid-template-columns:1fr 1.6fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 520px) {
  .cat-grid        { grid-template-columns: 1fr; }
  .hero-logo       { max-width: 60vw; max-height: 24vh; margin-bottom: 2rem; }
  .hero-actions    { flex-direction: column; align-items: center; }
  .features-inner  { grid-template-columns: 1fr; }
  .feature-item    { border-right: none !important; }
  .feature-item:last-child { border-bottom: none; }
  .products-grid   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Height-based fix: laptops and short screens ──────────────── */
@media (max-height: 820px) {
  .hero {
    align-items: flex-start;
  }
  .hero-body {
    padding-top: 5.5rem; /* clears fixed nav */
    padding-bottom: 2rem;
  }
  .hero-logo {
    max-height: 18vh;
    max-width: min(260px, 60vw);
    margin-bottom: 1.25rem;
  }
  .hero-h1 {
    margin-bottom: 0.9rem;
  }
  .hero-sub {
    margin-bottom: 1.75rem;
  }
}
@media (max-height: 660px) {
  .hero-body { padding-top: 5rem; }
  .hero-logo { max-height: 15vh; max-width: min(200px, 55vw); }
  .hero-h1   { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 0.75rem; }
  .scroll-hint { display: none; }
}

/* ── AGB Modal ─────────────────────────────────────────────── */
.agb-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
  font-family: var(--font-sans);
}
.agb-link:hover { color: var(--gold); }

.agb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.agb-modal[hidden] { display: none; }

.agb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 2, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.agb-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  width: min(720px, 100%);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.12);
  animation: modalIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.agb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem 1.4rem;
  border-bottom: 1px solid var(--gold-border);
  flex-shrink: 0;
}
.agb-header h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}

.agb-close {
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  width: 36px; height: 36px;
  color: var(--cream-dim);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  flex-shrink: 0;
  line-height: 1;
}
.agb-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.agb-body {
  overflow-y: auto;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-border) transparent;
}
.agb-body::-webkit-scrollbar { width: 5px; }
.agb-body::-webkit-scrollbar-track { background: transparent; }
.agb-body::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 3px; }

.agb-intro {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.agb-body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin: 1.8rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold-border);
}
.agb-body p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.agb-body ul {
  margin: 0.4rem 0 0.8rem 1.2rem;
  padding: 0;
}
.agb-body ul li {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 0.3rem;
}

/* ── Footer Social Icons ─────────────────────────────────── */
.footer-socials {
  margin-top: 1.25rem;
}
.footer-socials-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.social-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.2);
  cursor: default;
  user-select: none;
  transition: color 0.25s;
}
.social-icon-wrap:hover {
  color: rgba(201,168,76,0.4);
}
.social-coming {
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
