/* =========================================
   FUNKY ATELIER BY CLAU — Stylesheet
   ========================================= */

/* --- Variables --- */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --brown: #6B4C3B;
  --brown-deep: #3D2318;
  --brown-light: #9C7560;
  --gold: #C9A15A;
  --gold-light: #E8CC8A;
  --teal: #4AADA8;
  --coral: #D4856A;
  --blush: #F0D9D0;
  --text: #3D2318;
  --text-muted: #8C6E5A;
  --white: #FFFFFF;
  --shadow: rgba(61, 35, 24, 0.10);
  --shadow-md: rgba(61, 35, 24, 0.15);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --transition: 0.3s ease;
  --max-w: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; font-weight: 400; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 14px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 12px;
}
.highlight { color: var(--brown); font-style: italic; }
.gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--brown);
  color: var(--cream);
}
.btn-primary:hover { background: var(--brown-deep); transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.9rem;
  padding: 16px 36px;
}
.btn-whatsapp:hover { background: #1ebe59; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #FFFFFF; flex-shrink: 0; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(107, 76, 59, 0.08);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo img {
  height: 52px;
  width: auto;
  transition: height 0.4s ease;
}
.nav.scrolled .nav__logo img { height: 40px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--brown); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--brown);
  transition: var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--brown);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--brown);
  cursor: pointer;
  line-height: 1;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}

.hero__content {
  padding: 80px 60px 80px 0;
  padding-left: calc((100vw - var(--max-w)) / 2 + 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  color: var(--brown-deep);
  margin-bottom: 24px;
  max-width: 540px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brown);
}

.hero__sub {
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__badges {
  display: flex;
  gap: 0;
  margin-top: 48px;
  background: var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107,76,59,0.1);
  width: 100%;
  max-width: 420px;
}
.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 22px 16px;
  border-right: 1px solid rgba(107,76,59,0.1);
}
.hero__badge:last-child { border-right: none; }
.hero__badge strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1;
}
.hero__badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}
.hero__visual-bg {
  position: absolute;
  inset: 0;
  background: var(--cream-dark);
}
.hero__image-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250,247,242,0.15) 0%, rgba(61,35,24,0.2) 100%);
}
.hero__visual-frame {
  position: absolute;
  bottom: 48px;
  left: 40px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 240px;
  border: 1px solid rgba(201,161,90,0.25);
}
.hero__visual-frame p {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 8px;
}
.hero__visual-frame strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--brown);
}

/* =========================================
   ANNOUNCEMENT STRIP
   ========================================= */
.strip {
  background: var(--brown);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
}
.strip__dot { color: var(--gold); font-size: 1.2rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   COLLECTIONS
   ========================================= */
.collections {
  padding: 120px 0;
}
.collections__header {
  text-align: center;
  margin-bottom: 64px;
}
.collections__header h2 { margin-bottom: 16px; }
.collections__header p { max-width: 520px; margin: 0 auto; }

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  group: true;
}
.collection-card:nth-child(1) { grid-row: span 1; }
.collection-card:nth-child(2) { grid-row: span 1; }
.collection-card:nth-child(3) { grid-row: span 1; }

.collection-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}
.collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}
.collection-card:hover .collection-card__img { transform: scale(1.05); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,35,24,0.72) 0%, rgba(61,35,24,0) 50%);
  border-radius: var(--radius);
}
.collection-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.collection-card__cat {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.collection-card__name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.collection-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.collection-card:hover .collection-card__link { opacity: 1; transform: translateY(0); }
.collection-card__link::after {
  content: '→';
  font-size: 1rem;
}

/* =========================================
   CRAFT / PILLARS
   ========================================= */
.craft {
  padding: 100px 0;
  background: var(--cream-dark);
}
.craft__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.craft__left { position: sticky; top: 100px; }
.craft__left h2 { margin-bottom: 20px; }
.craft__left p { margin-bottom: 32px; }

.craft__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pillar {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(107,76,59,0.08);
  transition: var(--transition);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow); }
.pillar__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.pillar p { font-size: 0.9rem; }

/* =========================================
   STORY
   ========================================= */
.story {
  padding: 120px 0;
  overflow: hidden;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__visual {
  position: relative;
}
.story__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.story__img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: 0 16px 48px var(--shadow-md);
}
.story__badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
}
.story__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}
.story__badge span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.75);
}

.story__content { padding: 24px 0; }
.story__content h2 { margin-bottom: 24px; }
.story__content p { margin-bottom: 20px; }
.story__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--brown);
  margin-top: 36px;
  margin-bottom: 32px;
}

/* =========================================
   FEATURED BANNER
   ========================================= */
.featured {
  padding: 80px 0;
  background: var(--cream-dark);
}
.featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--brown);
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
}
.featured__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured__content .section-label { color: var(--gold-light); opacity: 0.7; }
.featured__content h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.featured__content p {
  color: rgba(250,247,242,0.75);
  font-size: 1rem;
  margin-bottom: 40px;
}
.featured__img-wrap {
  position: relative;
  overflow: hidden;
}
.featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.6s ease;
}
.featured__inner:hover .featured__img { transform: scale(1.04); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,161,90,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section p { max-width: 480px; margin: 0 auto 48px; font-size: 1.1rem; }
.cta-section .btn-whatsapp { font-size: 1rem; padding: 18px 44px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer__brand { }
.footer__logo { height: 52px; width: auto; margin-bottom: 20px; background: var(--cream); padding: 8px 14px; border-radius: 10px; }
.footer__tagline { font-size: 0.9rem; color: rgba(250,247,242,0.6); max-width: 280px; line-height: 1.7; }

.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.65);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--cream); }
.footer__col p {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(250,247,242,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.35);
}
.footer__bottom a { color: rgba(250,247,242,0.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--cream); }

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-green 3s ease infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); animation: none; }
.fab-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* =========================================
   SCROLL ANIMATIONS — progressive enhancement
   Hidden only when JS is active (.js-ready on body)
   ========================================= */
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
.js-ready .fade-up:nth-child(2) { transition-delay: 0.1s; }
.js-ready .fade-up:nth-child(3) { transition-delay: 0.2s; }
.js-ready .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content {
    padding: 48px 24px 48px;
    padding-left: 24px;
    order: 2;
    text-align: center;
    align-items: center;
  }
  .hero h1 { max-width: 100%; }
  .hero__sub { max-width: 560px; }
  .hero__eyebrow { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { order: 1; min-height: 56vw; max-height: 480px; }

  .craft__inner { grid-template-columns: 1fr; gap: 40px; }
  .craft__left { position: static; }

  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__img-accent { right: 0; bottom: -16px; }
  .story__badge { left: 0; }

  .featured__inner { grid-template-columns: 1fr; min-height: auto; }
  .featured__img-wrap { height: 300px; }
  .featured__content { padding: 44px 40px; }

  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }

  .nav__links { display: none; }
  .nav__cta .btn-outline { display: none; }
  .nav__hamburger { display: flex; }

  .collections { padding: 80px 0; }
  .craft { padding: 72px 0; }
  .story { padding: 80px 0; }
  .cta-section { padding: 100px 0; }
}

/* --- Phone (≤768px) --- */
@media (max-width: 768px) {
  /* Hero */
  .hero__content { padding: 36px 20px 40px; }
  .hero__visual { height: 58vh; min-height: 300px; max-height: 520px; }
  .hero__visual-frame { display: none; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero__sub { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero__badges { margin-top: 28px; max-width: 100%; }
  .hero__badge { padding: 18px 10px; }
  .hero__badge strong { font-size: 1.7rem; }
  .hero__badge span { font-size: 0.65rem; }

  /* Collections */
  .collections { padding: 64px 0; }
  .collections__header { margin-bottom: 32px; }
  .collections__header h2 { font-size: 2rem; }
  .collections__grid { grid-template-columns: 1fr; gap: 16px; }
  .collection-card__img-wrap { aspect-ratio: 3/4; }
  .collection-card__img { object-position: center center; }
  .collection-card__name { font-size: 1.4rem; }

  /* Craft */
  .craft { padding: 60px 0; }
  .craft__inner { gap: 32px; }
  .craft__pillars { grid-template-columns: 1fr; gap: 16px; }
  .pillar { padding: 28px 24px; }

  /* Story */
  .story { padding: 60px 0; }
  .story__img-accent { display: none; }
  .story__badge { display: none; }
  .story__content h2 { font-size: 2rem; }
  .story__signature { font-size: 1.5rem; margin-top: 24px; margin-bottom: 24px; }

  /* Featured */
  .featured { padding: 40px 0; }
  .featured__content { padding: 32px 20px; }
  .featured__content h2 { font-size: 1.6rem; }
  .featured__img-wrap { height: 240px; }

  /* CTA */
  .cta-section { padding: 80px 0; }
  .cta-section h2 { font-size: 1.8rem; }
  .cta-section p { font-size: 1rem; }

  /* Footer */
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer { padding: 56px 0 24px; }
  .footer__main { margin-bottom: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* FAB */
  .fab-whatsapp { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }

  /* Strip */
  .strip { padding: 10px 0; }
}
