/* =============================================================
   Beauty & Splendor Blooms — handcrafted florals, El Paso TX
   Palette drawn from the brand: mauve stripes, wine, blush, cream
   ============================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  /* brand colour */
  --wine:      #6b2233;
  --wine-deep: #4a1526;
  --plum:      #7c2c40;
  --rose:      #a85c6b;
  --mauve:     #9c5a68;
  --blush:     #f3dae0;
  --blush-soft:#faf0f2;
  --cream:     #f9f2e8;
  --ivory:     #fffaf3;
  --gold:      #c6a15b;
  --ink:       #35232a;
  --muted:     #856a72;
  --line:      rgba(107,34,51,0.14);

  /* type */
  --serif:  'Playfair Display', Georgia, serif;
  --script: 'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', 'Segoe UI', sans-serif;
  --hand:         'Caveat', 'Segoe Script', cursive;   /* Sophia's handwriting */
  --hand-display: 'Amatic SC', 'Caveat', cursive;       /* tall hand-drawn caps */

  --ease: cubic-bezier(0.5, 0.08, 0.1, 1);
  --maxw: 1200px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section { position: relative; padding: clamp(5rem, 11vw, 9rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--mauve);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.7; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
.h-section { font-size: clamp(2.1rem, 5.2vw, 3.7rem); color: var(--wine); margin: 1rem 0; }
.lead { font-family: var(--script); font-size: clamp(1.2rem, 2.4vw, 1.55rem); color: var(--muted); font-weight: 500; }

.italic { font-style: italic; }
.accent { color: var(--rose); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--wine); color: var(--ivory); box-shadow: 0 12px 30px -12px rgba(74,21,38,0.6); }
.btn--primary:hover { background: var(--wine-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--wine); background: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: var(--wine); color: var(--ivory); border-color: var(--wine); transform: translateY(-2px); }
.btn--light { background: var(--ivory); color: var(--wine); }
.btn--light:hover { background: var(--blush); transform: translateY(-2px); }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* =============================================================
   Loader
   ============================================================= */
#loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--cream);
  transition: opacity .8s ease, visibility .8s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
#loader .mark { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; box-shadow: 0 14px 40px -18px rgba(74,21,38,0.5); }
#loader .name { margin-top: 1.3rem; font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); }
#loader .bar { margin-top: 1.3rem; width: 130px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
#loader .bar span { display: block; height: 100%; width: 40%; background: var(--rose); border-radius: 2px; animation: load 1.1s var(--ease) infinite; }
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }

/* =============================================================
   Fixed background layers
   ============================================================= */
#scroll-video-container { position: fixed; inset: 0; z-index: 0; background: var(--wine-deep); }
#scroll-video-container canvas,
#scroll-video-container video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
#petals-canvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }

/* =============================================================
   Navigation
   ============================================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem clamp(1.25rem, 4vw, 2.75rem);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
nav.scrolled { background: rgba(249,242,232,0.92); backdrop-filter: blur(12px); padding-top: 0.85rem; padding-bottom: 0.85rem; box-shadow: 0 1px 0 var(--line); }
nav .brand { display: flex; align-items: center; gap: 0.7rem; z-index: 2; }
nav .brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
nav .brand .txt { font-family: var(--serif); font-size: 1.02rem; line-height: 1; color: #fff; transition: color .5s var(--ease); }
nav .brand .txt small { display: block; font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.8; margin-top: 3px; }
nav.scrolled .brand .txt { color: var(--wine); }

nav .links { display: flex; align-items: center; gap: 2rem; }
nav .links a { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9); position: relative; transition: color .4s var(--ease); }
nav .links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: currentColor; transition: width .4s var(--ease); }
nav .links a:hover::after { width: 100%; }
nav.scrolled .links a { color: var(--ink); }

nav .actions { display: flex; align-items: center; gap: 1rem; }
nav .ig { display: inline-flex; color: #fff; transition: color .4s var(--ease), transform .4s var(--ease); }
nav .ig:hover { transform: translateY(-2px); }
nav.scrolled .ig { color: var(--wine); }
nav .ig svg { width: 21px; height: 21px; }
nav .nav-cta { padding: 0.7rem 1.4rem; font-size: 0.72rem; }
nav .burger { display: none; }

/* mobile menu */
#menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--wine); color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
#menu.open { opacity: 1; visibility: visible; transform: none; }
#menu a { font-family: var(--serif); font-size: 1.9rem; }
#menu .m-ig { margin-top: 1rem; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
#menu .close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; line-height: 1; }

/* =============================================================
   Content
   ============================================================= */
#content { position: relative; z-index: 2; }

/* ---------- Hero ---------- */
#hero { position: relative; height: 200vh; }
#hero .hero-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 0 1.5rem;
  background: linear-gradient(to bottom, rgba(42,15,24,0.42) 0%, rgba(42,15,24,0.30) 40%, rgba(42,15,24,0.62) 100%);
}
#hero .hero-inner { position: relative; z-index: 2; max-width: 60rem; color: #fff; will-change: transform, opacity; }
#hero .hero-eyebrow { color: rgba(255,255,255,0.85); justify-content: center; }
#hero .hero-eyebrow::before, #hero .hero-eyebrow::after { background: rgba(255,255,255,0.7); }
#hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 500; margin: 1.4rem 0; text-shadow: 0 4px 40px rgba(42,15,24,0.4); }
#hero h1 em { font-style: italic; color: var(--blush); }
#hero .hero-sub { font-family: var(--script); font-size: clamp(1.15rem, 2.6vw, 1.6rem); max-width: 40rem; margin: 0 auto; color: rgba(255,255,255,0.92); font-weight: 500; }
#hero .hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
#hero .scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.75); }
#hero .scroll-cue span { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; }
#hero .scroll-cue svg { width: 20px; height: 20px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Verse strip ---------- */
.verse { background: var(--wine); color: var(--blush); text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden; }
.verse .quote { font-family: var(--script); font-style: italic; font-size: clamp(1.5rem, 3.6vw, 2.5rem); font-weight: 500; line-height: 1.35; max-width: 46rem; margin: 0 auto; color: var(--ivory); }
.verse .ref { display: inline-block; margin-top: 1.3rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.verse .petal-mark { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }

/* ---------- About ---------- */
.about { background: var(--blush-soft); }
.about .grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about .photo { position: relative; }
.about .photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 220px 220px 14px 14px; box-shadow: 0 40px 80px -40px rgba(74,21,38,0.45); }
.about .photo .badge {
  position: absolute; bottom: -22px; right: -14px; width: 118px; height: 118px; border-radius: 50%;
  background: var(--ivory); box-shadow: 0 20px 40px -18px rgba(74,21,38,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 2px;
  font-family: var(--serif); color: var(--wine);
}
.about .photo .badge b { font-size: 1.5rem; line-height: 1; }
.about .photo .badge small { font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.about .copy p { color: var(--ink); font-size: 1.02rem; margin-top: 1.1rem; max-width: 34rem; }
.about .copy p.big { font-family: var(--script); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--wine); font-weight: 500; line-height: 1.4; }
.about .sign { margin-top: 1.6rem; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--rose); }

/* ---------- Collections ---------- */
.collections { background: var(--cream); }
.collections .head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); display: flex; flex-direction: column; align-items: center; }
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.coll-card {
  position: relative; border-radius: 18px; overflow: hidden; min-height: 420px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  box-shadow: 0 30px 60px -34px rgba(74,21,38,0.45);
}
.coll-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.coll-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(42,15,24,0.82), rgba(42,15,24,0.12) 55%, rgba(42,15,24,0.05)); }
.coll-card:hover img { transform: scale(1.06); }
.coll-card .cc-body { padding: 2rem; width: 100%; }
.coll-card .cc-num { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.24em; color: var(--blush); }
.coll-card h3 { font-size: 1.7rem; margin: 0.4rem 0 0.5rem; }
.coll-card p { font-size: 0.92rem; color: rgba(255,255,255,0.85); max-width: 26rem; }
.coll-card .cc-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.coll-card .cc-link .arrow { transition: transform .35s var(--ease); }
.coll-card:hover .cc-link .arrow { transform: translateX(4px); }

/* ---------- Gallery ---------- */
.gallery { background: var(--blush-soft); }
.gallery .head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.g-grid { columns: 3; column-gap: 1.1rem; }
.g-grid figure { break-inside: avoid; margin: 0 0 1.1rem; position: relative; border-radius: 14px; overflow: hidden; cursor: zoom-in; box-shadow: 0 24px 50px -34px rgba(74,21,38,0.4); }
.g-grid img { width: 100%; transition: transform 1s var(--ease); }
.g-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,15,24,0.35), transparent 60%); opacity: 0; transition: opacity .5s var(--ease); }
.g-grid figure:hover img { transform: scale(1.05); }
.g-grid figure:hover::after { opacity: 1; }
.g-grid figcaption { position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; color: #fff; font-family: var(--script); font-style: italic; font-size: 1.05rem; opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.g-grid figure:hover figcaption { opacity: 1; transform: none; }

/* Lightbox */
#lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(30,10,16,0.92); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s; }
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6); transform: scale(0.96); transition: transform .4s var(--ease); }
#lightbox.open img { transform: scale(1); }
#lightbox .lb-close { position: absolute; top: 1.6rem; right: 1.8rem; color: #fff; font-size: 2.2rem; line-height: 1; }
#lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.6rem; padding: 1rem; opacity: 0.7; transition: opacity .3s; }
#lightbox .lb-nav:hover { opacity: 1; }
#lightbox .lb-prev { left: 0.5rem; } #lightbox .lb-next { right: 0.5rem; }

/* ---------- Care (wine) ---------- */
.care { background: var(--wine); color: var(--blush); position: relative; }
.care .scallop { position: absolute; top: -1px; left: 0; width: 100%; height: 34px; color: var(--blush-soft); }
.care .head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
/* Hand-lettered to feel like Sophia's own care-tips poster */
.care .head .eyebrow { font-family: var(--hand); font-weight: 600; font-size: 1.35rem; letter-spacing: 0; text-transform: none; color: var(--gold); }
.care .head .eyebrow::before, .care .head .eyebrow.center::after { background: var(--gold); width: 34px; }
.care .head .care-title { display: flex; flex-direction: column; align-items: center; color: var(--ivory); margin: 0.4rem 0 0.6rem; line-height: 0.9; }
.care .head .care-title .fl { font-family: var(--hand-display); font-weight: 700; text-transform: uppercase; font-size: clamp(3.6rem, 12vw, 7.5rem); letter-spacing: 0.1em; line-height: 0.9; }
.care .head .care-title .ct { font-family: var(--hand); font-weight: 700; font-size: clamp(2.1rem, 6.5vw, 3.6rem); color: var(--blush); margin-top: -0.35em; transform: rotate(-2deg); }
.care .head p { color: rgba(243,218,224,0.9); font-family: var(--hand); font-weight: 500; font-size: clamp(1.4rem, 3vw, 1.95rem); }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 2.8rem); }
.care-item { text-align: center; padding: 1rem; }
.care-item .ic { width: 58px; height: 58px; margin: 0 auto 1rem; color: var(--blush); }
.care-item .ic svg { width: 100%; height: 100%; }
.care-item .step { font-family: var(--hand); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em; text-transform: none; color: var(--gold); }
.care-item h4 { font-family: var(--hand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.6rem; line-height: 1; color: var(--ivory); margin: 0.25rem 0 0.45rem; }
.care-item p { font-family: var(--hand); font-weight: 500; font-size: 1.3rem; line-height: 1.3; color: rgba(243,218,224,0.94); max-width: 21rem; margin: 0 auto; }

/* ---------- Process ---------- */
.process { background: var(--cream); }
.process .grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.process .intro .lead { margin-top: 1rem; }
.process .intro .btn { margin-top: 1.8rem; }
.steps { display: flex; flex-direction: column; gap: 0.4rem; }
.step-row { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.step-row:last-child { border-bottom: none; }
.step-row .n { font-family: var(--serif); font-size: 1.8rem; color: var(--rose); line-height: 1; width: 2.6rem; }
.step-row h4 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; color: var(--wine); }
.step-row p { font-size: 0.95rem; color: var(--muted); margin-top: 0.3rem; }

/* ---------- Kind words ---------- */
.words { background: var(--blush-soft); }
.words .head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.words-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.2rem); max-width: 64rem; margin: 0 auto; }
.quote-card { background: var(--ivory); border-radius: 18px; padding: clamp(2rem, 4vw, 3rem); box-shadow: 0 30px 60px -40px rgba(74,21,38,0.4); display: flex; flex-direction: column; align-items: center; text-align: center; }
.quote-card .stars { color: var(--gold); letter-spacing: 0.25em; font-size: 1rem; margin-bottom: 1.3rem; }
.quote-card blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--wine); line-height: 1.4; margin-bottom: 1.5rem; flex: 1; display: flex; align-items: center; }
.quote-card .heart { color: var(--rose); font-style: normal; }
.quote-card .cite { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.quote-card .cite a { color: var(--rose); }

/* ---------- Final CTA ---------- */
.final { position: relative; text-align: center; color: #fff; overflow: hidden; padding: clamp(6rem, 12vw, 10rem) 0; }
.final::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--wine), var(--plum) 55%, var(--rose)); z-index: -2; }
.final::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 45%); z-index: -1; }
.final h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); color: #fff; }
.final h2 em { font-style: italic; color: var(--blush); }
.final p { font-family: var(--script); font-size: clamp(1.2rem, 2.6vw, 1.6rem); max-width: 36rem; margin: 1.1rem auto 2rem; color: rgba(255,255,255,0.9); }
.final .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--wine-deep); color: rgba(243,218,224,0.75); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(243,218,224,0.14); }
footer .brand-col img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
footer .brand-col h3 { font-family: var(--serif); color: var(--ivory); font-size: 1.4rem; }
footer .brand-col p { font-family: var(--script); font-style: italic; font-size: 1.05rem; margin-top: 0.7rem; max-width: 22rem; }
footer .brand-col .ref { display: block; margin-top: 0.6rem; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
footer .col h5 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory); margin-bottom: 1.1rem; }
footer .col a, footer .col span { display: block; font-size: 0.94rem; margin-bottom: 0.6rem; transition: color .3s var(--ease); }
footer .col a:hover { color: var(--ivory); }
footer .bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.8rem; font-size: 0.78rem; flex-wrap: wrap; }
footer .bottom .ig { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--blush); }
footer .bottom .ig svg { width: 18px; height: 18px; }
footer .credit { text-align: center; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(243,218,224,0.1); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(243,218,224,0.45); }
footer .credit span { color: rgba(243,218,224,0.75); }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 900px) {
  .about .grid, .process .grid { grid-template-columns: 1fr; }
  .about .photo { max-width: 420px; margin: 0 auto; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .g-grid { columns: 2; }
  footer .top { grid-template-columns: 1fr 1fr; }
  footer .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .container { padding: 0 1.3rem; }
  nav .links { display: none; }
  nav .nav-cta { display: none; }
  nav .burger { display: inline-flex; }
  nav .actions .ig { display: none; }
  .care-grid { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: 1fr; }
  .words-grid { grid-template-columns: 1fr; }
  .g-grid { columns: 1; }
  .step-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .step-row .n { font-size: 1.4rem; }
  #hero { height: 160vh; }
  footer .top { grid-template-columns: 1fr; }
  footer .bottom { justify-content: center; text-align: center; }
}

/* burger icon */
nav .burger { flex-direction: column; gap: 5px; padding: 6px; }
nav .burger span { width: 24px; height: 2px; background: #fff; display: block; transition: background .4s var(--ease); }
nav.scrolled .burger span { background: var(--wine); }
