/* ===================================================================
   Classic Bow Gift Baskets — stylesheet
   Vibe: soft pink + cream, clean, high-end boutique, feminine.
   Mobile-first.
   =================================================================== */

:root {
  /* Palette */
  --cream:        #FBF6F0;
  --cream-2:      #F6ECE3;
  --blush:        #F6DEE0;
  --blush-2:      #EFC9CD;
  --rose:         #D98C97;   /* primary accent */
  --rose-deep:    #B96b77;   /* hover / emphasis */
  --gold:         #C4A24C;   /* soft antique gold — elegant secondary accent */
  --ink:          #43383A;   /* warm charcoal text */
  --ink-soft:     #6E6062;
  --plum:         #402D31;   /* dark section base */
  --white:        #FFFFFF;
  --line:         #E7D8CF;
  --line-dark:    rgba(255,255,255,.16);

  /* Type */
  --display: "Prata", Georgia, serif;
  --body:    "Nunito Sans", "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --container: 1120px;
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(120, 80, 85, 0.45);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Guard against any accidental horizontal scroll on small screens.
   `clip` (not `hidden`) clips overflow WITHOUT creating a scroll
   container, so the sticky header keeps working. */
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration: none; }
a:hover { color: var(--ink); }

/* Accessibility: visible keyboard focus (skill priority #1) */
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 720px; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: .6rem;
}
.eyebrow.center { text-align: center; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--cream-2); }
.section-lede { max-width: 620px; margin: 0 auto 2.5rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: .04em;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  font-size: .95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-deep); color: var(--white); }
.btn-ghost { background: transparent; border-color: var(--rose); color: var(--rose-deep); }
.btn-ghost:hover { background: var(--rose); color: var(--white); }
.btn-block { display: block; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Solid, opaque background (no backdrop-filter). The frosted-glass blur left a faint
     smeared "ghost" of text at the header's bottom edge on iOS Safari; a solid fill
     removes it and cleanly hides anything scrolling underneath. */
  background: rgb(251, 246, 240);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: .65rem; line-height: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: var(--display); font-size: 1.3rem; font-weight: 400; color: var(--ink); letter-spacing: .01em; }
.brand-sub { font-family: var(--body); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--rose); margin-top: 4px; }
.brand-logo { max-height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-size: .92rem; letter-spacing: .03em; }
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta { background: var(--rose); color: var(--white) !important; padding: .55rem 1.3rem; border-radius: 999px; }
.nav-cta:hover { background: var(--rose-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 80% 0%, var(--blush) 0%, rgba(246,222,224,0) 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-inner { max-width: 560px; }
.hero h1 { margin-bottom: 1rem; }
.hero-lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 520px; margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero-note { margin-top: 1.5rem; font-size: .82rem; letter-spacing: .06em; color: var(--ink-soft); text-transform: uppercase; }
.hero-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Video hero variant (iteration 6) */
.hero-video {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0;
  background:
    radial-gradient(120% 90% at 80% 0%, var(--blush) 0%, rgba(246,222,224,0) 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-video .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(251,246,240,.72) 0%, rgba(246,236,227,.58) 100%); }
.hero-video .hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.hero-video .hero-lede { margin-left: auto; margin-right: auto; }
.hero-video .hero-actions { justify-content: center; }
@media (prefers-reduced-motion: reduce) { .hero-video .hero-bg { display: none; } }

/* ---------- Occasions ---------- */
.occasion-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.occasion-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.occasion-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--rose); }
.occasion-card.is-clickable { cursor: pointer; }
.occasion-card.is-clickable:hover h3 { color: var(--rose-deep); }
.occasion-card.is-clickable::after {
  content: 'View collection →';
  display: block; margin-top: .9rem;
  font-family: var(--body); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--rose-deep); opacity: 0; transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.occasion-card.is-clickable:hover::after,
.occasion-card.is-clickable:focus-visible::after { opacity: 1; transform: translateY(0); }
.occasion-icon { display: block; margin-bottom: .9rem; color: var(--rose); }
.occasion-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.occasion-card:hover .occasion-icon { color: var(--rose-deep); }
.occasion-card h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.occasion-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Marquee strip (from iteration 2, adapted) ---------- */
.marquee {
  overflow: hidden; background: var(--cream-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 1.5rem; white-space: nowrap; width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee-track span { font-family: var(--display); font-size: 1.4rem; color: var(--rose); }
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Top strip scrolls the opposite way so the two banners frame the hero. */
.marquee-reverse .marquee-track { animation-direction: reverse; }
.marquee-top { border-top: 0; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Dark "How It Works" section (from iteration 2) ---------- */
.section-dark { background: var(--plum); color: var(--cream); }
.section-dark .eyebrow { color: var(--blush-2); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.steps {
  list-style: none; margin: 2.5rem 0 0; padding: 0;
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step { padding-top: 1.5rem; border-top: 1px solid var(--line-dark); text-align: left; }
.step-num {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 2.6rem; line-height: 1; color: var(--rose); margin-bottom: .5rem;
}
.step p { color: rgba(251,246,240,.72); font-size: .95rem; margin: 0; }

/* ---------- Pricing ---------- */
.tier-grid {
  display: grid; gap: 1.5rem; margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.tier-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
}
.tier-featured {
  border-color: var(--rose);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 999px;
}
.tier-price { font-size: 1.05rem; color: var(--ink-soft); margin: .2rem 0 1rem; }
.tier-price strong { font-family: var(--display); font-size: 1.8rem; color: var(--ink); font-weight: 400; }
.tier-desc { font-size: .92rem; color: var(--ink-soft); margin: 0; }

.addons { margin-top: 3rem; text-align: center; }
.addons-title { font-size: 1.2rem; margin-bottom: 1.2rem; }
.addon-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
}
.addon-list li {
  background: var(--blush);
  color: var(--ink);
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .88rem;
}
.addon-note { color: var(--rose-deep); font-size: .78rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 1rem; margin-bottom: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.gallery-item {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- About ---------- */
.about-grid {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr 1fr;
}
.about-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-copy p { color: var(--ink-soft); }
.about-copy .btn { margin-top: .8rem; }

/* ---------- Request form ---------- */
.section-request {
  background:
    radial-gradient(120% 80% at 10% 0%, var(--blush) 0%, rgba(246,222,224,0) 55%),
    var(--cream-2);
}
.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
.field label { display: block; font-size: .85rem; letter-spacing: .04em; margin-bottom: .4rem; color: var(--ink); }
.field .opt, .field .addon-note { color: var(--ink-soft); font-size: .78rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body); font-size: .95rem; color: var(--ink);
  padding: .75rem .9rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 140, 151, 0.18);
}
.field textarea { resize: vertical; }
.form-fineprint { font-size: .8rem; color: var(--ink-soft); text-align: center; margin: 1rem 0 0; }
.field-hint { font-size: .76rem; color: var(--ink-soft); margin: .4rem 0 0; }
.field-hint #earliestDate { color: var(--rose-deep); font-weight: 500; }
.form-status { text-align: center; margin: .8rem 0 0; font-size: .9rem; min-height: 1.2em; }
/* Success / error: bold, larger, in a clear coloured box so the confirmation is obvious. */
.form-status.ok, .form-status.err {
  font-weight: 700; font-size: 1.08rem; line-height: 1.55;
  margin-top: 1.3rem; padding: 1.1rem 1.3rem; border-radius: 12px;
}
.form-status.ok  { color: #2f5c37; background: #eaf4ea; border: 1px solid #c4dec6; }
.form-status.err { color: #a53f3a; background: #fbeceb; border: 1px solid #f0cfcd; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 3.5rem 0 1.5rem; }
.footer-inner {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.6fr 1fr 1.3fr;
}
.site-footer .brand-mark { color: var(--white); }
.site-footer .brand-sub { color: var(--blush-2); }
.footer-tag { color: rgba(251,246,240,.7); font-size: .9rem; margin-top: .8rem; max-width: 260px; }
.footer-col h4 { color: var(--white); font-family: var(--body); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(251,246,240,.8); font-size: .92rem; margin-bottom: .6rem; }
.footer-col a:hover { color: var(--blush-2); }
.footer-area { color: rgba(251,246,240,.6); font-size: .85rem; margin-top: .4rem; }
.footer-copy { text-align: center; color: rgba(251,246,240,.5); font-size: .8rem; margin: 2.5rem 0 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream);
    /* Closed state: NO vertical padding or border, so the collapsed menu is truly 0px
       tall and nothing (e.g. the top of "Occasions") pokes out below the header. */
    padding: 0 1.5rem;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open {
    max-height: 420px;
    padding: .5rem 1.5rem 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .8rem 0; width: 100%; }
  .nav-cta { display: inline-block; margin-top: .5rem; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-inner { max-width: none; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { max-width: 440px; margin: 0 auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ===================================================================
   Logo, Collections catalog & lightbox (iteration 9)
   =================================================================== */

/* Logo */
.brand-logo { height: 54px; width: auto; display: block; border-radius: 8px; }
.footer-logo { height: 88px; width: auto; display: block; border-radius: 12px; margin-bottom: .3rem; }

/* Filter chips */
.catalog-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin: 0 0 2.2rem; }
.filter-chip {
  font-family: var(--body); font-size: .86rem; letter-spacing: .02em;
  padding: .5rem 1.15rem; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-chip:hover { border-color: var(--rose); color: var(--rose-deep); }
.filter-chip.active { background: var(--rose); border-color: var(--rose); color: var(--white); }

/* Catalog grid */
.catalog-grid { display: grid; gap: 1.5rem 1rem; margin-bottom: 2.5rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.catalog-item { margin: 0; cursor: pointer; }
.catalog-thumb {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream-2);
}
.catalog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.catalog-item:hover .catalog-thumb img { transform: scale(1.06); }
.catalog-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(67,56,58,0); transition: background .25s ease; }
.catalog-item:hover .catalog-thumb::after { background: rgba(67,56,58,.08); }
.catalog-label { text-align: center; margin-top: .6rem; font-family: var(--body); font-size: .82rem; line-height: 1.3; letter-spacing: .01em; }
.catalog-label .cl-occ { color: var(--ink); }
.catalog-label .cl-type { color: var(--rose-deep); font-weight: 500; }
.catalog-empty { text-align: center; color: var(--ink-soft); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(50,39,42,.86); backdrop-filter: blur(4px); padding: 2rem 1rem; overflow-y: auto;
}
.lightbox[hidden] { display: none; }
/* Image + caption are one centered block; caption always sits directly below the photo. */
.lightbox-figure { margin: auto; max-width: min(90vw, 720px); display: flex; flex-direction: column; align-items: center; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 72vh; border-radius: 8px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); }
.lightbox-caption { margin-top: 1rem; color: var(--cream); display: flex; flex-direction: column; align-items: center; gap: .3rem; text-align: center; }
.lightbox-caption .lc-title { font-family: var(--display); font-size: 1.35rem; color: #fff; }
.lightbox-caption .lc-desc { font-family: var(--body); font-size: .9rem; color: rgba(251,246,240,.85); }
.lightbox-caption .lc-versa { font-family: var(--body); font-size: .8rem; color: var(--blush-2); }
.lightbox-caption .lc-note { font-family: var(--body); font-size: .8rem; font-style: italic; color: rgba(251,246,240,.7); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .lightbox-prev { left: .4rem; } .lightbox-next { right: .4rem; }
  .lightbox-close { top: .6rem; right: .6rem; }
  .footer-logo { height: 76px; }
}

/* ---------- 5-tier pricing grid ---------- */
.tier-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.tier-grid-5 .tier-card { padding: 2rem 1.3rem; }
.tier-grid-5 .tier-price strong { font-size: 1.6rem; }
@media (max-width: 1080px) { .tier-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
@media (max-width: 760px)  { .tier-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .tier-grid-5 { grid-template-columns: 1fr; } }

/* ---------- Prices on catalog cards + lightbox ---------- */
.catalog-label .cl-name { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--ink); margin-top: .25rem; }
.catalog-label .cl-price { display: block; font-family: var(--display); font-size: 1rem; color: var(--rose-deep); margin-top: .2rem; }
.lightbox-caption .lc-sub { font-family: var(--body); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blush-2); }
.catalog-label .cl-price-tba { font-family: var(--body); font-size: .8rem; color: var(--ink-soft); }
.catalog-label .cl-desc-sm { display: block; font-family: var(--body); font-size: .8rem; color: var(--ink-soft); margin-top: .2rem; }
.lightbox-caption .lc-price { font-family: var(--display); font-size: 1.15rem; color: var(--blush-2); }

/* ---------- Dedicated category page ---------- */
#home[hidden], .category-page[hidden] { display: none !important; }
.category-page { padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(3.5rem, 8vw, 6rem); background: var(--cream); min-height: 62vh; }
.category-page .cat-back { display: inline-block; color: var(--rose-deep); font-family: var(--body); font-size: .9rem; letter-spacing: .03em; margin-bottom: 1.4rem; }
.category-page .cat-back:hover { color: var(--ink); }
.category-page h1 { font-size: clamp(2rem, 5vw, 3rem); }
.cat-cta-wrap { margin-top: 2.8rem; }
