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

:root {
  --maroon: #6d071a;
  --burgundy: #800020;
  --ivory: #fff8f0;
  --champagne: #f3e5ab;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --text-muted: #9a8775;
  --text-on-dark: #ddc9b0;
  --display: 'Playfair Display', serif;
  --script: 'Cormorant Garamond', serif;
  --eyebrow-font: 'Cinzel', serif;
  --sans: 'Poppins', sans-serif;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--maroon);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; }

.eyebrow {
  font-family: var(--eyebrow-font);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); display: inline-block; }

/* ---------- custom cursor (desktop only) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring { width: 30px; height: 30px; border: 1px solid var(--gold); transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease; opacity: 0.7; }
.cursor-ring.hovering { width: 48px; height: 48px; opacity: 1; }
@media (max-width: 980px), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-mark { text-align: center; }
.preloader-mark span { font-family: var(--display); font-size: 30px; color: var(--ivory); letter-spacing: 0.04em; }
.preloader-mark .line { width: 0; height: 1px; background: var(--gold); margin: 16px auto 0; animation: preloadLine 1.4s ease forwards; }
@keyframes preloadLine { to { width: 140px; } }

/* ---------- particles ---------- */
.particle-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; opacity: 0.5;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  to { transform: translateY(-560px) translateX(20px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .particle { animation: none; opacity: 0.3; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 16px 34px; border: 1px solid var(--gold); display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; background: transparent; transition: background 0.35s ease, color 0.35s ease, transform 0.3s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-solid { background: var(--gold); color: var(--maroon); }
.btn-solid:hover { background: var(--champagne); border-color: var(--champagne); transform: translateY(-2px); }
.btn-outline-dark { color: var(--ivory); border-color: var(--gold); }
.btn-outline-dark:hover { background: var(--gold); color: var(--maroon); transform: translateY(-2px); }
.btn-outline-light { color: var(--maroon); border-color: var(--maroon); }
.btn-outline-light:hover { background: var(--maroon); color: var(--gold); border-color: var(--maroon); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 0; transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(109, 7, 26, 0.94); backdrop-filter: blur(10px); padding: 16px 0; border-color: rgba(212, 175, 55, 0.3); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--display); font-size: 25px; letter-spacing: 0.02em; color: var(--ivory); }
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--sans); }
.nav-links a { color: var(--text-on-dark); position: relative; padding-bottom: 4px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 24px; height: 1px; background: var(--gold); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--maroon); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--display); font-size: 28px; color: var(--ivory); }
.mobile-nav .close-btn { position: absolute; top: 28px; right: 32px; font-size: 28px; color: var(--gold); cursor: pointer; background: none; border: none; }

.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(109,7,26,0.5); transition: transform 0.3s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float i { font-size: 26px; color: var(--maroon); }

/* ---------- hero ---------- */
.hero { background: linear-gradient(165deg, var(--maroon) 0%, #4a0512 100%); color: var(--ivory); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 110px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 20px; width: 100%; position: relative; z-index: 2; }
.hero-tagline { font-family: var(--eyebrow-font); font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.12; color: var(--ivory); }
.hero h1 em { font-family: var(--script); font-style: italic; color: var(--gold); }
.hero-sub { margin-top: 26px; max-width: 420px; color: var(--text-on-dark); font-size: 16px; font-family: var(--script); font-size: 19px; }
.hero-actions { display: flex; gap: 18px; margin-top: 42px; flex-wrap: wrap; }
.hero-illustration { position: relative; }
.hero-illustration svg { width: 100%; max-width: 420px; margin: 0 auto; }
.ribbon-path { animation: ribbonSway 7s ease-in-out infinite; transform-origin: 60% 30%; }
@keyframes ribbonSway { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(2.5deg); } }
.figure-outline { stroke: var(--champagne); }
.scroll-cue { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2; }
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- wave divider ---------- */
.wave-divider { display: block; width: 100%; height: 60px; margin-top: -1px; }
.wave-divider path { fill: var(--ivory); }
.wave-divider.flip { transform: rotate(180deg); }
.wave-on-maroon path { fill: var(--maroon); }
.wave-on-beige path { fill: var(--champagne); }

/* ---------- floating motif background ---------- */
.floral-bg { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; z-index: 0; }
.floral-bg .motif { stroke: var(--gold); opacity: 0.25; }

/* ---------- sections ---------- */
section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 64px; position: relative; z-index: 2; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--text-muted); font-size: 15px; font-family: var(--script); font-size: 18px; }
.on-dark { background: var(--maroon); color: var(--ivory); }
.on-dark .section-head p { color: var(--text-on-dark); }
.on-champagne { background: var(--champagne); }

/* ---------- collection illustrated cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
.silk-card { background: var(--ivory); border: 1px solid rgba(109,7,26,0.1); text-align: center; transition: transform 0.45s ease, box-shadow 0.45s ease; position: relative; overflow: hidden; }
.silk-card:hover { transform: translateY(-10px); box-shadow: 0 28px 56px -22px rgba(109,7,26,0.22); }
.silk-card .border-draw { position: absolute; inset: 0; pointer-events: none; }
.silk-card .border-draw rect { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 0.7s ease; }
.silk-card:hover .border-draw rect { stroke-dashoffset: 0; }
.silk-card .icon-stage { background: var(--maroon); padding: 46px 0 36px; position: relative; }
.silk-card .icon-stage svg { width: 78px; height: 78px; margin: 0 auto; stroke: var(--gold); fill: none; }
.silk-card h3 { font-size: 22px; margin: 22px 18px 8px; }
.silk-card .tag { font-family: var(--eyebrow-font); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; margin-top: 22px; }
.silk-card p.desc { font-size: 14px; color: var(--text-muted); margin: 0 26px 30px; }

/* ---------- why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(212,175,55,0.2); position: relative; z-index: 2; }
.why-item { background: var(--maroon); padding: 48px 32px; text-align: left; }
.why-item svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; }
.why-item h4 { color: var(--ivory); font-size: 20px; margin: 22px 0 10px; }
.why-item p { color: var(--text-on-dark); font-size: 14px; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.testi-card { background: var(--ivory); border: 1px solid rgba(109,7,26,0.1); padding: 38px 30px; }
.testi-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 18px; }
.testi-card p.quote { font-family: var(--script); font-style: italic; font-size: 19px; color: var(--maroon); margin-bottom: 24px; }
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--maroon); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 15px; }
.testi-card .who strong { display: block; font-size: 14px; }
.testi-card .who span { font-size: 12px; color: var(--text-muted); }

/* ---------- instagram showcase ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; position: relative; z-index: 2; }
.insta-tile { aspect-ratio: 1; background: var(--maroon); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; transition: transform 0.4s ease; }
.insta-tile:hover { transform: scale(1.05); z-index: 3; }
.insta-tile svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; opacity: 0.8; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.faq-item { border-bottom: 1px solid rgba(109,7,26,0.14); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--display); font-size: 19px; color: var(--maroon); }
.faq-q i { color: var(--gold); transition: transform 0.35s ease; font-size: 18px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 24px; color: var(--text-muted); font-size: 14.5px; max-width: 640px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--maroon); color: var(--ivory); text-align: center; padding: 110px 0; }
.cta-strip h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 30px; }
.cta-strip .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: #3d0510; color: var(--text-on-dark); padding: 80px 0 0; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(212,175,55,0.18); }
.footer-grid .brand { margin-bottom: 16px; }
.footer-grid p.blurb { font-size: 14px; max-width: 280px; color: var(--text-on-dark); }
.footer-grid h5 { font-family: var(--eyebrow-font); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-grid ul li { margin-bottom: 12px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--gold); }
.social-row { display: flex; gap: 14px; margin-top: 20px; }
.social-row a { width: 38px; height: 38px; border: 1px solid rgba(212,175,55,0.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon); transform: translateY(-3px); }
.footer-bottom { padding: 26px 0; text-align: center; font-size: 12.5px; color: var(--text-muted); }

/* ---------- about: timeline ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; z-index: 2; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 1px; background: rgba(212,175,55,0.4); }
.tl-item { position: relative; padding: 0 0 56px 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot { position: absolute; left: 10px; top: 2px; width: 17px; height: 17px; border-radius: 50%; background: var(--ivory); border: 2px solid var(--gold); }
.tl-item h4 { font-size: 20px; margin-bottom: 8px; }
.tl-item .yr { font-family: var(--eyebrow-font); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); display: block; margin-bottom: 6px; }
.tl-item p { font-size: 14.5px; color: var(--text-muted); max-width: 540px; }

/* ---------- weaving animation ---------- */
.weave-stage { display: flex; align-items: center; justify-content: center; background: var(--maroon); padding: 70px 0; position: relative; z-index: 2; }
.weave-stage svg { width: 280px; }
.weave-thread { stroke: var(--gold); fill: none; stroke-width: 1.4; }
.shuttle { animation: shuttleMove 3.2s ease-in-out infinite; }
@keyframes shuttleMove { 0%,100% { transform: translateX(-90px); } 50% { transform: translateX(90px); } }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; z-index: 2; }
.value-card { text-align: center; padding: 42px 24px; border: 1px solid rgba(109,7,26,0.12); transition: border-color 0.3s ease, transform 0.3s ease; }
.value-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.value-card svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; margin: 0 auto; }
.value-card h4 { margin: 20px 0 10px; font-size: 19px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); }

.care-list { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.care-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(109,7,26,0.1); }
.care-item svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 2px; }
.care-item h4 { font-size: 17px; margin-bottom: 6px; }
.care-item p { font-size: 14px; color: var(--text-muted); }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; position: relative; z-index: 2; }
.stat-strip h3 { font-size: clamp(34px, 5vw, 50px); color: var(--gold); }
.stat-strip span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.stat-note { text-align: center; font-size: 11.5px; color: var(--text-muted); margin-top: 30px; position: relative; z-index: 2; }

/* ---------- collections page ---------- */
.filter-row { display: flex; justify-content: center; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; position: relative; z-index: 2; }
.filter-btn { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 12px 22px; border: 1px solid rgba(109,7,26,0.2); background: none; cursor: pointer; transition: all 0.3s ease; color: var(--maroon); font-family: var(--sans); }
.filter-btn.active, .filter-btn:hover { background: var(--maroon); color: var(--gold); border-color: var(--maroon); }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; }
.collection-card { background: var(--ivory); border: 1px solid rgba(109,7,26,0.1); transition: transform 0.45s ease, box-shadow 0.45s ease; position: relative; overflow: hidden; }
.collection-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px -24px rgba(109,7,26,0.24); }
.collection-card .border-draw { position: absolute; inset: 0; pointer-events: none; }
.collection-card .border-draw rect { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 1300; stroke-dashoffset: 1300; transition: stroke-dashoffset 0.7s ease; }
.collection-card:hover .border-draw rect { stroke-dashoffset: 0; }
.collection-card .icon-stage { background: var(--maroon); padding: 42px 0; text-align: center; position: relative; }
.collection-card .icon-stage .badge { position: absolute; top: 12px; left: 12px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--gold); color: var(--maroon); padding: 4px 10px; z-index: 2; }
.collection-card .icon-stage svg { width: 70px; height: 70px; margin: 0 auto; stroke: var(--gold); fill: none; }
.collection-card .body { padding: 24px 26px 28px; }
.collection-card .tag { font-family: var(--eyebrow-font); font-size: 10px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }
.collection-card h3 { font-size: 21px; margin: 8px 0 10px; }
.collection-card p.desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.feature-tags span { font-size: 11px; border: 1px solid rgba(212,175,55,0.5); color: var(--gold); padding: 5px 11px; letter-spacing: 0.04em; }
.collection-card.hidden { display: none; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; position: relative; z-index: 2; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.field input, .field textarea { width: 100%; background: none; border: none; border-bottom: 1px solid rgba(109,7,26,0.25); padding: 10px 0; font-family: var(--sans); font-size: 15px; color: var(--maroon); outline: none; transition: border-color 0.3s ease; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: none; height: 110px; }
.form-note { font-size: 12.5px; color: var(--gold); margin-top: 18px; display: none; font-weight: 500; }
.form-note.show { display: block; }
.info-card { background: var(--maroon); color: var(--ivory); padding: 44px 38px; }
.info-row { display: flex; gap: 16px; margin-bottom: 26px; }
.info-row i { color: var(--gold); font-size: 20px; margin-top: 2px; }
.info-row h5 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-family: var(--eyebrow-font); }
.info-row p { font-size: 14px; color: var(--text-on-dark); }
.hours-table { width: 100%; margin-top: 10px; font-size: 13.5px; }
.hours-table td { padding: 5px 0; color: var(--text-on-dark); }
.hours-table td:last-child { text-align: right; color: var(--ivory); }
.map-wrap { margin-top: 50px; border: 1px solid rgba(109,7,26,0.15); position: relative; z-index: 2; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; filter: sepia(0.15); }
.contact-illustration { display: flex; justify-content: center; margin-bottom: 20px; }
.contact-illustration svg { width: 90px; height: 90px; stroke: var(--gold); fill: none; }
.pin-bounce { animation: pinBounce 2.4s ease-in-out infinite; }
@keyframes pinBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 22px auto 0; }
  .hero-actions { justify-content: center; }
  .hero-illustration { margin-top: 30px; }
  .feature-grid, .testi-grid, .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 84px 0; }
  .feature-grid, .testi-grid, .collection-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
