/* ══════════════════════════════════════════
   BUTTER BAY — Design System
   Colors extracted from brand assets:
   - Deep Olive:  #2D4A3E
   - Warm Brown:  #5C3D2E  
   - Gold:        #C5A55A
   - Cream:       #FAF6F0
   - Beige:       #EDE6DA
   - Rich Caramel:#D4956A
   ══════════════════════════════════════════ */

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

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

:root {
  --olive: #2D4A3E;
  --olive-light: #3A6152;
  --brown: #5C3D2E;
  --brown-dark: #3E2A1F;
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --cream: #FAF6F0;
  --beige: #EDE6DA;
  --caramel: #D4956A;
  --white: #FFFFFF;
  --text-dark: #2A1F17;
  --text-mid: #6B5B4E;
  --text-light: #9A8B7D;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brown); }

/* ══════════ LOADER ══════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader .loader-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
#loader .loader-bar {
  width: 120px; height: 2px; background: rgba(197,165,90,0.2);
  margin-top: 1.5rem; border-radius: 2px; overflow: hidden;
}
#loader .loader-bar::after {
  content: ''; display: block; width: 40%; height: 100%;
  background: var(--gold);
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderPulse { to { opacity: 0.5; } }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ══════════ NAVIGATION ══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease-smooth);
}
nav.scrolled {
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(45,74,62,0.08);
  padding: 0.9rem 3rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--olive); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500;
  color: rgba(250,246,240,0.8);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.3s; }
nav.scrolled .nav-toggle span { background: var(--olive); }
.nav-close { display: none; }
.nav-overlay { display: none; }

/* ══════════ HERO ══════════ */
#hero {
  position: relative; min-height: 100vh;
  background: var(--olive);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(197,165,90,0.06) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(197,165,90,0.04) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1400px;
  margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
}
.hero-text { padding-right: 2rem; }
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-smooth) 0.5s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-smooth) 0.7s forwards;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(250,246,240,0.6);
  max-width: 440px;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-smooth) 0.9s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-smooth) 1.1s forwards;
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(197,165,90,0.3); }
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-image-box {
  position: relative;
  height: 70vh; max-height: 650px;
  opacity: 0; transform: scale(0.95);
  animation: heroImgIn 1s var(--ease-smooth) 0.6s forwards;
}
.hero-image-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-frame {
  position: absolute; inset: -12px;
  border: 1px solid rgba(197,165,90,0.2);
  pointer-events: none;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroImgIn { to { opacity: 1; transform: scale(1); } }

/* ══════════ SECTION COMMONS ══════════ */
section { padding: 7rem 3rem; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--olive);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1rem; line-height: 1.7;
  color: var(--text-mid);
  max-width: 520px;
}

/* ══════════ ABOUT / STORY ══════════ */
#story {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.story-container {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.story-image-stack {
  position: relative;
  height: 550px;
  padding: 20px;
}
.story-image-stack img {
  position: absolute;
  object-fit: cover;
}
.story-img-1 {
  width: 80%; height: 85%;
  top: 0; left: 0;
  z-index: 3;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(45,74,62,0.15);
}
.story-img-2 {
  width: 45%; height: 45%;
  bottom: -10px; right: -10px;
  z-index: 2;
  border-radius: 12px;
  border: 5px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
/* Floating badge — top-left of main image */
.story-badge {
  position: absolute;
  top: 0; left: 0;
  z-index: 3;
  background: var(--olive);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: 12px 0 12px 0;
  text-align: center;
  box-shadow: 0 8px 24px rgba(45,74,62,0.25);
}
.story-badge .badge-icon {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  display: block;
}
.story-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
}
.story-text .section-subtitle { margin-bottom: 2rem; }
.story-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.value-item {
  padding: 1.5rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.value-item p {
  font-size: 0.82rem; line-height: 1.6;
  color: var(--text-mid);
}

/* ══════════ PRODUCTS ══════════ */
#products {
  background: var(--cream);
  position: relative;
}
.products-header {
  text-align: center;
  margin-bottom: 4rem;
}
.products-header .section-subtitle { margin: 0 auto; }

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45,74,62,0.08), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(45,74,62,0.06);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), border-color 0.4s;
}
.product-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45,74,62,0.12), 0 8px 20px rgba(0,0,0,0.06);
  border-color: rgba(197,165,90,0.15);
}
.product-card-image {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
/* Inner shadow on image for depth */
.product-card-image::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 -40px 40px -20px rgba(0,0,0,0.06);
  pointer-events: none;
}
.product-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(45,74,62,0.55) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-info {
  padding: 1.8rem 1.5rem;
  border-top: 1px solid var(--beige);
  position: relative;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.product-card-desc {
  font-size: 0.85rem; line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 0.8rem;
}
.product-card-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: linear-gradient(135deg, rgba(197,165,90,0.15), rgba(197,165,90,0.08));
  border: 1px solid rgba(197,165,90,0.4);
}

/* ══════════ MARQUEE / TICKER ══════════ */
.marquee-section {
  background: var(--olive);
  padding: 1.2rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 3rem;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin: 0 1.5rem;
  vertical-align: middle;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════ FEATURED / HIGHLIGHT ══════════ */
#highlight {
  background: var(--olive);
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}
/* Layered background radials for depth */
#highlight::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(197,165,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(197,165,90,0.05) 0%, transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(0,0,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}
/* Animated shimmer line across the top */
#highlight::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: highlightShimmer 4s ease-in-out infinite;
}
@keyframes highlightShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.highlight-container {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
}

/* ── Text side ── */
.highlight-text .section-label {
  color: var(--gold);
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}
.highlight-text .section-label::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.highlight-text .section-title {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.5rem;
}
.highlight-text .section-subtitle {
  color: rgba(250,246,240,0.55);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Feature list — refined with connector lines */
.highlight-features {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid rgba(197,165,90,0.2);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}
.highlight-feature {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem; color: rgba(250,246,240,0.8);
  padding: 0.9rem 0;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}
.highlight-feature:hover {
  color: var(--cream);
  transform: translateX(4px);
}
/* Gold dot on the left border */
.highlight-feature::before {
  content: '';
  position: absolute;
  left: -1.5rem; top: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(197,165,90,0.4);
}
.highlight-feature .check {
  width: 24px; height: 24px;
  background: rgba(197,165,90,0.1);
  border: 1px solid rgba(197,165,90,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.highlight-feature:hover .check {
  background: rgba(197,165,90,0.2);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(197,165,90,0.2);
}
.highlight-feature .check svg { width: 12px; height: 12px; stroke: var(--gold); }

/* ── Image side — with decorative frame ── */
.highlight-image-wrapper {
  position: relative;
  padding: 20px;
}
/* Decorative corner accents */
.highlight-image-wrapper::before,
.highlight-image-wrapper::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.highlight-image-wrapper::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.highlight-image-wrapper::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}
.highlight-image-wrapper:hover::before,
.highlight-image-wrapper:hover::after {
  opacity: 1;
}

.highlight-image {
  position: relative;
  height: 560px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.highlight-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}
.highlight-image:hover img {
  transform: scale(1.03);
}
/* Subtle inner glow on image */
.highlight-image::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
  pointer-events: none;
}

/* ── Price badge — premium floating card ── */
.highlight-badge {
  position: absolute;
  bottom: -15px; left: -15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brown-dark);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(197,165,90,0.35);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}
.highlight-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(197,165,90,0.45);
}
.highlight-badge .big {
  font-size: 2.2rem; font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.highlight-badge .small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-body);
  font-weight: 600;
  opacity: 0.8;
}

/* Decorative "Bestseller" ribbon top-right */
.highlight-ribbon {
  position: absolute;
  top: 20px; right: -35px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 3rem;
  transform: rotate(45deg);
  z-index: 4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* ══════════ TESTIMONIALS ══════════ */
#testimonials {
  background: var(--beige);
  text-align: center;
}
.testimonials-header { margin-bottom: 4rem; }
.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s var(--ease-smooth);
}
.testimonial-card.active { display: flex; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--olive);
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -2rem; left: -1rem;
  font-family: var(--font-display);
  line-height: 1;
  opacity: 0.3;
}
.testimonial-author {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.testimonial-dots {
  display: flex; gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.testimonial-dots button {
  width: 8px; height: 8px;
  background: var(--text-light);
  border: none; border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testimonial-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════ INSTAGRAM / CTA ══════════ */
#instagram {
  background: var(--white);
  text-align: center;
}
.instagram-header { margin-bottom: 3rem; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.instagram-item:hover img { transform: scale(1.08); }
.instagram-item::after {
  content: '@butterbay';
  position: absolute; inset: 0;
  background: rgba(45,74,62,0.6);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram-item:hover::after { opacity: 1; }
.instagram-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.instagram-cta:hover {
  background: var(--olive);
  color: var(--cream);
}

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--brown-dark);
  color: rgba(250,246,240,0.6);
  padding: 5rem 3rem 2rem;
}
.footer-container {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo {
  color: var(--cream);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem; line-height: 1.7;
  max-width: 300px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  color: rgba(250,246,240,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,240,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,246,240,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,240,0.5);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════ SCROLL REVEAL ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  section { padding: 5rem 2rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 8rem 2rem 4rem; }
  .hero-text { padding-right: 0; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-image-box { height: 50vh; max-height: 450px; }
  .hero-image-frame { display: none; }
  .story-container { grid-template-columns: 1fr; gap: 3rem; }
  .story-image-stack { height: 400px; }
  .highlight-container { grid-template-columns: 1fr; }
  .highlight-image-wrapper { order: -1; }
  .highlight-image { height: 400px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  nav { padding: 0.8rem 1.2rem; }
  .nav-logo { font-size: 1.3rem; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--olive);
    flex-direction: column;
    padding: 4.5rem 2rem 2rem; gap: 1.2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-smooth);
    display: flex;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--cream) !important; font-size: 0.9rem; letter-spacing: 0.08em; }
  .nav-toggle { display: flex; z-index: 1002; }

  /* Close button inside menu */
  .nav-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 36px; height: 36px;
    background: none; border: 1px solid rgba(250,246,240,0.2);
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: border-color 0.3s, background 0.3s;
  }
  .nav-close:hover { border-color: var(--gold); background: rgba(197,165,90,0.1); }

  /* Backdrop overlay */
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }

  /* ── Hero — mobile-first redesign ── */
  #hero { min-height: auto; padding-bottom: 2rem; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 6.5rem 1.5rem 2rem;
  }
  .hero-text { padding-right: 0; }
  .hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.08;
    margin-bottom: 1rem;
  }
  .hero-desc {
    font-size: 0.9rem;
    margin: 0 auto 1.8rem;
    max-width: 340px;
    line-height: 1.65;
  }
  .hero-cta {
    padding: 0.85rem 1.8rem;
    font-size: 0.75rem;
    width: auto;
    display: inline-flex;
  }
  .hero-image-box {
    height: 45vh;
    max-height: 380px;
    margin: 0 -0.5rem;
  }
  .hero-image-box img {
    border-radius: 8px;
  }
  .hero-image-frame { display: none; }

  /* ── Sections general ── */
  section { padding: 3.5rem 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .section-label { font-size: 0.6rem; margin-bottom: 0.6rem; }
  .section-subtitle { font-size: 0.88rem; }

  /* ── Story ── */
  .story-container { gap: 2rem; }
  .story-image-stack { height: 320px; padding: 10px; }
  .story-img-1 { width: 78%; height: 80%; border-radius: 12px; }
  .story-img-2 { width: 42%; height: 42%; border-radius: 8px; border-width: 3px; }
  .story-badge { padding: 0.7rem 1rem; }
  .story-badge .badge-icon { font-size: 1.1rem; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .product-card-image { height: 300px; }

  /* ── Story values ── */
  .story-values { grid-template-columns: 1fr; gap: 1rem; }
  .value-item { padding: 1.2rem; }

  /* ── Highlight ── */
  .highlight-container { gap: 2.5rem; }
  .highlight-image { height: 350px; }
  .highlight-text .section-title { font-size: 2rem; }
  .highlight-ribbon { font-size: 0.5rem; padding: 0.3rem 2.5rem; top: 15px; right: -30px; }

  /* ── Testimonials ── */
  .testimonial-quote { font-size: 1.15rem; }

  /* ── Instagram ── */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; }

  /* ── Footer — compact mobile ── */
  footer { padding: 2rem 1.2rem 1rem; }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    text-align: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .footer-brand {
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(250,246,240,0.08);
  }
  .footer-brand .nav-logo {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }
  .footer-brand p {
    display: none; /* Hide long description on mobile to save space */
  }
  /* Link columns — 3 across, compact */
  .footer-col {
    width: 33.33%;
    text-align: center;
    padding: 0 0.2rem;
    margin-bottom: 0;
  }
  .footer-col h5 {
    font-size: 0.55rem;
    margin-bottom: 0.5rem;
  }
  .footer-col ul a { font-size: 0.72rem; }
  .footer-col ul li { margin-bottom: 0.35rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding-top: 1rem;
  }
  .footer-bottom p { font-size: 0.65rem; }
  .footer-social { justify-content: center; gap: 0.6rem; }
  .footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
  }
}

/* ── Extra small screens ── */
@media (max-width: 480px) {
  .hero-content { padding: 5.5rem 1rem 1.5rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 0.82rem; max-width: 290px; }
  .hero-image-box { height: 38vh; max-height: 300px; }

  .section-title { font-size: 1.5rem; }
  .story-image-stack { height: 260px; }
  .story-img-2 { width: 38%; height: 38%; }

  .product-card-image { height: 260px; }
  .product-card-name { font-size: 1.1rem; }
  .product-card-info { padding: 1.3rem 1.2rem; }

  .highlight-image { height: 280px; }
  .highlight-badge { padding: 1rem 1.2rem; }
  .highlight-badge .big { font-size: 1.6rem; }
  .highlight-features { padding-left: 1rem; }
  .highlight-feature { font-size: 0.8rem; padding: 0.7rem 0; }

  .testimonial-quote { font-size: 1rem; padding: 0 0.5rem; }

  .footer-col { width: 50%; margin-bottom: 1.2rem; }
  .footer-brand p { font-size: 0.75rem; max-width: 250px; }
}
