/* ═══════════════════════════════════════════════════════
   AMOURA FLORALS — Next-Level Stylesheet
   Palette: Sage #818263 · Peach #EFD7CF · Dark #1a1714
   Fonts: Bodoni Moda (serif) · Raleway (sans)
   Version: 3.0 — Editorial Luxury
═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════ */
:root { --ann-h: 38px; }

.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250;
  background: var(--peach);
  height: var(--ann-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out);
}

.announcement-bar.dismissed {
  transform: translateY(-100%);
  pointer-events: none;
}

.announcement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3.5rem 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  position: relative;
}

.ann-text {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

.ann-sep {
  color: var(--sage);
  font-size: 0.45rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.ann-cta {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.25s var(--ease-out);
  white-space: nowrap;
  margin-left: 0.25rem;
}
@media (hover: hover) and (pointer: fine) {
  .ann-cta:hover { color: var(--ink); }
}

.ann-close {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(26,23,20,0.4);
  font-size: 1rem;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s ease;
  font-family: var(--ff-sans);
  touch-action: manipulation;
}
.ann-close:hover { color: var(--ink); }

/* Nav offset when bar is visible */
body.has-ann-bar #site-header { top: var(--ann-h); }

/* Mobile: hide Spanish, keep English only */
@media (max-width: 640px) {
  .ann-text.ann-es,
  .ann-sep { display: none; }
  .ann-text { font-size: 0.58rem; letter-spacing: 0.14em; }
}

/* ── Custom Cursor ──────────────────────────────────── */
* { cursor: none !important; }

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--sage);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease, width 0.25s var(--ease-out), height 0.25s var(--ease-out);
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(129, 130, 99, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out),
              width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s ease;
}

body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot {
  width: 16px; height: 16px;
  background: var(--peach-dark);
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 52px; height: 52px;
  opacity: 0.6;
}

@media (pointer: coarse) {
  * { cursor: auto !important; }
  #cursor-dot, #cursor-ring { display: none; }
}

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --sage:          #818263;
  --sage-dark:     #6a6c51;
  --sage-light:    #a5a882;
  --sage-xlight:   #d4d5bf;
  --peach:         #EFD7CF;
  --peach-dark:    #e0bfb4;
  --peach-mid:     #d9b5aa;
  --cream:         #FAF8F5;
  --off-white:     #F5F2EE;
  --warm-white:    #FDFCFB;
  --ink:           #2e3020;
  --dark:          #3d3f2e;
  --mid:           #6B6560;
  --light-text:    #9E9892;
  --hero-dark:     #4a4c38;

  --ff-serif:      'Bodoni Moda', Georgia, serif;
  --ff-sans:       'Raleway', system-ui, sans-serif;

  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in:       cubic-bezier(0.55, 0, 1, 0.45);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);
  --transition:    0.35s var(--ease-out);
  --transition-lg: 0.6s var(--ease-out);

  --shadow-sm:     0 2px 16px rgba(26,23,20,0.07);
  --shadow-md:     0 12px 40px rgba(26,23,20,0.12);
  --shadow-lg:     0 28px 72px rgba(26,23,20,0.18);
  --shadow-card:   0 4px 24px rgba(26,23,20,0.08);

  --max-w:         1320px;
  --gutter:        clamp(1.25rem, 5vw, 2rem);
  --section-py:    clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Grain Overlay ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: italic; }
p  { font-size: clamp(1rem, 1.2vw, 1.05rem); color: var(--mid); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4rem;
  height: 1px;
  background: var(--sage);
  transform: translateY(-50%);
}

.section-title {
  color: var(--ink);
  margin-bottom: 1.4rem;
  line-height: 1.08;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header .section-label {
  padding-left: 0;
  display: block;
}

.section-header .section-label::before { display: none; }

.page-banner-content .section-label {
  padding-left: 0;
}
.page-banner-content .section-label::before { display: none; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              color 0.25s var(--ease-out),
              transform 0.15s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.btn:active { transform: scale(0.97); }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}

.btn:hover::after { transform: translateX(0); }

.btn-hero {
  background: transparent;
  border: 1px solid rgba(239,215,207,0.65);
  color: var(--peach);
  letter-spacing: 0.22em;
}
.btn-hero:hover {
  background: rgba(239,215,207,0.12);
  border-color: rgba(239,215,207,0.9);
}

.btn-outline {
  border: 1px solid var(--sage);
  color: var(--sage);
  background: transparent;
}
.btn-outline:hover {
  background: var(--sage);
  color: #fff;
}

.btn-sage {
  background: var(--sage);
  color: #fff;
  border: 1px solid var(--sage);
}
.btn-sage:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.btn-peach {
  background: var(--peach);
  color: var(--ink);
  border: 1px solid var(--peach);
  font-weight: 500;
}
.btn-peach:hover {
  background: var(--peach-dark);
  border-color: var(--peach-dark);
}

.btn-dark {
  background: var(--sage);
  color: #fff;
  border: 1px solid var(--sage);
}
.btn-dark:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.btn-full { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  overflow: visible;
  transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out),
              backdrop-filter 0.5s ease, box-shadow 0.4s ease;
}

/* Sage on hero */
#site-header:not(.scrolled) {
  background: var(--sage);
  backdrop-filter: none;
}

/* Sage when scrolled */
#site-header.scrolled {
  background: var(--sage);
  backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(62,65,48,0.2);
}

/* Inner pages */
.inner-page #site-header {
  background: var(--sage);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 150px;
  overflow: hidden;
  transition: height 0.4s var(--ease-out);
}

#site-header.scrolled .nav-container { height: 110px; }

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-right {
  justify-content: flex-end;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--peach);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--peach); }
.nav-link.active::after { width: 100%; background: var(--peach); }

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo img {
  height: 120px;
  width: auto;
  transition: filter 0.4s ease, opacity 0.4s ease, height 0.4s var(--ease-out);
  filter: brightness(0) invert(1);
}

#site-header.scrolled .nav-logo img { height: 92px; }
.inner-page #site-header .nav-logo img { filter: brightness(0) invert(1); }

/* Force white logo when not scrolled (over dark hero) */
#site-header:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}
.cart-btn:hover { color: var(--peach); }

.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--peach);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 600;
  min-width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity var(--transition), transform var(--transition);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ─── Hamburger ────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.38s var(--ease-out), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

/* ─── Mobile Menu ──────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  padding: 2rem var(--gutter);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: #fff; }

.mobile-menu-top {
  margin: 2rem auto 3rem;
}
.mobile-menu-top img {
  height: 100px;
  filter: brightness(0) invert(1) opacity(0.85);
  margin: 0 auto;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu-links a {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 8vw, 3rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  font-style: italic;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  letter-spacing: -0.01em;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .mobile-menu-links a:hover {
    color: var(--peach);
    transform: translateX(0.5rem);
  }
}

.mobile-menu-bottom {
  padding-top: 2.5rem;
}
.mm-instagram {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.mm-instagram:hover { color: var(--peach); }

/* ─── Mobile shop submenu ───────────────────────────── */
.mm-shop-group {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mm-shop-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 8vw, 3rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  font-style: italic;
  padding: 0.6rem 0;
  letter-spacing: -0.01em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  text-align: left;
}

.mm-shop-toggle:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .mm-shop-toggle:hover {
    color: var(--peach);
    transform: translateX(0.5rem);
  }
}

.mm-shop-toggle.active {
  color: var(--peach);
}

.mm-shop-chevron {
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.35s var(--ease-out);
  opacity: 0.7;
}

.mm-shop-toggle.active .mm-shop-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.mm-shop-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out);
}

.mm-shop-sub.open {
  max-height: 22rem;
}

.mm-shop-sub a {
  display: block;
  font-family: var(--ff-sans, sans-serif);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: none;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  font-style: normal;
  font-weight: 400;
}

.mm-shop-sub a:last-child {
  padding-bottom: 1rem;
}

@media (hover: hover) and (pointer: fine) {
  .mm-shop-sub a:hover {
    color: var(--peach);
    transform: translateX(0.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mm-shop-sub { transition: none; }
  .mm-shop-chevron { transition: none; }
  .mm-shop-toggle { transition: none; }
  .mm-shop-sub a { transition: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO — Cinematic
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: 115%;
  background-position: center 55%;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(62, 65, 48, 0.52) 0%,
    rgba(62, 65, 48, 0.28) 50%,
    rgba(62, 65, 48, 0.55) 100%
  );
  z-index: 1;
}

/* Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(62,65,48,0.22) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 190px var(--gutter) 6rem;
  max-width: 1000px;
}

.hero-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--peach);
  font-family: var(--ff-sans);
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUpIn 1s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUpIn 1.1s 0.5s var(--ease-out) forwards;
}

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

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUpIn 1s 0.75s var(--ease-out) forwards;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  opacity: 0;
  animation: fadeUpIn 1s 0.95s var(--ease-out) forwards;
}

.hero-socials {
  position: absolute;
  bottom: 1rem;
  left: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  opacity: 0;
  animation: fadeUpIn 1s 1.1s var(--ease-out) forwards;
}

.hero-socials a {
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), border-color var(--transition), transform 0.2s var(--ease-out);
}

.hero-socials a:hover {
  color: var(--peach);
  border-color: var(--peach);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}
.hero-scroll:hover { color: var(--peach); }

/* ─── Desktop hero: lower content + hide scroll indicator ── */
@media (min-width: 769px) {
  .hero {
    align-items: flex-start;
  }
  .hero-content {
    padding-top: clamp(200px, 22vh, 250px);
  }
}

/* Hero split line decorations */
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,215,207,0.25), transparent);
  z-index: 2;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--peach);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0 2.2rem;
  white-space: nowrap;
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.marquee-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(239,215,207,0.7);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ═══════════════════════════════════════════════════════
   VALUES STRIP
═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   VALUES CAROUSEL
═══════════════════════════════════════════════════════ */
.values-carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.values-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.values-carousel::-webkit-scrollbar { display: none; }

.vc-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  height: clamp(420px, 60vw, 560px);
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.vc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,48,32,0.88) 0%, rgba(46,48,32,0.2) 60%, transparent 100%);
}

.vc-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1.5rem, 5vw, 3.5rem);
}

.vc-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--peach);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.vc-content h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.vc-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 420px;
}

.vc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0;
  background: var(--ink);
}

.vc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.vc-dot.active {
  background: var(--peach);
  transform: scale(1.4);
}

/* ─── Values carousel: 3-column grid on desktop ──── */
@media (min-width: 901px) {
  .values-carousel {
    overflow: visible;
    scroll-snap-type: none;
  }
  .vc-card {
    flex: 1 1 0;
    min-width: 0;
    height: clamp(360px, 45vh, 520px);
  }
  .vc-dots { display: none; }
}

/* ─── Dot touch targets ─────────────────────────── */
.t-dot, .vc-dot {
  padding: 0.5rem;
  margin: -0.5rem;
  width: 6px; height: 6px;
  box-sizing: content-box;
}

/* legacy — hide old classes if referenced */
.value-icon { display: none; }

/* ═══════════════════════════════════════════════════════
   FEATURED INTRO — Editorial Split
═══════════════════════════════════════════════════════ */
.featured-intro {
  padding: var(--section-py) var(--gutter) calc(var(--section-py) + 2.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.featured-text {
  padding-right: 2rem;
}

.featured-text p {
  margin-bottom: 1.8rem;
  font-size: clamp(1rem, 1.3vw, 1.05rem);
  line-height: 1.9;
  color: var(--mid);
}

.featured-text .section-title {
  margin-bottom: 1.8rem;
}

.featured-images {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.8rem;
  align-items: end;
}

.fi-main {
  overflow: hidden;
}

.fi-main img {
  width: 100%;
  height: clamp(380px, 45vw, 560px);
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.fi-secondary {
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.fi-secondary img {
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .fi-main:hover img { transform: scale(1.04); }
  .fi-secondary:hover img { transform: scale(1.05); }
}

/* Floating badge */
.fi-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 165px; height: 165px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.fi-badge span {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.fi-badge .fi-badge-year {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — Dark Section
═══════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--peach);
  padding: var(--section-py) var(--gutter);
  position: relative;
  overflow: hidden;
}


.testimonials-section .section-header { margin-bottom: 3.5rem; }
.testimonials-section .section-label { color: var(--sage-dark); }
.testimonials-section .section-title { color: var(--sage-dark); }

.testimonials-carousel {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 2rem;
}

.testimonial-stars {
  color: var(--sage-dark);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.testimonial-card p {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 1.8rem;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--ff-sans);
  font-weight: 500;
}

.testimonials-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  touch-action: manipulation;
  line-height: 1;
}
.t-arrow:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

/* About page testimonials grid */
.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonials-grid .testimonial-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  text-align: left;
  border: none;
  transition: background var(--transition);
}

.testimonials-grid .testimonial-card:hover { background: rgba(255,255,255,0.07); }

.testimonials-grid .testimonial-card p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-align: left;
  margin: 0 0 1.4rem;
}

.testimonials-grid .testimonial-author { display: block; }

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-py) var(--gutter);
  background: var(--off-white);
  position: relative;
}

.contact-inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-family: var(--ff-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.contact-field label span {
  color: var(--peach-dark);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid var(--sage-xlight);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  -webkit-appearance: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--light-text);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(129,130,99,0.12);
}

.contact-field input.invalid,
.contact-field textarea.invalid {
  border-color: #c0635a;
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.contact-submit {
  display: flex;
  justify-content: flex-end;
}

.contact-btn {
  min-width: 200px;
  text-align: center;
}

.contact-success {
  display: none;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-align: center;
  padding: 1rem;
  background: rgba(129,130,99,0.08);
  border: 1px solid var(--sage-xlight);
}

.contact-success.show {
  display: block;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sage-xlight);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--mid);
}

.contact-info-item svg {
  flex-shrink: 0;
  stroke: var(--sage);
}

.contact-info-item a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s var(--ease-out);
}

.contact-info-item a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    justify-content: stretch;
  }

  .contact-btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   INSTAGRAM CTA
═══════════════════════════════════════════════════════ */
.newsletter-section {
  padding: var(--section-py) var(--gutter);
  background: var(--off-white);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.newsletter-title {
  font-family: var(--ff-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.newsletter-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  color: var(--mid);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.newsletter-field {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--sage-xlight);
  background: var(--warm-white);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.newsletter-field:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(129,130,99,0.1);
}

.newsletter-field input {
  flex: 1;
  padding: 1.1rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

.newsletter-field input::placeholder {
  color: var(--light-text);
}

.newsletter-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--mid);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.newsletter-arrow:hover {
  color: var(--ink);
  background: rgba(129,130,99,0.08);
}

.newsletter-success {
  display: none;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.newsletter-success.show {
  display: block;
}

/* ═══════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
═══════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  height: clamp(320px, 45vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-dark);
  margin-top: 0;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 0.1s linear;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(62,65,48,0.7) 0%, rgba(62,65,48,0.45) 100%);
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(62,65,48,0.38) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--ann-h) + 150px) var(--gutter) 4rem;
}

.page-banner-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.page-banner-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

/* ═══════════════════════════════════════════════════════
   CATALOG / SHOP
═══════════════════════════════════════════════════════ */
.catalog-section {
  padding: var(--section-py) var(--gutter);
  background: var(--off-white);
}

.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: var(--max-w);
  margin: 0 auto 4rem;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(129,130,99,0.22);
  color: var(--mid);
  background: transparent;
  transition: background-color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              color 0.25s var(--ease-out),
              transform 0.15s var(--ease-out);
  font-family: var(--ff-sans);
  touch-action: manipulation;
}
.filter-btn:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .filter-btn:hover { border-color: var(--sage); color: var(--sage); }
}
.filter-btn.active { background: var(--sage); border-color: var(--sage); color: #fff; }

.catalog-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* ── Product Card — Luxury ─────────────────────────── */
.product-card {
  background: var(--warm-white);
  transition: box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover { box-shadow: var(--shadow-lg); }
}

.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-white);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-img-wrap img { transform: scale(1.08); }
}

.quick-add {
  display: block;
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1rem;
  transition: background-color 0.25s var(--ease-out), transform 0.15s var(--ease-out);
  touch-action: manipulation;
}
.quick-add:hover { background: var(--sage); }
.quick-add:active { transform: scale(0.98); }

.product-info {
  padding: 1.2rem 0.8rem 1.6rem;
}

.product-category {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.product-price {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--sage);
  font-weight: 400;
}

.catalog-cta {
  text-align: center;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(129,130,99,0.12);
}

.catalog-cta p {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.catalog-cta-link {
  display: inline-block;
  font-size: .88rem;
  font-family: var(--ff-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-light);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s, opacity .2s;
}
.catalog-cta-link:hover { opacity: .7; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */
.about-section {
  padding: var(--section-py) var(--gutter) calc(var(--section-py) + 3rem);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.about-img-main img {
  width: 85%;
  height: clamp(420px, 50vw, 580px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
  margin: 0 auto;
  transition: transform 0.9s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .about-img-main:hover img { transform: scale(1.04); }
}

.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  width: 46%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-accent img {
  width: 100%;
  height: clamp(200px, 25vw, 280px);
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .about-img-accent:hover img { transform: scale(1.05); }
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -1rem;
  width: 120px; height: 120px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-badge span {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.about-badge .about-badge-year {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--peach);
  line-height: 1;
}

.about-text { padding-left: 1rem; }

.about-text p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(129,130,99,0.15);
  border-bottom: 1px solid rgba(129,130,99,0.15);
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-py) var(--gutter);
  background: var(--warm-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 4rem;
  border-top: 1px solid rgba(129,130,99,0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(129,130,99,0.15);
  transition: background var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.6rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--ink);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--sage); }
.faq-question[aria-expanded="true"] { color: var(--sage); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.4s var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 0.5rem 1.8rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid);
}

.faq-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.faq-cta p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER — Elevated
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--sage);
  color: rgba(255,255,255,0.7);
  padding: var(--section-py) var(--gutter) 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo img {
  height: 88px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.7);
  margin-bottom: 1.4rem;
  transition: opacity var(--transition);
}
.footer-logo img:hover { opacity: 1; filter: brightness(0) invert(1) opacity(1); }

.footer-logo p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.6rem;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-contact ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: var(--peach);
}

.footer-hours-label {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
}

.footer-hours {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.9;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--peach); }

/* ═══════════════════════════════════════════════════════
   CART SIDEBAR
═══════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.55);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 420px;
  max-width: 100vw;
  background: var(--warm-white);
  z-index: 600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  box-shadow: -8px 0 48px rgba(26,23,20,0.18);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 1.8rem;
  border-bottom: 1px solid rgba(129,130,99,0.12);
}

.cart-header h2 {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cart-close {
  color: var(--mid);
  padding: 0.4rem;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--ink); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(129,130,99,0.1);
  align-items: start;
}

.cart-item-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid rgba(129,130,99,0.3);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.15s var(--ease-out);
  border-radius: 50%;
  touch-action: manipulation;
}
.qty-btn:active { transform: scale(0.9); }
@media (hover: hover) and (pointer: fine) {
  .qty-btn:hover { border-color: var(--sage); color: var(--sage); }
}

.qty-num {
  font-size: 0.88rem;
  color: var(--ink);
  min-width: 1rem;
  text-align: center;
}

.cart-item-remove {
  color: var(--light-text);
  padding: 0.25rem;
  margin-top: 0.1rem;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--ink); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem var(--gutter);
  text-align: center;
}

.cart-empty svg { stroke: var(--sage-xlight); }

.cart-empty p {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--light-text);
}

.cart-footer {
  padding: 1.5rem 1.8rem 2rem;
  border-top: 1px solid rgba(129,130,99,0.12);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.cart-note {
  font-size: 0.75rem;
  color: var(--light-text);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.9rem 2rem;
  z-index: 9000;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL — Observe
═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] {
  transform: translateX(32px);
}
[data-reveal="right"].revealed { transform: translateX(0); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-logo { grid-column: 1 / -1; }
  .values-grid { gap: 0; }
  .value-item { padding: 2.5rem 2rem; }
}

@media (max-width: 900px) {
  .featured-inner { grid-template-columns: 1fr; gap: 3rem; }
  .featured-images { max-width: 600px; }
  .featured-text { padding-right: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .instagram-inner { grid-template-columns: 1fr; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(3rem, 8vw, 5rem); }

  .nav-left a.nav-link,
  .nav-right a.nav-link {
    display: none;
  }

  .hamburger { display: flex; }

  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-left: none; border-right: none; border-bottom: 1px solid rgba(129,130,99,0.15); }
  .values-grid { border-left: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-logo { grid-column: auto; }

  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .fi-badge { width: 110px; height: 110px; bottom: -1rem; left: -1rem; }
  .fi-badge .fi-badge-year { font-size: 1.5rem; }

  .hero-title { font-size: clamp(3rem, 11vw, 5rem); }

  .cart-sidebar { width: 100vw; }
  .page-banner { height: clamp(320px, 65vw, 420px); }
}

@media (max-width: 480px) {
  .nav-container { height: 110px; overflow: hidden; }
  #site-header.scrolled .nav-container { height: 88px; }
  .hero { align-items: flex-start; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); line-height: 1.0; }
  .hero-cta-wrap { flex-direction: column; gap: 0.8rem; }
  .hero-content { padding-top: 165px; }
  .hero-socials { bottom: 1.5rem; }
  .page-banner { height: clamp(380px, 80vw, 500px); align-items: flex-start; }
  .page-banner-content { padding-top: calc(var(--ann-h) + 110px); }
  .page-banner-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-inner { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }

  .testimonials-section { padding: 3rem var(--gutter) 2.5rem; }
  .testimonials-section .section-header { margin-bottom: 1.8rem; }
  .testimonial-card p { font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
  .testimonial-stars { font-size: 0.75rem; margin-bottom: 1rem; }
  .testimonials-arrows { margin-top: 1.5rem; }
  .t-arrow { width: 38px; height: 38px; font-size: 0.95rem; }

  .nav-left { gap: 1rem; }
  .nav-right { gap: 1rem; }
  .nav-logo img { height: 90px; }
  #site-header.scrolled .nav-logo img { height: 72px; }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS — keyframes
═══════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Stat counter animation ───────────────────────── */
.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

/* ═══════════════════════════════════════════════════════
   WHATSAPP WIDGET
═══════════════════════════════════════════════════════ */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.whatsapp-widget svg {
  width: 28px;
  height: 28px;
}

.whatsapp-widget:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--ink);
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
