/** Shopify CDN: Minification failed

Line 693:0 Unexpected "}"
Line 694:24 Expected ":"

**/
/* ============================================
   BARA SKIN — Theme Stylesheet
   Bara Holdings LLC © 2025
   ============================================ */

/* --- TOKENS --- */
:root {
  --parchment:     #F5EFE4;
  --parchment-dk:  #EDE5D4;
  --amber:         #C8862A;
  --amber-dk:      #A86E1E;
  --walnut:        #3D2B1F;
  --walnut-lt:     #6B4C38;
  --charcoal:      #2A2A28;
  --charcoal-lt:   #3A3A38;
  --white:         #FFFFFF;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', sans-serif;

  --nav-h:         72px;
  --max-w:         1240px;
  --gutter:        52px;
  --radius:        0px;

  --ease:          cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea { font: inherit; border: none; outline: none; }

/* --- BASE --- */
body {
  background: var(--parchment);
  color: var(--walnut);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

/* --- TYPOGRAPHY --- */
.display { font-family: var(--font-display); font-weight: 300; line-height: 1.1; }
.display-italic { font-family: var(--font-display); font-weight: 300; font-style: italic; line-height: 1.15; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--amber);
}

/* --- LAYOUT UTILITIES --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section-pad { padding: 110px var(--gutter); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 17px 38px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}

.btn-amber {
  background: var(--amber);
  color: var(--parchment);
}
.btn-amber:hover { background: var(--walnut); transform: translateY(-2px); }

.btn-walnut {
  background: var(--walnut);
  color: var(--parchment);
}
.btn-walnut:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--walnut);
  border: 1px solid rgba(61,43,31,0.3);
}
.btn-outline:hover { border-color: var(--walnut); background: var(--walnut); color: var(--parchment); }

.btn-text {
  background: none;
  color: var(--walnut);
  padding: 0;
  border-bottom: 1px solid var(--walnut);
  padding-bottom: 2px;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--amber); border-color: var(--amber); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--walnut);
  padding: 10px var(--gutter);
  text-align: center;
}
.announcement-bar p {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--parchment);
  text-transform: uppercase;
  opacity: 0.85;
}
.announcement-bar a { color: var(--amber); }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 239, 228, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,43,31,0.08);
  height: var(--nav-h);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}
.header-logo .wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--walnut);
}
.header-logo .sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.38em;
  font-weight: 400;
  color: var(--walnut-lt);
  text-transform: lowercase;
}

.header-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--walnut);
  transition: color 0.2s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.header-nav a:hover { color: var(--amber); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.header-actions a, .header-actions button {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--walnut);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.header-actions a:hover, .header-actions button:hover { color: var(--amber); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--parchment-dk);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.hero-media:hover img { transform: scale(1.03); }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  background: var(--parchment);
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,134,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--walnut);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--walnut-lt);
  max-width: 360px;
  margin-bottom: 48px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--walnut-lt);
  opacity: 0.6;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--walnut-lt);
  opacity: 0.4;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--walnut);
  padding: 22px var(--gutter);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid rgba(245,239,228,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { opacity: 0.7; flex-shrink: 0; }
.trust-item-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--parchment);
}
.trust-item-text span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(245,239,228,0.5);
  letter-spacing: 0.05em;
}

/* ============================================
   INGREDIENT PILLARS
   ============================================ */
.pillars { background: var(--parchment); }
.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
}
.pillars-header {
  text-align: center;
  margin-bottom: 72px;
}
.pillars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--walnut);
  margin-top: 16px;
  line-height: 1.15;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar-card {
  padding: 56px 44px;
  background: rgba(61,43,31,0.03);
  transition: background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.pillar-card:hover { background: rgba(200,134,42,0.05); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
  width: 44px; height: 44px;
  margin-bottom: 28px;
  color: var(--amber);
}
.pillar-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.pillar-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--walnut-lt);
  font-weight: 300;
}

/* ============================================
   FEATURED PRODUCT
   ============================================ */
.featured-product {
  background: var(--parchment-dk);
}
.featured-product-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.product-image-area { position: relative; }
.product-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.product-image-wrap img {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(61,43,31,0.2));
  transition: transform 0.6s var(--ease);
}
.product-image-wrap:hover img { transform: translateY(-10px) rotate(0.5deg); }

.product-no {
  font-size: 10px;
  letter-spacing: 0.38em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 300;
  color: var(--walnut);
  line-height: 1.08;
  margin-bottom: 10px;
}
.product-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--walnut-lt);
  margin-bottom: 36px;
}
.product-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--walnut-lt);
  padding-left: 20px;
  border-left: 2px solid var(--amber);
  margin-bottom: 36px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.product-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--walnut);
  border: 1px solid rgba(61,43,31,0.2);
  padding: 7px 14px;
  transition: border-color 0.2s, color 0.2s;
}
.product-tag:hover { border-color: var(--amber); color: var(--amber); }

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--walnut);
}
.product-size {
  font-size: 12px;
  color: var(--walnut-lt);
  letter-spacing: 0.1em;
}

.product-add { width: 100%; margin-bottom: 12px; }

.product-subscribe {
  text-align: center;
  font-size: 11px;
  color: var(--walnut-lt);
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* ============================================
   PHILOSOPHY BAND
   ============================================ */
.philosophy {
  background: var(--walnut);
  padding: 120px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: min(22vw, 280px);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 28px;
  position: relative;
}
.philosophy-attr {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
}

/* ============================================
   CLEAN STANDARD
   ============================================ */
.clean-standard {
  background: var(--parchment);
}
.clean-standard-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 110px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.clean-visual {
  background: rgba(61,43,31,0.05);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.clean-visual-ring {
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(200,134,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.clean-visual-ring::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200,134,42,0.15);
}
.clean-visual-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.clean-visual-label {
  position: absolute;
  bottom: 28px;
  font-size: 9px;
  letter-spacing: 0.35em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--walnut-lt);
}

.clean-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 300;
  color: var(--walnut);
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 24px;
}
.clean-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--walnut-lt);
  margin-bottom: 44px;
}
.clean-list { display: flex; flex-direction: column; gap: 16px; }
.clean-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--walnut);
}
.clean-list li::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ============================================
    CAPTURE
   ============================================ */
.email-section {
background: var(--charcoal);
padding: 60px var(--gutter);
text-align: center;
}
}
.email-section h2 {EMAIL
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--parchment);
  margin-top: 16px;
  margin-bottom: 12px;
}
.email-sub {
  font-size: 13px;
  color: rgba(245,239,228,0.45);
  margin-bottom: 44px;
  letter-spacing: 0.05em;
}
.email-form {
  display: flex;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}
.email-input {
  flex: 1;
  padding: 17px 20px;
  background: rgba(245,239,228,0.06);
  border: 1px solid rgba(245,239,228,0.12);
  border-right: none;
  color: var(--parchment);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.email-input::placeholder { color: rgba(245,239,228,0.25); }
.email-input:focus { background: rgba(245,239,228,0.1); }
.email-submit {
  background: var(--amber);
  color: var(--parchment);
  padding: 17px 28px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}
.email-submit:hover { background: var(--amber-dk); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(245,239,228,0.06);
  padding: 72px var(--gutter) 36px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--parchment);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .sub {
  font-size: 9px;
  letter-spacing: 0.38em;
  color: var(--amber);
  display: block;
  margin-bottom: 22px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(245,239,228,0.35);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.32em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,239,228,0.45);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--parchment); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(245,239,228,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-legal {
  font-size: 10px;
  font-weight: 300;
  color: rgba(245,239,228,0.22);
  letter-spacing: 0.07em;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter) 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.product-gallery-main img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(61,43,31,0.15));
}

.product-form-area { padding-top: 20px; }

.product-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--walnut-lt);
  opacity: 0.6;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.product-form-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  color: var(--walnut);
  line-height: 1.08;
  margin-bottom: 8px;
}
.product-form-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--walnut-lt);
  margin-bottom: 32px;
}
.product-form-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--walnut-lt);
  margin-bottom: 36px;
}

.product-form-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 32px;
}

.add-to-cart-form { display: flex; flex-direction: column; gap: 12px; }
.add-to-cart-form .btn { width: 100%; justify-content: center; }

.product-meta {
  margin-top: 44px;
  border-top: 1px solid rgba(61,43,31,0.1);
  padding-top: 32px;
}
.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(61,43,31,0.07);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--walnut-lt);
}
.product-meta-row span:first-child { font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: var(--walnut); }

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-header {
  background: var(--walnut);
  padding: 80px var(--gutter) 72px;
  text-align: center;
}
.collection-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--parchment);
  margin-top: 14px;
}

.collection-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter) 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--parchment-dk);
  transition: transform 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); }
.product-card-image {
  overflow: hidden;
  background: var(--parchment);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.product-card-image img {
  width: 80%;
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 20px 40px rgba(61,43,31,0.15));
}
.product-card:hover .product-card-image img { transform: scale(1.04) translateY(-4px); }
.product-card-info { padding: 28px 28px 32px; }
.product-card-no {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 8px;
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--walnut-lt);
  margin-bottom: 20px;
}
.product-card .btn { width: 100%; justify-content: center; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.anim-fade-up { animation: fadeUp 0.9s var(--ease-out) both; }
.anim-fade-up-d1 { animation: fadeUp 0.9s 0.15s var(--ease-out) both; }
.anim-fade-up-d2 { animation: fadeUp 0.9s 0.3s var(--ease-out) both; }
.anim-fade-up-d3 { animation: fadeUp 0.9s 0.45s var(--ease-out) both; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(61,43,31,0.08);
  border-bottom: 1px solid rgba(61,43,31,0.08);
  padding: 15px 0;
  background: var(--parchment);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(61,43,31,0.38);
  padding: 0 44px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.marquee-sep { color: var(--amber); opacity: 0.5; margin-left: 4px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --gutter: 36px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 60vw; }
  .hero-content { padding: 60px 36px; }
  .featured-product-inner { grid-template-columns: 1fr; gap: 60px; }
  .clean-standard-inner { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .trust-item { border-right: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-nav { display: none; }
  .product-page { grid-template-columns: 1fr; gap: 60px; }
  .product-gallery { position: static; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .collection-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .email-form { flex-direction: column; }
  .email-input { border-right: 1px solid rgba(245,239,228,0.12); border-bottom: none; }
  .header-actions span { display: none; }
}
