/* ============================================================
   ASELOVERS — Premium Redesign
   Palette : Forest #2B3F3F · Ivory #F8F5F0 · Rose #C06860
   Type    : Cormorant Garamond (display) · Inter (body)
   ============================================================ */

:root {
  --forest:    #2B3F3F;
  --forest-2:  #3C5555;
  --ivory:     #F8F5F0;
  --sand:      #EDE7DC;
  --rose:      #C06860;
  --rose-pale: #EDD5D0;
  --ink:       #1B1918;
  --mid:       #6E6660;
  --border:    #D8D0C6;
  --white:     #FDFCFA;
  --shadow:    rgba(27,25,24,.1);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --ease: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.72;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ── Eyebrow label ── */
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,63,63,.3); }

.btn-light { background: var(--white); color: var(--forest); }
.btn-light:hover { background: var(--ivory); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }

.btn-outline { border: 1px solid var(--forest); color: var(--forest); background: transparent; }
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose); padding: 0;
  transition: gap var(--ease);
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover { gap: 8px; }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 14px 0;
  transition: color var(--ease);
}
.btn-arrow::after { content: '→'; transition: transform var(--ease); }
.btn-arrow:hover { color: var(--white); }
.btn-arrow:hover::after { transform: translateX(4px); }

.etsy-btn { background: #F1641E !important; color: #fff !important; }
.etsy-btn:hover { background: #d4551a !important; box-shadow: 0 8px 28px rgba(241,100,30,.3) !important; }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20,18,17,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  transition: background var(--ease), box-shadow var(--ease);
}
#site-header.scrolled {
  background: rgba(248,245,240,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-family: var(--f-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: .35em;
  color: var(--white);
  transition: color var(--ease);
}
#site-header.scrolled .nav-logo { color: var(--ink); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--ease);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
#site-header.scrolled .nav-links a { color: var(--mid); }
#site-header.scrolled .nav-links a:hover,
#site-header.scrolled .nav-links a.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-sep { color: rgba(255,255,255,.25); font-size: 11px; transition: color var(--ease); }
#site-header.scrolled .lang-sep { color: var(--border); }

.lang-switch button {
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  padding: 4px 6px;
  transition: color var(--ease);
}
.lang-switch button.active { color: var(--white); }
#site-header.scrolled .lang-switch button { color: var(--mid); }
#site-header.scrolled .lang-switch button.active { color: var(--ink); }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  transition: all var(--ease);
}
.cart-btn:hover { background: rgba(255,255,255,.22); }
#site-header.scrolled .cart-btn { background: var(--sand); color: var(--ink); }
#site-header.scrolled .cart-btn:hover { background: var(--border); }

.cart-count {
  position: absolute; top: -4px; right: -4px;
  width: 17px; height: 17px;
  background: var(--rose); color: var(--white);
  font-size: 9px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all var(--ease);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 22px; padding: 4px 0;
}
.hamburger span {
  display: block; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--ease);
}
#site-header.scrolled .hamburger span { background: var(--ink); }

/* ── SHOP PAGE header always light ── */
.page-shop #site-header {
  background: rgba(248,245,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.page-shop .nav-logo { color: var(--ink); }
.page-shop .nav-links a { color: var(--mid); }
.page-shop .nav-links a:hover,
.page-shop .nav-links a.active { color: var(--ink); }
.page-shop .nav-links .nav-etsy { color: var(--rose); }
.page-shop .lang-sep { color: var(--border); }
.page-shop .lang-switch button { color: var(--mid); }
.page-shop .lang-switch button.active { color: var(--ink); }
.page-shop .cart-btn { background: var(--sand); color: var(--ink); }
.page-shop .hamburger span { background: var(--ink); }

/* ── HERO ── */
.hero {
  background: var(--forest);
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(60,85,85,.55) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

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

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: rgba(255,255,255,.35);
}

.hero-title {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--rose-pale);
}

.hero-desc {
  color: rgba(255,255,255,.6);
  font-size: 15px; line-height: 1.85;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Hero image mosaic */
.hero-visual { position: relative; z-index: 1; padding: 20px 0; }
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 12px;
}
.mosaic-a { grid-row: 1 / 3; border-radius: var(--r-md); overflow: hidden; }
.mosaic-b, .mosaic-c { border-radius: var(--r-md); overflow: hidden; }
.hero-mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-mosaic > div:hover img { transform: scale(1.04); }

/* Hero stats bar */
.hero-bar {
  background: rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
}
.hero-stats {
  display: flex; align-items: center;
  gap: 48px; justify-content: center;
}
.hero-stat { text-align: center; }
.stat-n {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem; font-weight: 300;
  color: var(--white);
  line-height: 1; margin-bottom: 4px;
}
.stat-l {
  font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.1);
}

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-inner { display: flex; flex-shrink: 0; }
.ticker-inner span {
  color: rgba(255,255,255,.5);
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 0 18px;
}
.tick-dot { color: var(--rose) !important; padding: 0 2px !important; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTIONS ── */
.section { padding: 120px 0; }
.section-head { margin-bottom: 56px; }

/* ── STITCH DIVIDER (brand signature) ── */
.stitch-divider { padding: 0; }
.stitch-line {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0, var(--border) 6px,
    transparent 6px, transparent 12px
  );
}

/* ── PRODUCTS ── */
.product-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--forest); color: var(--forest); }
.filter-btn.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

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

.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px var(--shadow);
  border-color: transparent;
}

.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-body);
  font-size: 9px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}
.badge-new { background: var(--forest); color: var(--white); }
.badge-hot { background: var(--ink); color: var(--white); }

.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  box-shadow: 0 2px 8px var(--shadow);
  opacity: 0;
  transition: all var(--ease);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { color: var(--rose); transform: scale(1.1); }

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand);
  color: var(--border);
}

.product-info { padding: 20px 20px 22px; }
.product-cat {
  font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 6px;
}
.product-name {
  font-family: var(--f-display);
  font-size: 1.15rem; font-weight: 400;
  line-height: 1.25; margin-bottom: 7px;
}
.product-desc {
  font-size: 13px; color: var(--mid);
  margin-bottom: 16px; line-height: 1.6;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.product-price {
  font-family: var(--f-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--forest);
}
.product-price .currency { font-family: var(--f-body); font-size: 12px; color: var(--mid); font-weight: 400; }

.add-to-cart {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--forest); color: var(--white);
  border-radius: var(--r-sm);
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--ease);
}
.add-to-cart:hover { background: var(--forest-2); }

.shop-cta { text-align: center; margin-top: 64px; }

/* ── ABOUT ── */
.about-section { background: var(--sand); }

/* counters */
.about-counters {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 72px;
  background: var(--ivory); border-radius: 20px;
  padding: 40px 48px;
  border: 1px solid var(--border);
}
.about-counter { text-align: center; flex: 1; }
.about-counter-sep {
  width: 1px; height: 56px;
  background: var(--border);
  flex-shrink: 0;
}
.counter-number {
  display: flex; align-items: baseline; justify-content: center; gap: 1px;
  margin-bottom: 8px;
}
.counter-num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; color: var(--forest);
  line-height: 1;
}
.counter-plus {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300; color: var(--rose);
}
.counter-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid);
}

/* about grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-images { position: relative; padding-bottom: 32px; }
.about-img-main {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(27,25,24,.14);
  transition: transform .5s var(--ease);
}
.about-img-main:hover { transform: scale(1.015); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.about-img-main:hover img { transform: scale(1.03); }
.about-img-accent {
  position: absolute; bottom: 0px; right: -24px;
  width: 200px; height: 200px;
  border-radius: var(--r-md); overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: 0 12px 32px rgba(27,25,24,.12);
  transition: transform .4s var(--ease);
}
.about-img-accent:hover { transform: translateY(-6px) scale(1.02); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; top: 24px; left: -16px;
  background: var(--forest); color: var(--white);
  border-radius: 50px; padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(27,25,24,.2);
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-yarn { font-size: 18px; }
.badge-text { font-size: 11px; font-weight: 600; letter-spacing: .06em; white-space: nowrap; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* tabs */
.about-tabs {
  display: flex; gap: 8px; margin: 20px 0 28px;
  flex-wrap: wrap;
}
.about-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid);
  transition: all .2s ease;
  cursor: pointer;
  background: transparent;
}
.about-tab:hover { border-color: var(--forest); color: var(--forest); }
.about-tab.active {
  background: var(--forest); border-color: var(--forest);
  color: var(--white);
}

/* tab panels */
.about-panel { display: none; animation: panelIn .3s ease forwards; }
.about-panel.active { display: block; }
@keyframes panelIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.about-desc {
  color: var(--mid); line-height: 1.85;
  margin-bottom: 24px; margin-top: 0;
}
.about-pillar-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,25,24,.1); }
.about-pillar-card .pillar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--ivory); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
}
.about-pillar-card strong {
  display: block; font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 400; margin-bottom: 3px;
}
.about-pillar-card p { font-size: 13px; color: var(--mid); margin: 0; }

/* values grid */
.about-values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 4px;
}
.value-card {
  padding: 20px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27,25,24,.09);
  border-color: var(--forest);
}
.value-icon {
  width: 40px; height: 40px;
  background: var(--sand); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); margin-bottom: 12px;
}
.value-card strong {
  display: block; font-family: var(--f-display);
  font-size: .95rem; font-weight: 400; margin-bottom: 4px;
}
.value-card p { font-size: 12px; color: var(--mid); margin: 0; }

/* process steps */
.process-steps { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 16px; }
.process-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-step:hover { transform: translateX(6px); box-shadow: 0 8px 24px rgba(27,25,24,.08); }
.process-n {
  font-family: var(--f-display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--rose); line-height: 1; flex-shrink: 0; width: 36px;
}
.process-step strong { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.process-step p { font-size: 12px; color: var(--mid); margin: 0; }

.about-cta { margin-top: 32px; display: inline-flex; }

.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ivory); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
}
.pillar strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem; font-weight: 400; margin-bottom: 3px;
}
.pillar p { font-size: 13px; color: var(--mid); }

/* ── TESTIMONIALS ── */
.reviews-section { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--ivory);
  border-radius: var(--r-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.testimonial-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 36px var(--shadow);
  transform: translateY(-3px);
}
.stars { color: #C9972A; font-size: .85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-family: var(--f-display);
  font-size: 1.05rem; font-style: italic;
  color: var(--ink); line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--forest);
}
.author-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.author-loc { font-size: 11px; color: var(--mid); letter-spacing: .04em; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--forest); padding: 100px 0; }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.newsletter h2 {
  color: var(--white);
  font-style: italic; font-weight: 300;
  margin-bottom: 10px;
}
.newsletter p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.8; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: var(--f-body); font-size: 14px;
  outline: none;
  transition: border-color var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.45); }
.newsletter-form button {
  padding: 14px 32px; align-self: flex-start;
  background: var(--white); color: var(--forest);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all var(--ease);
}
.newsletter-form button:hover { background: var(--ivory); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .3em;
  color: var(--white); margin-bottom: 14px;
}
.footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: all var(--ease);
}
.social-links a:hover { border-color: var(--rose); color: var(--rose); }
.footer-heading {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; transition: color var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12px;
}

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(27,25,24,.5);
  z-index: 1998; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--white);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(27,25,24,.16);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--f-display);
  font-size: 1.3rem; font-weight: 400;
}
.cart-close { color: var(--mid); transition: color var(--ease); }
.cart-close:hover { color: var(--ink); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 12px; text-align: center; color: var(--mid);
}
.cart-empty-icon { color: var(--border); }

.cart-item {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--r-md);
  background: var(--sand);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 400; margin-bottom: 4px;
}
.cart-item-price { color: var(--forest); font-weight: 600; font-size: 13px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: .9rem;
  transition: all var(--ease);
}
.qty-btn:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.qty-val { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }
.remove-item { color: var(--mid); font-size: 11px; margin-left: auto; transition: color var(--ease); }
.remove-item:hover { color: var(--rose); }

.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 13px; font-weight: 600;
}
.cart-total-price {
  font-family: var(--f-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--forest);
}
.checkout-btn {
  width: 100%; padding: 15px;
  background: var(--forest); color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--ease);
}
.checkout-btn:hover { background: var(--forest-2); }

/* ══════════════════════════════════════════════════════
   MOBILE NAV — Right-side panel
   ══════════════════════════════════════════════════════ */

/* dark overlay behind the panel */
.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(27,25,24,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-nav-backdrop.open { opacity: 1; pointer-events: all; }

/* the sliding panel */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 90vw);
  background: var(--ink);
  z-index: 1999;
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

/* top bar inside panel */
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-nav-logo {
  font-family: var(--f-display);
  font-size: 1.3rem; font-style: italic; font-weight: 300;
  color: var(--white); letter-spacing: .08em;
}
.mobile-nav-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.13); color: var(--white); }

/* nav links */
.mobile-nav-links {
  flex: 1;
  padding: 32px 0;
  display: flex; flex-direction: column;
}
.mobile-nav-links a {
  display: flex; align-items: center;
  padding: 14px 32px;
  gap: 16px;
  color: rgba(255,255,255,.55);
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s, background .2s;
  border-left: 2px solid transparent;
  text-decoration: none;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  color: var(--white);
  background: rgba(255,255,255,.04);
  border-left-color: var(--rose);
}
.mobile-nav-links a .mnav-label {
  font-family: var(--f-display);
  font-size: 1.6rem; font-style: italic; font-weight: 300;
  letter-spacing: .02em; text-transform: none;
  color: inherit;
}
.mobile-nav-links a .mnav-num {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  color: rgba(255,255,255,.2);
  min-width: 22px;
}

/* etsy link special */
.mobile-nav-links a.mnav-etsy { margin-top: 8px; }
.mobile-nav-links a.mnav-etsy .mnav-label { color: #F1641E; }
.mobile-nav-links a.mnav-etsy:hover { border-left-color: #F1641E; }

/* footer area of panel */
.mobile-nav-footer {
  padding: 24px 32px 36px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-nav-footer-label {
  font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.25);
  margin-bottom: 16px;
}
.mobile-lang {
  display: flex; gap: 8px;
}
.mobile-lang button {
  flex: 1;
  padding: 10px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: all .2s;
}
.mobile-lang button.active {
  background: var(--forest);
  color: var(--white);
}
.mobile-lang button:hover:not(.active) {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
}

/* ── HAMBURGER — 3-line animated ── */
.hamburger {
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-end;
  gap: 5px; width: 32px; height: 32px;
}
.hamburger span {
  display: block; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: all .28s ease;
}
.hamburger span:first-child { width: 100%; }
.hamburger span:last-child  { width: 60%; }
.hamburger.active span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); width: 100%; }
.hamburger.active span:last-child  { transform: rotate(-45deg) translate(4.5px, -4.5px); width: 100%; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--ink); color: var(--white);
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500;
  box-shadow: 0 8px 28px rgba(27,25,24,.25);
  z-index: 3000; opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: #2e6b32; }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px;
  background: var(--forest); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(43,63,63,.35);
  opacity: 0; pointer-events: none;
  transition: all var(--ease);
  transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--forest-2); transform: translateY(-3px); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SHOP PAGE SPECIFIC ── */
.shop-page-hero {
  background: var(--sand);
  padding: 140px 0 60px;
  text-align: center;
}
.shop-page-hero h1 {
  font-style: italic; font-weight: 300;
  margin-bottom: 12px;
}
.shop-page-hero p { color: var(--mid); font-size: 15px; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0 100px;
}
.shop-sidebar {
  position: sticky; top: 90px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--border);
}
.sidebar-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 14px;
}
.sidebar-section { margin-bottom: 28px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.cat-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500;
  color: var(--mid);
  background: transparent;
  text-align: left;
  transition: all var(--ease);
}
.cat-count {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  background: var(--sand);
  padding: 2px 7px; border-radius: 20px;
  color: var(--mid);
}
.cat-btn:hover,
.cat-btn.active { background: rgba(43,63,63,.07); color: var(--forest); }
.cat-btn.active .cat-count { background: var(--forest); color: var(--white); }

.price-inputs { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.price-inputs input {
  width: 80px; padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--f-body); font-size: 13px;
  background: var(--ivory); color: var(--ink);
  outline: none; transition: border-color var(--ease);
}
.price-inputs input:focus { border-color: var(--forest); }
.price-sep { color: var(--mid); font-size: 12px; }

.sort-select {
  padding: 9px 14px; width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--f-body); font-size: 13px;
  background: var(--ivory); color: var(--ink);
  outline: none; margin-top: 8px;
}

.sidebar-etsy-block {
  background: var(--forest);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
}
.sidebar-etsy-block p {
  font-size: 12px; color: rgba(255,255,255,.65);
  margin-bottom: 12px; line-height: 1.6;
}
.sidebar-etsy-block a {
  display: inline-block;
  background: var(--white); color: var(--forest);
  padding: 8px 20px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: all var(--ease);
}
.sidebar-etsy-block a:hover { background: var(--ivory); transform: translateY(-1px); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.results-count { font-size: 13px; color: var(--mid); }
.results-count strong { color: var(--ink); }
.view-toggle { display: flex; gap: 6px; }
.view-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  transition: all var(--ease);
}
.view-btn.active,
.view-btn:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.shop-product-grid.list-view { grid-template-columns: 1fr; }
.shop-product-grid.list-view .product-card {
  display: grid; grid-template-columns: 200px 1fr;
}
.shop-product-grid.list-view .product-img { aspect-ratio: auto; height: 200px; }

.load-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
  padding: 14px 32px;
  background: #F1641E;
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
.load-more-btn:hover { background: #d4551a; transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { display: none; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 0; }
  .hero-stats { gap: 28px; flex-wrap: wrap; justify-content: flex-start; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-drawer { width: 100vw; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stat-sep { display: none; }
  .hero-stats { justify-content: space-between; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-images { display: none; }
  .shop-product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .newsletter { padding: 72px 0; }
}

/* ══════════════════════════════════════════════════════
   HERO — MARQUEE VARIANT
   ══════════════════════════════════════════════════════ */
.hero-marquee {
  position: relative;
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 0;
}

/* subtle radial glow behind text */
.hero-marquee::before {
  content: '';
  position: absolute;
  top: 30%;  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(192,104,96,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.hero-center .hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px 18px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: .18em;
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}

.hero-center .hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-center .hero-title em {
  color: var(--rose);
  font-style: italic;
}

.hero-center .hero-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-center .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* inline stats below the CTA buttons */
.hero-stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}
.hero-stats-inline .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.hero-stats-inline .stat-n {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stats-inline .stat-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-stats-inline .hero-stat-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp .7s ease forwards;
}
.hero-center .hero-eyebrow { animation-delay: .05s; }
.hero-center .hero-title   { animation-delay: .18s; }
.hero-center .hero-desc    { animation-delay: .32s; }
.hero-center .hero-actions { animation-delay: .44s; }
.hero-stats-inline         { animation-delay: .56s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Marquee Strip ── */
.hero-marquee-strip {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding-bottom: 0;
  /* fade top edge to transparent so it blends into forest bg */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 85%, transparent 100%);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
  padding: 12px 0 24px;
}
.marquee-track:hover { animation-play-state: paused; }

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

.marquee-img {
  flex-shrink: 0;
  width: 160px; height: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.marquee-img:hover {
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}
.marquee-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* alternate tilt per card */
.marquee-img:nth-child(odd)  { transform: rotate(-2deg); }
.marquee-img:nth-child(even) { transform: rotate(2.5deg); }

@media (max-width: 768px) {
  .hero-marquee { padding-top: 100px; }
  .hero-stats-inline .hero-stat { padding: 0 18px; }
  .marquee-img { width: 120px; height: 155px; }
  .hero-center .hero-actions { gap: 14px; }
}

/* ══════════════════════════════════════════════════════
   CATEGORY STRIP
   ══════════════════════════════════════════════════════ */
.cat-strip {
  padding: 72px 0;
  background: var(--white);
}
.cat-strip-head { text-align: center; margin-bottom: 44px; }
.cat-strip-head h2 { font-style: italic; font-weight: 300; }
.cat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand);
  display: block;
  cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,25,24,.65) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  transition: background .3s ease;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(43,63,63,.75) 0%, rgba(43,63,63,.2) 60%);
}
.cat-card-label {
  color: var(--white);
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400; font-style: italic;
  line-height: 1.1;
}
.cat-card-label small {
  display: block;
  font-family: var(--f-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  opacity: .75; font-style: normal;
  margin-bottom: 4px;
}
.cat-card-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--f-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  margin-top: 10px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateY(0); }

/* wide category card (1st spans 2 cols) */
.cat-card.wide { aspect-ratio: auto; grid-row: span 1; aspect-ratio: 16/9; }
@media (min-width: 769px) { .cat-card:first-child { grid-column: span 2; aspect-ratio: auto; aspect-ratio: 16/9; } }

/* ══════════════════════════════════════════════════════
   FEATURED BANNER
   ══════════════════════════════════════════════════════ */
.featured-banner {
  background: var(--forest);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.featured-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.featured-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-banner-copy .eyebrow { color: rgba(255,255,255,.5); }
.featured-banner-copy h2 {
  color: var(--white);
  font-style: italic; font-weight: 300;
  margin-bottom: 20px;
}
.featured-banner-copy p { color: rgba(255,255,255,.65); margin-bottom: 32px; line-height: 1.8; }
.featured-banner-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.featured-banner-imgs div {
  border-radius: 8px; overflow: hidden; aspect-ratio: 1;
  background: rgba(255,255,255,.08);
}
.featured-banner-imgs div img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL ENHANCEMENTS
   ══════════════════════════════════════════════════════ */
.testimonial-card {
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px; left: 20px;
  font-family: var(--f-display);
  font-size: 5rem; line-height: 1;
  color: var(--rose-pale);
  pointer-events: none;
  z-index: 0;
}
.stars { color: #C9972A; font-size: .85rem; letter-spacing: 3px; margin-bottom: 14px; position: relative; z-index: 1; }
.testimonial-text { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS — 3-column infinite scroll
   ══════════════════════════════════════════════════════ */
.testi-section { background: var(--ivory); overflow: hidden; }
.testi-section .section-head { margin-bottom: 16px; }
.testi-sub {
  color: var(--mid); font-size: 15px;
  max-width: 460px; margin: 12px auto 0; line-height: 1.7;
}

.testi-columns-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  /* fade top & bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  max-height: 720px;
  overflow: hidden;
  padding: 0 40px;
}

.testi-col { flex: 0 0 320px; max-width: 320px; }
.testi-col--mid  { display: none; }
.testi-col--right { display: none; }

@media (min-width: 768px)  { .testi-col--mid   { display: block; } }
@media (min-width: 1024px) { .testi-col--right { display: block; } }

/* The scrolling list inside each column */
.testi-scroll {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: testiScrollUp var(--dur, 15s) linear infinite;
  will-change: transform;
}
.testi-scroll:hover { animation-play-state: paused; }

@keyframes testiScrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Individual card */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(27,25,24,.05);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,25,24,.1);
}
.testi-stars { color: #C9972A; font-size: .8rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text {
  font-size: 14px; line-height: 1.8;
  color: var(--mid); margin-bottom: 20px;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-family: var(--f-display);
  font-size: 4rem; line-height: .5;
  color: var(--rose-pale);
  display: block; margin-bottom: 8px;
}
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px; font-weight: 600;
  color: var(--ink); line-height: 1.3;
}
.testi-role { font-size: 11px; color: var(--mid); margin-top: 2px; letter-spacing: .03em; }

/* ══════════════════════════════════════════════════════
   COUNT-UP NUMBERS
   ══════════════════════════════════════════════════════ */
.stat-n { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-mosaic img,
  .product-img img { transition: none; }
  .mosaic-a, .mosaic-b, .mosaic-c { animation: none; }
}

/* ══════════════════════════════════════════════════════
   SHIPPING BAR
   ══════════════════════════════════════════════════════ */
.ship-bar {
  background: var(--ink);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.ship-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  font-size: 11px; font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
}
.ship-sep { color: var(--rose); opacity: .6; }
.ship-bar strong { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════════════════════
   HERO — FLOATING MOSAIC
   ══════════════════════════════════════════════════════ */
.mosaic-a { animation: float-a 7s ease-in-out infinite; }
.mosaic-b { animation: float-b 9s ease-in-out infinite 2s; }
.mosaic-c { animation: float-c 8s ease-in-out infinite 4s; }
@keyframes float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float-b { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)} }
@keyframes float-c { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

/* ══════════════════════════════════════════════════════
   TRUST BADGES
   ══════════════════════════════════════════════════════ */
.trust-section {
  background: var(--sand);
  padding: 60px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
}
.trust-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(43,63,63,.1);
}
.trust-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.trust-desc { font-size: 12.5px; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   PRODUCT CARD — QUICK VIEW OVERLAY
   ══════════════════════════════════════════════════════ */
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(27,25,24,.42);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: opacity .22s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-view-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--ink);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transform: translateY(10px);
  transition: transform .22s ease, background .15s;
  border: none;
  cursor: pointer;
}
.product-card:hover .quick-view-btn { transform: translateY(0); }
.quick-view-btn:hover { background: var(--ivory); }

/* ══════════════════════════════════════════════════════
   QUICK VIEW MODAL
   ══════════════════════════════════════════════════════ */
.qv-backdrop {
  position: fixed; inset: 0;
  background: rgba(27,25,24,.6);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.qv-backdrop.open { display: flex; }
.qv-panel {
  background: var(--white);
  border-radius: 16px;
  max-width: 860px; width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 40px 100px rgba(27,25,24,.3);
  animation: qv-in .2s ease;
}
@keyframes qv-in { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:none} }
.qv-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px;
  background: rgba(27,25,24,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .15s;
  border: none; cursor: pointer; font-size: 16px; line-height: 1;
}
.qv-close:hover { background: rgba(27,25,24,.15); }
.qv-img-wrap {
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1;
}
.qv-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.qv-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--border);
}
.qv-body {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.qv-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 12px;
}
.qv-name {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 400; font-style: italic;
  line-height: 1.2; margin-bottom: 16px;
}
.qv-desc {
  font-size: 14px; color: var(--mid);
  line-height: 1.8; margin-bottom: 24px;
  flex: 1;
}
.qv-price {
  font-family: var(--f-display);
  font-size: 2rem; color: var(--forest);
  margin-bottom: 28px; font-weight: 300;
}
.qv-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.qv-stars { color: #C9972A; font-size: .9rem; letter-spacing: 2px; }
.qv-rating-label { font-size: 12px; color: var(--mid); }
.qv-actions { display: flex; gap: 10px; }
.qv-add-cart {
  flex: 1; padding: 14px;
  background: var(--forest); color: var(--white);
  border-radius: var(--r-sm); border: none; cursor: pointer;
  font-family: var(--f-body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.qv-add-cart:hover { background: var(--forest-2); }
.qv-etsy {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  background: #F1641E; color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--f-body); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease);
}
.qv-etsy:hover { background: #d4551a; }

/* ══════════════════════════════════════════════════════
   PROCESS / HOW WE MAKE IT
   ══════════════════════════════════════════════════════ */
.process-section {
  padding: 100px 0;
  background: var(--white);
}
.process-head { text-align: center; margin-bottom: 64px; }
.process-head h2 { font-style: italic; font-weight: 300; margin-bottom: 14px; }
.process-head p { color: var(--mid); font-size: 15px; max-width: 520px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.process-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 52px;
  color: var(--border);
  font-size: 1.5rem;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.step-num {
  font-family: var(--f-display);
  font-size: 4.5rem; font-weight: 300; font-style: italic;
  color: var(--border); line-height: 1;
  margin-bottom: 16px;
}
.step-icon-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--forest);
  transition: all var(--ease);
}
.process-step:hover .step-icon-ring {
  background: var(--forest); color: var(--white);
  border-color: var(--forest);
  transform: scale(1.08);
}
.step-title {
  font-family: var(--f-display);
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: 10px;
}
.step-desc { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   GALLERY / INSTAGRAM GRID
   ══════════════════════════════════════════════════════ */
.gallery-section {
  padding: 80px 0;
  background: var(--ivory);
}
.gallery-head { text-align: center; margin-bottom: 32px; }
.gallery-head h2 { font-style: italic; font-weight: 300; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sand);
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(43,63,63,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { color: rgba(255,255,255,.9); }
.gallery-cta {
  text-align: center; margin-top: 28px;
}
.gallery-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: gap var(--ease);
}
.gallery-cta a:hover { gap: 14px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-arrow { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .qv-panel { grid-template-columns: 1fr; }
  .qv-img-wrap { border-radius: 16px 16px 0 0; aspect-ratio: 4/3; }
  .qv-body { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ship-bar-inner { font-size: 10px; gap: 8px; }
}
