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

:root {
  --cream-50: #fdfbf7;
  --cream-100: #f5f0e8;
  --cream-200: #ede5d8;
  --cream-300: #e5d9c8;
  --cream-400: #d4c4ae;
  --earth-dark: #1c1208;
  --earth-brown: #2c1a0e;
  --earth-warm: #3d2314;
  --earth-tan: #8b7355;
  --earth-sand: #b8a089;
  --accent-terracotta: #c4704b;
  --accent-sage: #7a8b69;
  --accent-moss: #5c6b4e;
  --accent-peach: #e8b89a;
  --text-dark: #1c1208;
  --text-muted: #6b5c4d;
  --glass-bg: rgba(253, 251, 247, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--earth-brown);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', Georgia, serif; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--accent-terracotta); color: var(--cream-50); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--earth-sand); border-radius: 10px; border: 2px solid var(--cream-100); }
::-webkit-scrollbar-thumb:hover { background: var(--earth-tan); }

/* Custom Cursor */
.custom-cursor {
  width: 20px; height: 20px;
  background: var(--accent-terracotta);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}
body:hover .custom-cursor { opacity: 1; }
.custom-cursor.hover { transform: translate(-50%, -50%) scale(3); background: white; }
@media (max-width: 1024px) { .custom-cursor { display: none; } }

/* Smooth Section Fade-In */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Global Container */
.container { width: 100%; max-width: 85rem; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px) { .container { padding: 0 1.25rem; } }

.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  padding: 0; transition: all 0.4s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}
.filter-bar {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-bar.filter-bar--hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}
.navbar__inner {
  max-width: 80rem; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--earth-brown);
  display: flex; align-items: center; gap: 0.5rem;
}
.navbar__logo-icon {
  width: 1.75rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
}
.navbar__links { display: flex; gap: 2rem; align-items: center; }
.navbar__links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  color: var(--earth-warm);
  transition: color 0.3s ease;
}
.navbar__links a:hover { color: var(--accent-terracotta); }
.navbar__links a.navbar__cta {
  padding: 0.65rem 1.6rem;
  background: var(--text-dark); 
  color: #ffffff !important;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}
.navbar__links a.navbar__cta:hover { 
  background: var(--earth-brown); 
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hamburger { display: none; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--earth-brown); margin: 5px 0;
  transition: 0.3s ease; border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: radial-gradient(circle at top right, var(--cream-100) 0%, var(--cream-50) 100%);
  position: relative; overflow: hidden;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: white; border: 1px solid var(--cream-200); border-radius: 9999px;
  padding: 0.6rem 1.25rem; margin-bottom: 2.5rem;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--earth-brown); font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  opacity: 0; transform: translateY(1rem);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500; line-height: 1;
  color: var(--earth-brown);
  max-width: 1100px;
  opacity: 0; transform: translateY(1.5rem);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero__title em { font-style: italic; color: var(--accent-sage); }
.hero__desc {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--earth-tan);
  max-width: 600px; margin: 2rem auto 0;
  line-height: 1.7;
  opacity: 0; transform: translateY(1.5rem);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero__buttons {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(1.5rem);
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.btn {
  padding: 0.875rem 2rem; border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.btn--primary { background: var(--earth-brown); color: #ffffff; }
.btn--primary:hover { background: var(--earth-warm); }
.btn--outline { border: 1px solid var(--earth-brown); color: var(--earth-brown); }
.btn--outline:hover { background: var(--earth-brown); color: #ffffff; }
.btn--sage { background: var(--accent-sage); color: #ffffff; }
.btn--sage:hover { background: var(--accent-moss); }

.hero__stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 2.5rem;
  opacity: 0; transform: translateY(1.5rem);
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--earth-brown);
}
.hero__stat-label {
  font-size: 0.75rem; color: var(--earth-tan); margin-top: 0.25rem;
}
.hero__stat-divider {
  width: 1px; height: 2rem; background: var(--earth-sand);
}
.hero__image-wrap {
  width: 100%; max-width: 56rem;
  margin-top: 2.5rem;
  border-radius: 1rem; overflow: hidden;
  opacity: 0; transform: translateY(2.5rem);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero__image-wrap img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}

/* ===== SECTION COMMON ===== */
.section { padding: 4rem 1rem; }
.section--cream-50 { background: var(--cream-50); }
.section--cream-100 { background: var(--cream-100); }
.section { padding: 140px 0; }
.section__container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section__header { text-align: center; margin-bottom: 80px; }
.section__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent-sage); font-weight: 700; margin-bottom: 20px; }
.section__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.1; color: var(--earth-brown); margin-bottom: 24px; }
.section__desc { font-size: 1.1rem; color: var(--earth-tan); max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* PRODUCT GRID PERFECTED */
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.product-card { text-decoration: none; color: inherit; display: block; }
.product-card__image { border-radius: 32px; overflow: hidden; aspect-ratio: 1; margin-bottom: 24px; position: relative; background: white; border: 1px solid var(--cream-100); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .product-card__image { box-shadow: 0 30px 60px rgba(0,0,0,0.08); transform: translateY(-10px); }
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__info { text-align: center; }
.product-card__name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 8px; color: var(--earth-brown); transition: color 0.3s; }
.product-card:hover .product-card__name { color: var(--accent-terracotta); }
.product-card__weight { font-size: 0.85rem; color: var(--earth-tan); text-transform: uppercase; letter-spacing: 0.05em; }

/* PRODUCT BADGES */
.product-card__badge {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 10;
  padding: 0.5rem 1rem; border-radius: 99px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.product-card__badge--best { background: rgba(28, 18, 8, 0.8); color: #fff; }
.product-card__badge--new { background: rgba(255, 255, 255, 0.85); color: var(--earth-dark); }

.product-card:hover .product-card__badge { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* GALLERY BADGE (Detail Page) */
.gallery__badge {
  position: absolute; top: 2rem; left: 2rem; z-index: 10;
  padding: 0.6rem 1.5rem; border-radius: 99px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--earth-dark); color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* FEATURES & BADGES PERFECTED */
.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features__image-area { position: relative; border-radius: 40px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.1); }
.features__image-area img { width: 100%; height: 100%; object-fit: cover; }
.features__badge { 
  position: absolute; bottom: 40px; right: 40px; 
  background: white; padding: 25px 35px; border-radius: 24px; 
  text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
  animation: float 4s ease-in-out infinite;
}
.features__badge-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--accent-sage); line-height: 1; }
.features__badge-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--earth-tan); margin-top: 5px; }

.feature-item { display: flex; gap: 24px; margin-bottom: 35px; }
.feature-item__icon { 
  width: 56px; height: 56px; border-radius: 16px; background: var(--cream-100); 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.5rem; color: var(--accent-sage); flex-shrink: 0;
  transition: all 0.3s;
}
.feature-item:hover .feature-item__icon { background: var(--accent-sage); color: white; transform: rotate(-5deg); }
.feature-item__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--earth-brown); margin-bottom: 8px; }
.feature-item__desc { font-size: 1rem; color: var(--earth-tan); line-height: 1.6; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== STORY / ABOUT ===== */
.story__content {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
.story__text-area { max-width: 42rem; }
.story__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700; color: var(--earth-brown);
  line-height: 1.15;
}
.story__title em { font-style: italic; }
.story__desc {
  font-size: 1rem; color: var(--earth-tan);
  margin-top: 1.5rem; line-height: 1.625;
}
.story__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent-terracotta); font-size: 0.875rem;
  font-weight: 500; margin-top: 1.5rem;
  transition: gap 0.3s ease;
}
.story__link:hover { gap: 0.75rem; }
.story__images {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 1rem;
}
.story__img {
  border-radius: 1rem; overflow: hidden;
}
.story__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.story__img--tall { aspect-ratio: 3/4; }
.story__img--wide { aspect-ratio: 4/3; }

/* ===== FEATURES ===== */
.features__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.features__image {
  position: relative; border-radius: 1rem; overflow: hidden;
  aspect-ratio: 4/5;
}
.features__image img { width: 100%; height: 100%; object-fit: cover; }
.features__badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--earth-brown); color: var(--cream-100);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.features__badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
}
.features__badge-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--cream-300); margin-top: 0.25rem;
}
.feature-item {
  display: flex; gap: 1rem; margin-bottom: 2rem;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-item__icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--cream-200); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
  color: var(--accent-terracotta);
}
.feature-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--earth-brown);
}
.feature-item__desc {
  font-size: 0.875rem; color: var(--earth-tan);
  margin-top: 0.25rem; line-height: 1.625;
}

/* ===== TESTIMONIAL PERFECTED ===== */
.testimonial {
  background: white; border-radius: 40px;
  overflow: hidden; max-width: 1200px; margin: 0 auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
  border: 1px solid var(--cream-100);
}
.testimonial__inner {
  display: flex; flex-direction: row;
}
.testimonial__image { width: 45%; border-radius: 40px; overflow: hidden; padding: 20px; }
.testimonial__image img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 32px;
}
.testimonial__content {
  width: 55%; padding: 80px 60px; display: flex;
  flex-direction: column; justify-content: center;
}
.testimonial__icon {
  font-size: 3rem; color: var(--accent-sage); opacity: 0.2; margin-bottom: 20px;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--earth-brown); line-height: 1.3;
  font-style: italic; margin-bottom: 40px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 20px;
}
.testimonial__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--earth-brown);
}
.testimonial__role {
  font-size: 0.9rem; color: var(--earth-tan); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.testimonial__dots {
  display: flex; gap: 12px; margin-top: 50px;
}
.testimonial__dot {
  width: 8px; height: 8px; cursor: pointer;
  border-radius: 50%; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--cream-200); border: none;
}
.testimonial__dot.active { background: var(--accent-terracotta); transform: scale(1.5); }

@media (max-width: 1024px) {
  .testimonial__inner { flex-direction: column; }
  .testimonial__image { width: 100%; height: 400px; }
  .testimonial__content { width: 100%; padding: 40px 30px; text-align: center; }
  .testimonial__author { justify-content: center; }
  .testimonial__dots { justify-content: center; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative; overflow: hidden;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.cta-banner__bg {
  position: absolute; inset: 0;
}
.cta-banner__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(28,18,8,0.5);
}
.cta-banner__content {
  position: relative; z-index: 5;
  padding: 2rem; max-width: 48rem;
}
.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 700; color: var(--cream-100);
  text-transform: uppercase; letter-spacing: 0.025em;
  line-height: 1.25;
}
.cta-banner__desc {
  font-size: 1rem; color: var(--cream-200);
  margin-top: 1.5rem; line-height: 1.625;
  max-width: 36rem; margin-left: auto; margin-right: auto;
}
.cta-banner__btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 2.5rem;
  background: var(--cream-100); color: var(--earth-brown);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  padding: 1rem 2rem; border-radius: 9999px;
  transition: all 0.3s ease;
}
.cta-banner__btn:hover {
  background: var(--accent-peach); color: var(--earth-dark);
}
.cta-banner__btn-icon {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--accent-terracotta);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--earth-dark); color: var(--cream-300);
  padding: 4rem 1rem 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; max-width: 80rem; margin: 0 auto;
}
.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream-100); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer__brand-desc {
  font-size: 0.875rem; line-height: 1.7;
  color: var(--cream-300);
}
.footer__social {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
}
.footer__social-link {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  color: var(--cream-300); font-size: 1rem;
}
.footer__social-link:hover {
  background: var(--accent-terracotta); color: var(--cream-100);
}
.footer__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--cream-100); margin-bottom: 1.25rem;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.875rem; transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--accent-peach); }
.footer__newsletter-desc {
  font-size: 0.875rem; margin-bottom: 1rem;
}
.footer__form { display: flex; gap: 0.5rem; }
.footer__input {
  flex: 1; padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px; color: var(--cream-100);
  font-size: 0.85rem; outline: none;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.3s ease;
}
.footer__input::placeholder { color: rgba(184,160,137,0.5); }
.footer__input:focus { border-color: var(--accent-terracotta); }
.footer__submit {
  padding: 0.7rem 1.3rem;
  background: var(--accent-terracotta); color: var(--cream-100);
  border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  transition: background 0.3s ease;
}
.footer__submit:hover { background: #a85c3a; }
.footer__bottom {
  text-align: center; padding-top: 2rem; margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; max-width: 80rem; margin-left: auto; margin-right: auto;
  color: var(--earth-sand);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== PAGE TRANSITIONS ===== */
.page-transition {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream-50);
  pointer-events: none;
  opacity: 1; transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-transition.hidden { opacity: 0; }
.page-transition.active { opacity: 1; pointer-events: all; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(253,251,247,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; visibility: hidden; transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.active { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 500;
  color: var(--earth-brown); transition: all 0.3s ease;
}
.mobile-nav a:hover { color: var(--accent-terracotta); transform: scale(1.05); }
.mobile-nav__close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: var(--earth-brown); cursor: pointer;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .section { padding: 4rem 2rem; }
  .navbar__inner { padding: 1.25rem 2rem; }
}

@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
  .testimonial__inner { flex-direction: row; }
  .testimonial__image { width: 40%; }
  .testimonial__image img { aspect-ratio: auto; height: 100%; }
  .testimonial__content { width: 60%; padding: 3rem 4rem; }
  .story__images { gap: 1.5rem; }
}

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .hamburger { display: block; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .story__images { grid-template-columns: 1fr; }
  .story__img--tall { aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__form { flex-direction: column; }
}

/* ===== MINI CART SIDEBAR (REMOVED) ===== */

/* ===== QUICK VIEW MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.modal.active { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(28,18,8,0.7); backdrop-filter: blur(8px); }
.modal__container {
  position: relative; width: 90%; max-width: 1000px; background: white; border-radius: 32px;
  overflow: hidden; display: flex; transform: translateY(40px); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal.active .modal__container { transform: translateY(0); }
.modal__close { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 10; font-size: 1.5rem; }
.modal__image { width: 50%; background: var(--cream-100); }
.modal__image img { width: 100%; height: 100%; object-fit: cover; }
.modal__content { width: 50%; padding: 4rem; }
.modal__price { font-size: 1.5rem; color: var(--accent-terracotta); margin: 1rem 0; font-weight: 600; }

@media (max-width: 768px) {
  .cart-sidebar { width: 100%; }
  .modal__container { flex-direction: column; height: 90vh; overflow-y: auto; }
  .modal__image, .modal__content { width: 100%; }
  .modal__content { padding: 2rem; }
}
