/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #060a13;
  --bg-2:       #0a0f1c;
  --bg-3:       #121a2c;
  --bg-4:       #1a2338;
  --white:      #f5f6f4;
  --white-soft: #dde1e8;
  --mute:       #8a91a3;
  --line:       rgba(245,246,244,.12);
  --line-soft:  rgba(245,246,244,.07);
  --accent:     #6f93d1;
  --accent-2:   #33507f;
  --accent-dim: rgba(111,147,209,.16);
  --silver:     #c7ccd6;
  --wa:         #25D366;
  --wa-dark:    #1da851;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg);
  color: var(--white-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; color: var(--white); }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--white); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.4rem; }
@media (min-width: 720px)  { .container { padding-inline: 2.4rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section { position: relative; padding-block: clamp(4rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-style: italic; margin-top: .6rem; }
.section-head p { color: var(--mute); font-size: 1.05rem; margin-top: 1rem; max-width: 52ch; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }

.halo {
  position: absolute; inset: -40% -10% -40% -10%;
  background: radial-gradient(45% 40% at 50% 40%, var(--accent-dim), transparent 72%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .45s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--white);
  color: var(--bg);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(245,246,244,.35); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--white-soft);
  background: rgba(245,246,244,.03);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--white); transform: translateY(-2px); }

.btn-wa {
  background: var(--wa);
  color: #06210f;
}
.btn-wa:hover { background: #2fe374; transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(37,211,102,.5); }
.btn-wa svg { width: 1.1em; height: 1.1em; }

.btn-sm { padding: .7rem 1.3rem; font-size: .82rem; }
.btn-block { width: 100%; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(6,10,19,.92), rgba(6,10,19,.7) 80%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.nav.is-solid {
  background: rgba(6,10,19,.88);
  border-bottom-color: var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: none;
  align-items: center; gap: 2.4rem;
}
.nav-links a {
  font-size: .88rem; letter-spacing: .02em; color: var(--white-soft);
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent);
  transition: right .4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn { display: none; }

.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0; flex-shrink: 0;
}
.nav-burger span { display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s; }
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 16px; align-self: flex-end; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; align-self: center; opacity: 1; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 490;
  background: rgba(6,9,16,.98);
  backdrop-filter: blur(14px);
  padding: 2.4rem 1.6rem;
  display: flex; flex-direction: column; gap: 1.9rem;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; font-style: italic; color: var(--white); }
.mobile-menu .btn { margin-top: .6rem; align-self: flex-start; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-actions .btn { display: inline-flex; }
  .nav-burger, .mobile-menu { display: none; }
}

/* =============================================================
   6. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 600;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.5);
  animation: waPulse 2.8s ease-out infinite;
  transition: transform .3s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #06210f; }
@keyframes waPulse {
  0%   { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }
@media (min-width: 720px) { .wa-float { right: 2.2rem; bottom: 2.2rem; width: 64px; height: 64px; } .wa-float svg { width: 30px; height: 30px; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,19,.55) 0%, rgba(6,10,19,.35) 35%, rgba(6,10,19,.85) 82%, var(--bg) 100%),
    linear-gradient(90deg, rgba(6,10,19,.75) 0%, transparent 45%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: clamp(3rem, 8vw, 6rem);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 1.4rem;
}
.hero-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px 2px var(--accent); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  max-width: 16ch;
  color: var(--white);
}
.hero-title em { font-style: italic; color: var(--silver); }
.hero-sub {
  margin-top: 1.4rem; max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--white-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-scroll {
  position: absolute; right: clamp(1.4rem, 4vw, 3rem); bottom: clamp(1.4rem, 4vw, 3rem);
  z-index: 2; display: none; align-items: center; gap: .7rem;
  color: var(--silver); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--silver), transparent); }
@media (min-width: 960px) { .hero-scroll { display: flex; flex-direction: column; } }

/* =============================================================
   8. Marquee
   ============================================================= */
.marquee-wrap {
  border-block: 1px solid var(--line-soft);
  padding-block: 1.4rem;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; width: max-content; gap: 3rem;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--mute); white-space: nowrap; display: flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: .8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 70s; } }

/* =============================================================
   9. Bento / category tiles
   ============================================================= */
.tiles {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
@media (min-width: 720px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
  border: 1px solid var(--line-soft);
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease-out);
  filter: saturate(1.05);
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,19,.05) 0%, rgba(6,10,19,.55) 55%, rgba(6,10,19,.92) 100%);
}
.tile-content { position: absolute; inset: auto 0 0 0; padding: 1.6rem; z-index: 2; }
.tile-content .eyebrow { color: var(--silver); font-size: .72rem; }
.tile-content .eyebrow::before { background: var(--silver); }
.tile-content h3 { font-size: 1.5rem; font-style: italic; margin-top: .5rem; color: var(--white); }
.tile-content p { font-size: .86rem; color: var(--white-soft); margin-top: .5rem; max-width: 30ch; }
.tile:hover img { transform: scale(1.08); }
.tile-link { position: absolute; inset: 0; z-index: 3; }

/* =============================================================
   10. Product cards
   ============================================================= */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease-out), box-shadow .5s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111,147,209,.4);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.product-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: rgba(6,10,19,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--silver);
}
.product-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.product-brand { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.product-name { font-size: 1.5rem; font-style: italic; }
.product-family { font-size: .82rem; color: var(--mute); margin-top: -.4rem; }
.product-blurb { font-size: .9rem; color: var(--white-soft); line-height: 1.55; }
.product-notes { display: flex; flex-direction: column; gap: .5rem; margin-top: .2rem; padding-top: .9rem; border-top: 1px solid var(--line-soft); }
.note-row { display: flex; gap: .6rem; font-size: .82rem; }
.note-row .note-label { color: var(--silver); font-weight: 600; flex-shrink: 0; width: 4.4rem; }
.note-row .note-vals { color: var(--mute); }
.product-body .btn { margin-top: .6rem; }

/* =============================================================
   11. Category tabs (catalog)
   ============================================================= */
.cat-nav {
  position: sticky; top: var(--nav-h); z-index: 40;
  display: flex; gap: .7rem; flex-wrap: wrap;
  padding-block: 1rem;
  background: linear-gradient(180deg, var(--bg) 70%, transparent);
  margin-bottom: 1rem;
}
.cat-pill {
  padding: .6rem 1.3rem; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: .84rem; color: var(--white-soft);
  transition: all .3s var(--ease-out);
}
.cat-pill:hover { border-color: var(--accent); color: var(--white); }
.cat-pill.is-active { background: var(--white); color: var(--bg); border-color: var(--white); }

.cat-section { scroll-margin-top: calc(var(--nav-h) + 90px); padding-block: 2.6rem 1rem; }
.cat-section h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-style: italic; }
.cat-section .cat-intro { color: var(--mute); max-width: 56ch; margin-top: .6rem; font-size: .96rem; }

/* Empty / teaser card (Para Ele) */
.teaser-card {
  border: 1px dashed var(--line);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  background: var(--bg-3);
}
.teaser-card h4 { font-size: 1.6rem; font-style: italic; margin-bottom: .8rem; }
.teaser-card p { color: var(--mute); max-width: 52ch; margin-inline: auto; }
.teaser-brands { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-block: 1.6rem; }
.teaser-brands span {
  font-size: .78rem; padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--silver);
}

/* =============================================================
   12. Brands wall
   ============================================================= */
.brands-wall {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 640px)  { .brands-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px)  { .brands-wall { grid-template-columns: repeat(4, 1fr); } }
.brand-cell {
  background: var(--bg-2);
  padding: 1.8rem 1.4rem;
  display: flex; flex-direction: column; gap: .5rem; justify-content: center;
  min-height: 132px;
  transition: background .4s var(--ease-out);
}
.brand-cell:hover { background: var(--bg-3); }
.brand-cell .brand-name { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--white); }
.brand-cell .brand-note { font-size: .76rem; color: var(--mute); line-height: 1.5; }

/* =============================================================
   13. Gift kits section
   ============================================================= */
.kits-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: center; }
@media (min-width: 900px) { .kits-grid { grid-template-columns: 1.1fr 1fr; gap: 3.6rem; } }
.kits-media { display: grid; grid-template-columns: 1.2fr 1fr; gap: .9rem; }
.kits-media img { border-radius: 16px; object-fit: cover; width: 100%; height: 100%; aspect-ratio: 3/4; }
.kits-media .kits-img-b { margin-top: 2.4rem; aspect-ratio: 1/1; }
.kits-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-style: italic; }
.kits-text p { color: var(--white-soft); margin-top: 1.1rem; max-width: 50ch; }
.kits-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .9rem; }
.kits-list li { display: flex; gap: .8rem; font-size: .94rem; color: var(--white-soft); }
.kits-list li::before { content: "✦"; color: var(--accent); flex-shrink: 0; }
.kits-text .btn { margin-top: 1.8rem; }

/* =============================================================
   14. About / story
   ============================================================= */
.about-hero {
  display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: center;
}
@media (min-width: 900px) { .about-hero { grid-template-columns: .95fr 1.15fr; gap: 4rem; } }
.about-portrait { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.about-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,10,19,.45), transparent 40%);
}
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-style: italic; }
.about-copy p { color: var(--white-soft); margin-top: 1.2rem; max-width: 54ch; }
.about-copy p + p { margin-top: 1rem; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.stat-item { border-top: 1px solid var(--line); padding-top: 1rem; }
.stat-item .stat-num { font-family: var(--serif); font-style: italic; font-size: 2.1rem; color: var(--white); }
.stat-item .stat-label { font-size: .78rem; color: var(--mute); letter-spacing: .04em; margin-top: .3rem; }

.pillars { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 1rem; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.pillar .pillar-num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1.1rem; }
.pillar h4 { font-size: 1.2rem; margin-top: .6rem; }
.pillar p { font-size: .88rem; color: var(--mute); margin-top: .5rem; }

.quote-block {
  border-left: 2px solid var(--accent);
  padding-left: 1.6rem;
  margin-top: 2.6rem;
}
.quote-block p { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--white); line-height: 1.4; }
.quote-block cite { display: block; margin-top: .8rem; font-style: normal; font-size: .82rem; color: var(--mute); }

.gallery-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 720px) { .gallery-strip { grid-template-columns: repeat(4,1fr); } }
.gallery-strip img { border-radius: 14px; aspect-ratio: 3/4; object-fit: cover; }

/* =============================================================
   15. Contact
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.1fr .9fr; gap: 2.2rem; } }

.contact-card {
  background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.contact-hero-card {
  background: linear-gradient(150deg, var(--bg-4), var(--bg-3));
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.6rem;
  min-height: 320px;
}
.contact-hero-card h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-style: italic; }
.contact-hero-card p { color: var(--white-soft); max-width: 42ch; }

.info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  background: var(--bg-4); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.info-item h4 { font-size: 1rem; color: var(--white); font-family: var(--sans); font-weight: 600; }
.info-item p, .info-item a { font-size: .9rem; color: var(--mute); margin-top: .25rem; display: block; }
.info-item a:hover { color: var(--accent); }

.payment-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
@media (min-width: 560px) { .payment-grid { grid-template-columns: repeat(3, 1fr); } }
.payment-item {
  border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem;
  background: var(--bg-2);
}
.payment-item h4 { font-size: .96rem; color: var(--white); font-family: var(--sans); font-weight: 600; }
.payment-item p { font-size: .82rem; color: var(--mute); margin-top: .5rem; }

.delivery-banner {
  display: flex; align-items: center; gap: 1.2rem;
  border: 1px solid rgba(111,147,209,.3);
  background: var(--accent-dim);
  border-radius: 16px; padding: 1.4rem 1.6rem;
  margin-top: 1.6rem;
}
.delivery-banner svg { width: 30px; height: 30px; stroke: var(--accent); flex-shrink: 0; }
.delivery-banner p { font-size: .9rem; color: var(--white-soft); }
.delivery-banner strong { color: var(--white); }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding-block: 3.4rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; } }
.footer-brand img { height: 30px; margin-bottom: 1rem; }
.footer-brand p { font-size: .86rem; color: var(--mute); max-width: 32ch; }
.footer-col h5 { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { font-size: .9rem; color: var(--mute); transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: .8rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom p { font-size: .76rem; color: var(--mute); }

/* =============================================================
   17. Reveal / scroll effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .22s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .34s; }

/* =============================================================
   18. Page hero (interior pages)
   ============================================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-style: italic; max-width: 18ch; }
.page-hero p { color: var(--mute); max-width: 56ch; margin-top: 1.2rem; font-size: 1.05rem; }

/* =============================================================
   19. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 2.6s forwards;
}
.splash img { height: 46px; opacity: 0; animation: splashFade .8s .1s forwards; }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .5s var(--ease-out); }
@keyframes splashFade { to { opacity: 1; } }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
@media (prefers-reduced-motion: reduce) { .splash { display: none; } }

/* =============================================================
   20. Responsive helpers
   ============================================================= */
@media (min-width: 540px)  { }
@media (min-width: 720px)  { }
@media (min-width: 960px)  { }
@media (min-width: 1280px) { }

/* =============================================================
   21. Reduced-motion (only intrusive)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 90s; }
  .wa-float { animation: none; }
}
