/* ============================================================
   TALE BY SUTA — Brand Stylesheet
   Palette:  ivory #FBF6F0 · blush #E7B8B0 · rose #D98C82
             rust #B04E3E · ink #1C1712 · gold #C9A227
   Type:     Fraunces (display) / Inter (body) / Homemade Apple (script)
   ============================================================ */

:root{
  --ivory: #FBF6F0;
  --ivory-deep: #F3EAE1;
  --blush: #EFC9C2;
  --rose: #D98C82;
  --rust: #B04E3E;
  --rust-deep: #8C3A2D;
  --ink: #1C1712;
  --ink-soft: #453B34;
  --gold: #C9A227;
  --gold-soft: #E4C97A;
  --line: rgba(28,23,18,0.12);

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Homemade Apple", cursive;

  --maxw: 1240px;
  --pad: clamp(24px, 5vw, 72px);
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin:0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family: var(--display); font-weight:600; }

.wrap{ max-width: var(--maxw); margin:0 auto; padding-left: var(--pad); padding-right: var(--pad); }

:focus-visible{
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.eyebrow{
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}

.script-accent{
  font-family: var(--script);
  font-weight:400;
  color: var(--rust);
  font-size: 1.6em;
  line-height:1;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover{ background: var(--ink); color: var(--ivory); transform: translateY(-2px); }
.btn.solid{ background: var(--ink); color: var(--ivory); }
.btn.solid:hover{ background: var(--rust); border-color: var(--rust); }
.btn.ghost{ border-color: rgba(251,246,240,0.6); color: var(--ivory); }
.btn.ghost:hover{ background: var(--ivory); color: var(--ink); }
.btn svg{ width:14px; height:14px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(4px); }

/* ---------- ink bloom watercolor texture (signature motif) ---------- */
.ink-bloom{
  position:absolute;
  pointer-events:none;
  filter: blur(2px);
  opacity: .85;
  z-index:0;
  animation: bloomDrift 14s ease-in-out infinite;
}
.hero-bloom-2{ animation-duration: 18s; animation-delay: -4s; }
@keyframes bloomDrift{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-14px, 18px) scale(1.03); }
}

/* ---------- THREAD & FABRIC MOTIF ---------- */
.stitch-divider{ width:100%; overflow:hidden; line-height:0; position:relative; z-index:2; }
.stitch-divider svg{ width:100%; height:auto; display:block; }
.stitch-path{
  stroke: var(--rust); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 9 10; fill:none; stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.4s var(--ease);
}
.stitch-divider.in .stitch-path{ stroke-dashoffset: 0; }
.stitch-needle{
  opacity:0;
  transition: opacity .6s var(--ease) 1.6s;
  offset-path: path("M0,20 Q150,-10 300,20 T600,20 T900,20 T1200,20");
  offset-distance: 0%;
}
.stitch-divider.in .stitch-needle{ opacity: 1; animation: needleTravel 2.4s var(--ease) forwards; }
@keyframes needleTravel{ from{ offset-distance: 0%; } to{ offset-distance: 100%; } }

.silk-ribbon{ position:absolute; pointer-events:none; z-index:1; opacity:.9; }
.silk-ribbon path{ animation: ribbonWave 7s ease-in-out infinite; transform-origin: left center; }
.silk-ribbon.r2 path{ animation-duration: 9s; animation-delay: -3s; }
@keyframes ribbonWave{
  0%, 100%{ transform: translateY(0) rotate(0deg) scaleY(1); }
  25%{ transform: translateY(-10px) rotate(1.2deg) scaleY(1.02); }
  50%{ transform: translateY(6px) rotate(-0.8deg) scaleY(.98); }
  75%{ transform: translateY(-4px) rotate(0.6deg) scaleY(1.01); }
}

.marquee-track span{ display:inline-flex; animation: flutter 2.6s ease-in-out infinite; }
.marquee-track span:nth-child(odd){ animation-delay: -1.1s; }
.marquee-track span:nth-child(3n){ animation-delay: -0.4s; }
.marquee-track span:nth-child(4n){ animation-delay: -1.8s; }
@keyframes flutter{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-3px) rotate(-1deg); }
}

.col-media{ perspective: 1200px; }
.media-frame{ transform-style: preserve-3d; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.collection-row:hover .media-frame{
  transform: rotateY(-4deg) rotateX(2deg) translateY(-4px);
  box-shadow: 0 45px 80px -28px rgba(28,23,18,.4);
}
.media-frame .sheen, .cat-card .sheen, .card-media .sheen{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease);
  pointer-events:none;
  z-index:1;
}
.collection-row:hover .sheen, .cat-card:hover .sheen, .product-card:hover .sheen{ transform: translateX(120%); }

.btn{ position:relative; overflow:hidden; }
.btn::before{
  content:'';
  position:absolute; inset:0;
  border-radius:100px;
  border: 1.5px dashed transparent;
  transition: border-color .4s var(--ease);
}
.btn:hover::before{ border-color: rgba(251,246,240,.7); }
.btn.solid:hover::before, .btn.ghost:hover::before{ border-color: rgba(28,23,18,.35); }

.hero-visual{ animation: garmentSway 6s ease-in-out infinite; transform-origin: top center; }
@keyframes garmentSway{
  0%, 100%{ transform: rotate(0deg); }
  50%{ transform: rotate(0.6deg); }
}

/* ================= NAV ================= */
.site-nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px var(--pad);
  background: rgba(251,246,240,0.0);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-nav.scrolled{
  background: rgba(251,246,240,0.88);
  backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo{ display:flex; align-items:center; gap:12px; position:relative; }
.nav-logo img{ height: 46px; width:auto; mix-blend-mode: multiply; position:relative; z-index:2; }

/* pulsing pink glow sitting behind the wordmark */
.nav-logo::before{
  content:'';
  position:absolute;
  left:-14px; top:50%;
  width: 210px; height: 64px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(217,140,130,.55) 0%, rgba(233,180,171,.32) 45%, transparent 75%);
  filter: blur(10px);
  z-index:1;
  pointer-events:none;
  animation: glowPulse 3.2s ease-in-out infinite;
}
@keyframes glowPulse{
  0%, 100%{ opacity:.55; transform: translateY(-50%) scale(0.94); }
  50%{ opacity:1; transform: translateY(-50%) scale(1.08); }
}

.nav-brand-text{
  position:relative;
  z-index:2;
  font-family: var(--display);
  font-weight:600;
  font-size: 21px;
  letter-spacing: .01em;
  white-space: nowrap;
  background: linear-gradient(100deg,
    var(--rust-deep) 0%,
    var(--rust) 18%,
    var(--gold-soft) 38%,
    #ffffff 50%,
    var(--gold-soft) 62%,
    var(--rose) 82%,
    var(--rust-deep) 100%);
  background-size: 240% auto;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineSweep 3.5s linear infinite;
}
.nav-brand-text em{
  font-style: italic;
  font-weight: 400;
  font-family: var(--script);
  font-size: 1.05em;
}
@keyframes shineSweep{
  to{ background-position: -240% 50%; }
}
@media (max-width: 560px){
  .nav-brand-text{ display:none; }
  .nav-logo::before{ width: 90px; }
}
.nav-links{ display:flex; gap: 36px; align-items:center; }
.nav-links a{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  position:relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--rust);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-actions{ display:flex; align-items:center; gap:20px; }
.nav-icon-btn{ background:none; border:none; padding:4px; display:flex; }
.nav-icon-btn svg{ width:20px; height:20px; stroke: var(--ink); }
.bag-count{
  font-size:10px; background:var(--rust); color:var(--ivory);
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:relative; top:-9px; left:-11px; font-weight:700;
}
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
}
.menu-toggle span{ width:24px; height:2px; background:var(--ink); transition: all .3s var(--ease); }

.mobile-menu{
  position:fixed; inset:0;
  background: var(--ivory);
  z-index:600;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{ font-family: var(--display); font-size: 32px; }
.mobile-close{
  position:absolute; top:22px; right:var(--pad);
  background:none; border:none; font-size:28px; color:var(--ink);
}

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding-top: 90px;
  overflow:hidden;
  background: var(--ivory);
}
.hero-bloom-1{ top:-10%; right:-8%; width:60vw; max-width:900px; }
.hero-bloom-2{ bottom:-15%; left:-10%; width:40vw; max-width:600px; opacity:.5; }

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items:center;
}
.hero-copy{ padding-top: 10px; }
.hero-copy .eyebrow{ display:flex; align-items:center; gap:12px; margin-bottom: 22px; }
.hero-copy .eyebrow::before{
  content:''; width:34px; height:1px; background: var(--rust);
}

.hero-shine-title{
  position:relative;
  display:block;
  width:100%;
  text-align:center;
  font-family: var(--display);
  font-weight:600;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: .01em;
  margin: 0 auto 30px;
  padding: 10px 4px;
  background: linear-gradient(100deg,
    var(--rust-deep) 0%,
    var(--rust) 18%,
    var(--gold-soft) 38%,
    #ffffff 50%,
    var(--gold-soft) 62%,
    var(--rose) 82%,
    var(--rust-deep) 100%);
  background-size: 240% auto;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineSweep 3.5s linear infinite;
}
.hero-shine-title em{
  font-style: italic;
  font-weight: 400;
  font-family: var(--script);
  font-size: 1.1em;
}
.hero-shine-title::before{
  content:'';
  position:absolute;
  left:50%; top:50%;
  width: 340px; height: 100px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(217,140,130,.55) 0%, rgba(233,180,171,.32) 45%, transparent 75%);
  filter: blur(16px);
  z-index:-1;
  pointer-events:none;
  animation: glowPulse 3.2s ease-in-out infinite;
}
.hero-title{
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: .98;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.hero-title em{
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.hero-desc{
  max-width: 460px;
  margin: 28px 0 40px;
  font-size: 17px;
  color: var(--ink-soft);
}
.hero-cta-row{ display:flex; align-items:center; gap: 28px; flex-wrap:wrap; }
.hero-signature{
  font-family: var(--script);
  font-size: 34px;
  color: var(--ink-soft);
}

.hero-visual{
  position:relative;
  aspect-ratio: 3/4;
  border-radius: 4px 60px 4px 4px;
  overflow:hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(217,140,130,.55), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(176,78,62,.5), transparent 60%),
    linear-gradient(160deg, #f3e2da, #e9c7bd 45%, #d79a8d 100%);
  box-shadow: 0 40px 80px -30px rgba(28,23,18,.35);
}
.hero-visual::before{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.12) 0px, rgba(255,255,255,.12) 1px, transparent 1px, transparent 14px);
  mix-blend-mode: overlay;
}
.hero-visual-tag{
  position:absolute; left:24px; bottom:24px;
  background: rgba(251,246,240,0.9);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13px;
  backdrop-filter: blur(6px);
}
.hero-visual-tag strong{ display:block; font-family: var(--display); font-size:16px; margin-bottom:2px;}

.scroll-cue{
  position:absolute; bottom: 30px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:11px; letter-spacing:.16em; text-transform:uppercase; color: var(--ink-soft);
  z-index:2;
}
.scroll-cue .line{
  width:1px; height:38px; background: linear-gradient(var(--ink-soft), transparent);
  animation: scrollcue 2s infinite var(--ease);
}
@keyframes scrollcue{ 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 51%{ transform-origin:bottom;} 100%{ transform: scaleY(0); transform-origin:bottom;} }

/* ================= MARQUEE ================= */
.marquee-strip{
  background: var(--ink);
  color: var(--ivory);
  overflow:hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track{
  display:inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-track span{
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  padding: 0 28px;
  display:inline-flex;
  align-items:center;
  gap: 28px;
  color: var(--gold-soft);
}
.marquee-track span::after{ content:'✦'; font-size:12px; color: var(--rose); }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ================= SECTION HEADERS ================= */
section{ position:relative; }
.section-pad{ padding: 120px 0; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.section-head h2{
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin-top: 14px;
  max-width: 620px;
}
.section-head p{
  max-width: 320px;
  color: var(--ink-soft);
  font-size: 15px;
  padding-bottom: 6px;
}

/* ================= COLLECTION ROWS (asymmetric) ================= */
.collection-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
  margin-bottom: 130px;
}
.collection-row:last-child{ margin-bottom:0; }
.collection-row.reverse .col-media{ order:2; }
.collection-row.reverse .col-text{ order:1; }

.col-media{ position:relative; }
.media-frame{
  aspect-ratio: 4/5;
  border-radius: 4px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 30px 60px -25px rgba(28,23,18,.3);
}
.media-frame .swatch-number{
  position:absolute; top:20px; left:20px;
  font-family: var(--display); font-style:italic; color: var(--ivory);
  font-size:14px; z-index:2; opacity:.85;
}
.media-frame::after{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(100deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px);
  mix-blend-mode: overlay;
}
.m-1{ background: linear-gradient(150deg,#e9d2c6,#cf8f80 55%,#a94f3d);}
.m-2{ background: linear-gradient(150deg,#f1e5d6,#d9b79f 50%,#b3684a);}
.m-3{ background: linear-gradient(150deg,#ecd9d3,#c98d81 55%,#8c3a2d);}
.m-4{ background: linear-gradient(150deg,#f4ece2,#e2bfae 55%,#c76b52);}

.col-text .eyebrow{ margin-bottom:16px; display:block; }
.col-text h3{ font-size: clamp(28px,3.4vw,44px); line-height:1.08; margin-bottom: 20px; }
.col-text p{ color: var(--ink-soft); max-width: 440px; margin-bottom: 30px; }
.price-tag{
  font-family: var(--display); font-style:italic; font-size:20px; color:var(--rust); margin-bottom:24px; display:block;
}

/* ================= CATEGORY GRID ================= */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card{
  position:relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow:hidden;
  cursor:pointer;
}
.cat-card .cat-bg{
  position:absolute; inset:0;
  transition: transform .7s var(--ease);
}
.cat-card:hover .cat-bg{ transform: scale(1.08); }
.cat-1 .cat-bg{ background: radial-gradient(circle at 40% 30%, #e6b2a6, #b0503e 80%); }
.cat-2 .cat-bg{ background: radial-gradient(circle at 60% 40%, #eccdb8, #a8563f 80%); }
.cat-3 .cat-bg{ background: radial-gradient(circle at 50% 20%, #f0ddd0, #c67a5f 80%); }
.cat-4 .cat-bg{ background: radial-gradient(circle at 30% 60%, #e2a99b, #8c3a2d 80%); }
.cat-card .cat-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(28,23,18,.75) 0%, transparent 55%);
}
.cat-card .cat-label{
  position:absolute; left:20px; bottom:20px; z-index:2; color: var(--ivory);
}
.cat-card .cat-label .eyebrow{ color: var(--gold-soft); }
.cat-card .cat-label h4{ font-size:24px; margin-top:6px; }
.cat-card .cat-arrow{
  position:absolute; top:20px; right:20px; width:34px; height:34px;
  border-radius:50%; border:1px solid rgba(251,246,240,.6);
  display:flex; align-items:center; justify-content:center;
  color: var(--ivory);
  transform: rotate(-40deg);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.cat-card:hover .cat-arrow{ transform: rotate(0deg); background: var(--ivory); color: var(--ink); }
.cat-card .cat-arrow svg{ width:14px; height:14px; }

/* ================= PRODUCT GRID (10-card section) ================= */
.product-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 22px;
}
.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
}
.card-media{
  position:relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow:hidden;
  margin-bottom: 16px;
  box-shadow: 0 18px 34px -20px rgba(28,23,18,.35);
}
.card-media .card-bg{
  position:absolute; inset:0;
  transition: transform .7s var(--ease);
}
.product-card:hover .card-bg{ transform: scale(1.07); }
.card-media::after{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(105deg, rgba(255,255,255,.08) 0 1px, transparent 1px 15px);
  mix-blend-mode: overlay;
}
.p-1 .card-bg{ background: linear-gradient(155deg,#f1e2d6,#d99a86 55%,#a94f3d); }
.p-2 .card-bg{ background: linear-gradient(155deg,#ecd6cd,#c98d81 55%,#8c3a2d); }
.p-3 .card-bg{ background: linear-gradient(155deg,#f4ece2,#e2bfae 55%,#c76b52); }
.p-4 .card-bg{ background: linear-gradient(155deg,#e9d2c6,#cf8f80 55%,#a94f3d); }
.p-5 .card-bg{ background: linear-gradient(155deg,#f0ddd0,#c67a5f 55%,#8c3a2d); }
.p-6 .card-bg{ background: linear-gradient(155deg,#eccdb8,#a8563f 55%,#7a3226); }
.p-7 .card-bg{ background: linear-gradient(155deg,#f3e2da,#e9c7bd 55%,#b0503e); }
.p-8 .card-bg{ background: linear-gradient(155deg,#e6b2a6,#b0503e 55%,#7a3226); }
.p-9 .card-bg{ background: linear-gradient(155deg,#f4e9df,#d29f88 55%,#a15b46); }
.p-10 .card-bg{ background: linear-gradient(155deg,#e3ab9c,#8c3a2d 55%,#5f271d); }

.card-badge{
  position:absolute; top:14px; left:14px; z-index:2;
  background: rgba(251,246,240,.92);
  color: var(--rust);
  font-size: 10px; letter-spacing:.1em; text-transform:uppercase; font-weight:700;
  padding: 5px 10px; border-radius: 100px;
}
.card-wishlist{
  position:absolute; top:12px; right:12px; z-index:2;
  width:32px; height:32px; border-radius:50%;
  background: rgba(251,246,240,.85);
  border:none;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.card-wishlist svg{ width:15px; height:15px; stroke: var(--ink); fill:none; transition: fill .3s, stroke .3s; }
.card-wishlist:hover{ transform: scale(1.1); }
.card-wishlist.active svg{ fill: var(--rust); stroke: var(--rust); }
.card-wishlist.active{ animation: pulseHeart .4s var(--ease); }
@keyframes pulseHeart{ 50%{ transform: scale(1.25); } }

.card-quickadd{
  position:absolute; left:12px; right:12px; bottom:12px; z-index:2;
  padding: 11px 14px;
  border-radius: 100px;
  border:none;
  background: rgba(28,23,18,.88);
  color: var(--ivory);
  font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
  display:flex; align-items:center; justify-content:center; gap:8px;
  opacity:0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s;
}
.product-card:hover .card-quickadd{ opacity:1; transform: translateY(0); }
.card-quickadd:hover{ background: var(--rust); }
.card-quickadd svg{ width:13px; height:13px; }

.card-info{ padding: 0 2px; }
.card-info .eyebrow{ font-size:10px; }
.card-info h4{
  font-family: var(--display); font-size: 17px; font-weight:600; line-height:1.25;
  margin: 6px 0 6px;
}
.card-price-row{ display:flex; align-items:center; gap:10px; }
.card-price{ font-family: var(--display); font-style:italic; color: var(--rust); font-size:15px; }
.card-price-old{ font-size:13px; color: var(--ink-soft); text-decoration: line-through; opacity:.6; }
.card-rating{ display:flex; align-items:center; gap:4px; margin-top:6px; }
.card-rating svg{ width:12px; height:12px; fill: var(--gold); stroke:none; }
.card-rating span{ font-size:12px; color: var(--ink-soft); margin-left:4px; }

/* ================= STORY ================= */
.story-section{ background: var(--ink); color: var(--ivory); overflow:hidden; }
.story-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items:center;
}
.story-grid .eyebrow{ color: var(--gold-soft); }
.story-grid h2{
  color: var(--ivory);
  font-size: clamp(30px,3.6vw,48px);
  line-height:1.12;
  margin: 18px 0 26px;
}
.story-grid p{ color: rgba(251,246,240,.75); max-width: 480px; margin-bottom:18px; }
.story-values{
  display:flex; gap: 34px; margin-top: 36px; flex-wrap:wrap;
}
.story-values div{ max-width:150px; }
.story-values .v-num{ font-family: var(--display); font-style: italic; color: var(--gold-soft); font-size:26px; display:block; margin-bottom:6px;}
.story-values p{ font-size:13px; color: rgba(251,246,240,.65); margin:0; }

.story-visual{ position:relative; }
.story-quote-card{
  background: var(--ivory);
  color: var(--ink);
  border-radius: 4px;
  padding: 46px 40px;
  position:relative;
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.5);
}
.story-quote-card .script-accent{ font-size: 44px; line-height:1; display:block; margin-bottom: 14px; }
.story-quote-card p{ font-family: var(--display); font-style:italic; font-size: 21px; line-height:1.4; color: var(--ink); }
.story-quote-card .flourish{
  margin-top: 22px;
  width: 130px;
  height: auto;
  stroke: var(--rust);
}

/* ================= TESTIMONIALS ================= */
.testimonial-section{ background: var(--ivory-deep); }
.testi-wrap{ max-width: 780px; margin:0 auto; text-align:center; }
.testi-slide{ display:none; }
.testi-slide.active{ display:block; animation: fadein .6s var(--ease); }
@keyframes fadein{ from{ opacity:0; transform: translateY(12px);} to{ opacity:1; transform:translateY(0);} }
.testi-slide p{
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px,2.6vw,32px); line-height:1.45; color: var(--ink);
}
.testi-name{ margin-top: 26px; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--rust); font-weight:700; }
.testi-role{ font-size:13px; color: var(--ink-soft); }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top: 40px; }
.testi-dots button{
  width:8px; height:8px; border-radius:50%; border:none; background: rgba(28,23,18,.2);
  transition: background .3s, transform .3s;
}
.testi-dots button.active{ background: var(--rust); transform: scale(1.3); }

/* ================= GALLERY ================= */
.gallery-strip{ display:grid; grid-template-columns: repeat(5,1fr); gap: 4px; }
.gallery-strip .g-item{
  aspect-ratio:1; position:relative; overflow:hidden;
}
.gallery-strip .g-item img, .gallery-strip .g-item .g-bg{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gallery-strip .g-item:hover .g-bg{ transform: scale(1.12); }
.g-bg-1{ background: linear-gradient(140deg,#f0d9cd,#c98368); }
.g-bg-2{ background: linear-gradient(140deg,#e7b8b0,#a34a3a); }
.g-bg-3{ background: linear-gradient(140deg,#f4e9df,#d29f88); }
.g-bg-4{ background: linear-gradient(140deg,#e3ab9c,#8c3a2d); }
.g-bg-5{ background: linear-gradient(140deg,#f1e0d3,#c67a5f); }
.gallery-strip .g-item .g-overlay{
  position:absolute; inset:0; background: rgba(28,23,18,0); display:flex; align-items:center; justify-content:center;
  transition: background .35s;
}
.gallery-strip .g-item:hover .g-overlay{ background: rgba(28,23,18,.35); }
.gallery-strip .g-item svg{ width:22px; height:22px; stroke:var(--ivory); opacity:0; transition: opacity .35s; }
.gallery-strip .g-item:hover svg{ opacity:1; }
.gallery-cta{ text-align:center; margin-top: 46px; }

/* ================= NEWSLETTER ================= */
.newsletter-section{
  position:relative;
  background: linear-gradient(120deg, var(--rust-deep), var(--rust) 60%, var(--rose));
  color: var(--ivory);
  overflow:hidden;
}
.newsletter-inner{
  position:relative; z-index:2;
  text-align:center;
  padding: 100px 0;
}
.newsletter-inner .script-accent{ color: var(--gold-soft); font-size: 40px; }
.newsletter-inner h2{ color: var(--ivory); font-size: clamp(30px,4vw,52px); margin: 14px 0 18px; }
.newsletter-inner p{ color: rgba(251,246,240,.8); max-width:420px; margin:0 auto 34px; }
.newsletter-form{
  display:flex; max-width: 440px; margin:0 auto; gap:10px; flex-wrap:wrap; justify-content:center;
}
.newsletter-form input{
  flex:1; min-width:220px;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid rgba(251,246,240,.4);
  background: rgba(251,246,240,.08);
  color: var(--ivory);
  font-size:14px;
}
.newsletter-form input::placeholder{ color: rgba(251,246,240,.6); }
.newsletter-form button{
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  background: var(--ivory);
  color: var(--ink);
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition: background .3s, transform .3s;
}
.newsletter-form button:hover{ background: var(--ink); color: var(--ivory); transform: translateY(-2px); }
.form-note{ margin-top:16px; font-size:12px; color: rgba(251,246,240,.65); min-height: 18px; }

/* ================= FOOTER ================= */
footer{ background: var(--ink); color: rgba(251,246,240,.8); padding-top: 80px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251,246,240,.12);
}
.footer-brand img{ height:52px; filter: brightness(0) invert(1); margin-bottom:18px; }
.footer-brand p{ max-width: 280px; font-size:14px; color: rgba(251,246,240,.6); }
.footer-social{ display:flex; gap:14px; margin-top:22px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(251,246,240,.25);
  display:flex; align-items:center; justify-content:center;
  transition: background .3s, border-color .3s;
}
.footer-social a:hover{ background: var(--rust); border-color: var(--rust); }
.footer-social svg{ width:15px; height:15px; stroke: var(--ivory); }
.footer-col h5{ font-family: var(--body); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:20px; font-weight:700; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:14px; color: rgba(251,246,240,.7); transition: color .3s; }
.footer-col a:hover{ color: var(--ivory); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding: 26px 0; font-size:12px; color: rgba(251,246,240,.5);
}

/* ================= REVEAL ON SCROLL ================= */
.reveal{ opacity:0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  right: 26px;
  bottom: 26px;
  z-index: 850;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 28px -10px rgba(37,211,102,.55), 0 4px 10px rgba(28,23,18,.2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float svg{ width: 30px; height: 30px; color: #fff; position:relative; z-index:2; }
.whatsapp-float:hover{ transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 34px -8px rgba(37,211,102,.65), 0 6px 14px rgba(28,23,18,.25); }
.wa-ring{
  position:absolute; inset:0;
  border-radius:50%;
  background: #25D366;
  opacity:.55;
  animation: waPulse 2.2s ease-out infinite;
  z-index:1;
}
@keyframes waPulse{
  0%{ transform: scale(1); opacity:.55; }
  100%{ transform: scale(1.9); opacity:0; }
}
@media (max-width: 560px){
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}

/* ================= TOAST (bag) ================= */
.toast{
  position:fixed; bottom:26px; right:26px; z-index:900;
  background: var(--ink); color: var(--ivory);
  padding: 16px 22px; border-radius: 8px; font-size:14px;
  display:flex; align-items:center; gap:10px;
  transform: translateY(140%); opacity:0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.toast.show{ transform: translateY(0); opacity:1; }
.toast svg{ width:18px; height:18px; stroke: var(--gold-soft); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width: 420px; margin: 0 auto; }
  .collection-row, .story-grid{ grid-template-columns: 1fr; gap: 40px; }
  .collection-row.reverse .col-media{ order:1; }
  .collection-row.reverse .col-text{ order:2; }
  .cat-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-strip{ grid-template-columns: repeat(3,1fr); }
  .product-grid{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .menu-toggle{ display:flex; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:16px; }
  .section-pad{ padding: 80px 0; }
  .cat-grid{ grid-template-columns: 1fr 1fr; gap:12px; }
  .product-grid{ grid-template-columns: repeat(2,1fr); gap:16px; }
  .card-quickadd{ opacity:1; transform:translateY(0); position:static; margin-top:10px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .gallery-strip{ grid-template-columns: repeat(3,1fr); }
  .hero-cta-row{ gap:18px; }
  .story-values{ gap: 22px; }
}