/* ============================================================
   SeeThePeak — Global Stylesheet
   Palette: deep forest / warm stone / mountain amber
   ============================================================ */

:root {
  --forest:   #1a3a2a;
  --forest-mid: #2d5a3d;
  --forest-light: #3d7a52;
  --amber:    #e8882a;
  --amber-light: #f0a855;
  --stone:    #f5f0e8;
  --stone-mid: #e8e0d0;
  --charcoal: #2c2c2c;
  --slate:    #4a6572;
  --white:    #ffffff;
  --shadow:   rgba(26, 58, 42, 0.15);
  --shadow-heavy: rgba(26, 58, 42, 0.35);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(26, 58, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
  font-style: italic;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}

/* SVG mountain logo mark */
.nav-logo-mark svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 136, 42, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
}

.btn-forest:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-heavy);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15,31,23,0.9) 0%, rgba(26,58,42,0.75) 40%, rgba(45,90,61,0.6) 70%, rgba(232,136,42,0.15) 100%);
  z-index: 1;
}

/* Procedural mountain silhouette via CSS clip-path layers */
.hero-mountain {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg,
    #0f1f17 0%,
    #1a3a2a 30%,
    #2d5a3d 55%,
    #3d6b47 70%,
    #5a8a60 85%,
    #7ab080 100%
  );
}

.hero-mountain::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: #1a2e1e;
  clip-path: polygon(
    0% 100%, 0% 85%, 5% 72%, 10% 85%, 14% 60%, 18% 45%, 22% 62%,
    26% 38%, 30% 20%, 34% 38%, 37% 55%, 40% 30%, 44% 5%, 47% 22%,
    50% 38%, 53% 18%, 57% 0%, 60% 22%, 63% 38%, 67% 55%, 70% 30%,
    74% 48%, 78% 62%, 82% 42%, 86% 58%, 90% 75%, 94% 60%, 100% 78%, 100% 100%
  );
}

.hero-mountain::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, #0d1a11, #0f1f17);
  clip-path: polygon(
    0% 100%, 0% 70%, 8% 55%, 15% 70%, 22% 45%, 30% 60%, 38% 38%,
    46% 55%, 54% 35%, 62% 52%, 70% 38%, 78% 55%, 86% 40%, 94% 60%, 100% 48%, 100% 100%
  );
}

/* Snow caps */
.hero-snow {
  position: absolute;
  top: 15%; left: 0; right: 0;
  height: 30%;
  z-index: 1;
  background: transparent;
}

.hero-snow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: rgba(255,255,255,0.06);
  clip-path: polygon(
    44% 100%, 45% 80%, 46% 60%, 47% 40%, 48% 20%, 49% 5%, 50% 0%, 51% 5%, 52% 20%, 53% 40%, 54% 60%, 55% 80%, 56% 100%
  );
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(1px 1px at 15% 12%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 8%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 42% 5%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 72% 7%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 13%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 18%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 33% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 22%, rgba(255,255,255,0.3) 0%, transparent 100%);
}

/* Ambient glow at summit */
.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,136,42,0.18) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 5%;
  padding-top: 72px;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  display: block;
  width: 40px; height: 2px;
  background: var(--amber);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Stat strip ── */
.stat-strip {
  background: var(--forest);
  padding: 2.5rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Category Section ── */
.categories-section {
  padding: 5rem 5%;
  background: var(--stone);
}

.categories-header {
  margin-bottom: 3rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card:hover .category-card-inner {
  transform: scale(1.04);
}

.category-card-inner {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
}

/* Each category gets a distinct visual treatment */
.cat-jackets   { background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 50%, #4a7a5a 100%); }
.cat-footwear  { background: linear-gradient(135deg, #3d2a1a 0%, #6b4a2d 50%, #8a6545 100%); }
.cat-backpacks { background: linear-gradient(135deg, #1a2a3d 0%, #2d4a6b 50%, #3d6a8a 100%); }
.cat-climbing  { background: linear-gradient(135deg, #3d1a1a 0%, #6b2d2d 50%, #8a4a4a 100%); }
.cat-layers    { background: linear-gradient(135deg, #2a1a3d 0%, #4a2d6b 50%, #6a4a8a 100%); }
.cat-accessories { background: linear-gradient(135deg, #1a3a38 0%, #2d5a56 50%, #3d7a75 100%); }

/* Abstract terrain shapes inside each card */
.category-card-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: rgba(0,0,0,0.25);
  clip-path: polygon(0 100%, 0 40%, 20% 55%, 40% 30%, 60% 50%, 80% 25%, 100% 45%, 100% 100%);
}

.category-card-inner::after {
  content: '';
  position: absolute;
  top: 20%; right: 15%;
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  filter: blur(20px);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.category-icon {
  width: 40px; height: 40px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}

.category-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--transition), transform var(--transition);
}

.category-card:hover .category-arrow {
  background: var(--amber);
  transform: translate(2px, -2px);
}

/* ── Featured Products ── */
.featured-section {
  padding: 5rem 5%;
  background: var(--white);
}

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

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

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-heavy);
}

.product-card:hover .product-img-inner {
  transform: scale(1.05);
}

.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-img-inner {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product color classes — abstract illustration backgrounds */
.pc-slate    { background: linear-gradient(135deg, #3a4a55 0%, #4a6572 60%, #6a8595 100%); }
.pc-amber    { background: linear-gradient(135deg, #5a3515 0%, #8a5520 60%, #c07830 100%); }
.pc-forest   { background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 60%, #4a8060 100%); }
.pc-stone    { background: linear-gradient(135deg, #4a4035 0%, #6a5a48 60%, #8a7a68 100%); }
.pc-brown    { background: linear-gradient(135deg, #3a2510 0%, #6a4520 60%, #8a6035 100%); }
.pc-teal     { background: linear-gradient(135deg, #1a3a3a 0%, #2d5a5a 60%, #408080 100%); }
.pc-charcoal { background: linear-gradient(135deg, #252525 0%, #3a3a3a 60%, #555555 100%); }
.pc-green    { background: linear-gradient(135deg, #1e3d1e 0%, #2d5a2d 60%, #3d7a3d 100%); }
.pc-blue     { background: linear-gradient(135deg, #1a2a3d 0%, #2d4a6b 60%, #3a6090 100%); }
.pc-red      { background: linear-gradient(135deg, #3d1a1a 0%, #6b2d2d 60%, #903a3a 100%); }
.pc-graphite { background: linear-gradient(135deg, #2a2a30 0%, #3d3d48 60%, #505060 100%); }
.pc-cream    { background: linear-gradient(135deg, #4a3d2a 0%, #6a5a3d 60%, #8a7a58 100%); }
.pc-navy     { background: linear-gradient(135deg, #15152a 0%, #252548 60%, #353568 100%); }
.pc-orange   { background: linear-gradient(135deg, #4a2a0a 0%, #7a4a15 60%, #b06a20 100%); }

/* Abstract product shape in card */
.product-img-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: rgba(0,0,0,0.2);
  clip-path: polygon(0 100%, 0 50%, 25% 30%, 50% 50%, 75% 25%, 100% 45%, 100% 100%);
}

.product-img-inner::after {
  content: '';
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  filter: blur(15px);
  position: relative;
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 10;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-bestseller { background: var(--amber); color: var(--white); }
.badge-new        { background: var(--forest-light); color: var(--white); }
.badge-sale       { background: #c0392b; color: var(--white); }

.product-wishlist {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.product-wishlist:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.1);
}

.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-short-desc {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.price-original {
  font-size: 0.9rem;
  color: var(--slate);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--slate);
}

.stars {
  display: flex;
  gap: 1px;
}

.star { color: var(--amber); font-size: 0.75rem; }
.star-empty { color: var(--stone-mid); }

.product-add-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}

.product-add-btn:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* ── Promo Banner ── */
.promo-banner {
  padding: 5rem 5%;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.promo-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,136,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: rgba(0,0,0,0.15);
  clip-path: polygon(0 100%, 0 40%, 15% 55%, 30% 35%, 45% 55%, 60% 30%, 75% 50%, 90% 35%, 100% 50%, 100% 100%);
  pointer-events: none;
}

.promo-content { position: relative; z-index: 2; flex: 1; }

.promo-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.promo-text {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.promo-visual {
  position: relative;
  z-index: 2;
  width: 380px;
  flex-shrink: 0;
  height: 280px;
}

/* Stylized tent / gear illustration */
.promo-visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.promo-tent {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 160px;
}

.promo-tent::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0; height: 0;
  border-left: 110px solid transparent;
  border-right: 110px solid transparent;
  border-bottom: 140px solid rgba(232,136,42,0.7);
}

.promo-tent::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0; height: 0;
  border-left: 90px solid transparent;
  border-right: 90px solid transparent;
  border-bottom: 120px solid rgba(232,136,42,0.4);
  left: 20px;
}

.promo-moon {
  position: absolute;
  top: 20%; right: 15%;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255, 240, 200, 0.9);
  box-shadow: 0 0 30px rgba(255,240,200,0.5);
}

/* ── Newsletter / CTA Strip ── */
.cta-strip {
  padding: 4rem 5%;
  background: var(--stone);
  text-align: center;
}

.cta-strip-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--stone-mid);
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}

.newsletter-input:focus {
  border-color: var(--forest-light);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.social-link:hover {
  border-color: var(--amber);
  background: rgba(232,136,42,0.15);
  color: var(--amber);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--amber);
}

/* ── Products Page ── */
.page-hero {
  padding-top: 72px;
  min-height: 280px;
  background: var(--forest);
  display: flex;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(0,0,0,0.15);
  clip-path: polygon(0 100%, 0 20%, 20% 60%, 40% 20%, 60% 55%, 80% 25%, 100% 55%, 100% 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* Filter bar */
.filter-bar {
  background: var(--stone);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--stone-mid);
}

.filter-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--stone-mid);
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

/* Products listing layout */
.products-section {
  padding: 3rem 5%;
  min-height: 60vh;
}

.products-count {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* ── Product Detail Page ── */
.detail-section {
  padding-top: 72px;
  padding-bottom: 5rem;
}

.detail-breadcrumb {
  padding: 1.5rem 5%;
  background: var(--stone);
  font-size: 0.85rem;
  color: var(--slate);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.detail-breadcrumb a {
  transition: color var(--transition);
}

.detail-breadcrumb a:hover { color: var(--forest); }

.detail-breadcrumb span { color: var(--stone-mid); }

.detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.detail-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-image-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: rgba(0,0,0,0.25);
  clip-path: polygon(0 100%, 0 30%, 20% 55%, 40% 25%, 60% 48%, 80% 20%, 100% 42%, 100% 100%);
}

.detail-image-inner::after {
  content: '';
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  filter: blur(25px);
  position: relative;
  z-index: 1;
}

.detail-info {}

.detail-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 0.5rem;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--slate);
}

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--stone-mid);
}

.detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  font-family: var(--font-display);
}

.detail-price-orig {
  font-size: 1.2rem;
  color: var(--slate);
  text-decoration: line-through;
}

.detail-save-badge {
  background: rgba(192,57,43,0.1);
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.detail-desc {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.detail-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-actions .btn {
  flex: 1;
  justify-content: center;
}

.detail-features {
  background: var(--stone);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.detail-features h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.detail-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-features ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.detail-features ul li::before {
  content: '✓';
  color: var(--forest-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* Related products */
.related-section {
  padding: 4rem 5%;
  background: var(--stone);
}

/* ── About Page ── */
.about-hero {
  padding-top: 72px;
  min-height: 60vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(15,31,23,0.95) 0%, rgba(26,58,42,0.8) 50%, rgba(45,90,61,0.6) 100%);
  z-index: 1;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f1f17 0%, #1a3a2a 40%, #2d5a3d 70%, #3d6b47 100%);
}

.about-hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: rgba(0,0,0,0.2);
  clip-path: polygon(
    0% 100%, 0% 50%, 8% 35%, 16% 50%, 24% 25%, 32% 42%, 40% 18%, 48% 35%,
    50% 10%, 52% 28%, 60% 45%, 68% 22%, 76% 40%, 84% 28%, 92% 45%, 100% 35%, 100% 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 720px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.about-hero h1 em {
  color: var(--amber);
  font-style: italic;
}

.about-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
}

/* Story section */
.story-section {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #1a3a2a 0%, #2d5a3d 40%, #3d8050 70%, #5aaa70 100%);
}

.story-image::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(0,0,0,0.3);
  clip-path: polygon(0 100%, 0 20%, 20% 50%, 40% 15%, 60% 45%, 80% 15%, 100% 40%, 100% 100%);
}

.story-image::after {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,255,255,0.12), transparent);
  filter: blur(20px);
}

.story-quote {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  background: rgba(15,31,23,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--amber);
  z-index: 2;
}

.story-quote p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.55;
}

.story-quote cite {
  display: block;
  font-size: 0.8rem;
  color: var(--amber);
  margin-top: 0.5rem;
  font-style: normal;
}

.story-content {}

.story-content p {
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* Values grid */
.values-section {
  padding: 5rem 5%;
  background: var(--stone);
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px var(--shadow-heavy);
}

.value-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.value-icon-green   { background: rgba(45, 90, 61, 0.12); }
.value-icon-amber   { background: rgba(232, 136, 42, 0.12); }
.value-icon-slate   { background: rgba(74, 101, 114, 0.12); }

.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.value-desc {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Team section */
.team-section {
  padding: 5rem 5%;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  max-width: 140px;
  position: relative;
}

.avatar-1 { background: linear-gradient(135deg, #1a3a2a, #3d8050); }
.avatar-2 { background: linear-gradient(135deg, #1a2a3d, #3d6090); }
.avatar-3 { background: linear-gradient(135deg, #3d2a1a, #8a5530); }
.avatar-4 { background: linear-gradient(135deg, #2a1a3d, #6a4090); }

.team-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.2), transparent 55%);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--forest-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Timeline */
.timeline-section {
  padding: 5rem 5%;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,<svg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'><rect width='60' height='60' fill='none'/><path d='M0 30 L30 0 L60 30 L30 60 Z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/></svg>") repeat;
  pointer-events: none;
}

.timeline-section .section-title { color: var(--white); }
.timeline-section .section-label { }

.timeline {
  position: relative;
  margin-top: 3rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-connector {
  flex-direction: row-reverse;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
  width: calc(50% - 2rem);
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(232,136,42,0.25);
}

.timeline-content {
  width: calc(50% - 2rem);
  flex-shrink: 0;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; }

.text-center { text-align: center; }

.mt-auto { margin-top: auto; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stat-strip    { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid  { grid-template-columns: 1fr; }
  .detail-container { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .promo-banner { flex-direction: column; }
  .promo-visual { width: 100%; }
  .nav-links { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}
