/* ============================================================
   ASK KIKI — theme.css
   Design tokens, reset, typography, buttons, badges, layout.
   Brand palette: vivid Ask Kiki red on clean white.
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-primary:   #FFFFFF;
  --bg-secondary: #FEF3F3;
  --bg-card:      #FFFFFF;

  /* Brand reds */
  --brand-primary:   #B4131A;  /* deep brand red — headings, footer, prices */
  --brand-secondary: #E31E24;  /* vivid Ask Kiki red — accents, links, buttons */
  --brand-hover:     #F0474C;  /* lighter red — hover states */
  --brand-active:    #8E0E14;  /* darkest red — active/pressed, gradient ends */

  /* Text */
  --text-primary:   #1C1416;
  --text-secondary: #6B5F61;
  --text-muted:     #9E9598;

  /* Lines */
  --border:  #F3DADB;
  --divider: #F7E7E8;

  /* Status */
  --success: #16A34A;
  --warning: #F59E0B;
  --error:   #DC2626;
  --info:    #0EA5E9;

  /* On-color text */
  --btn-text: #FFFFFF;
  --link:       #E31E24;
  --link-hover: #B4131A;

  /* Type scale */
  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 3rem;

  /* Spacing / radius / shadow */
  --space: 1rem;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(142,14,20,.07), 0 1px 3px rgba(142,14,20,.05);
  --shadow: 0 6px 18px rgba(142,14,20,.10);
  --shadow-lg: 0 18px 50px rgba(142,14,20,.16);
  --ring: 0 0 0 3px rgba(227,30,36,.28);

  --container: 1200px;
  --header-h: 76px;
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-hover); }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.18; font-weight: 700; color: var(--text-primary); letter-spacing: -.01em; }
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
ul, ol { padding-left: 1.25rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.bg-secondary { background: var(--bg-secondary); }
.text-center { text-align: center; }
.grid { display: grid; gap: 1.5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand-secondary);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand-secondary); border-radius: 2px; }
.section-title { font-size: var(--fs-3xl); margin-top: .6rem; }
.section-lead { color: var(--text-secondary); max-width: 60ch; margin-top: .75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  cursor: pointer; transition: all var(--transition); white-space: nowrap; line-height: 1;
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn-primary { background: var(--brand-primary); color: var(--btn-text); }
.btn-primary:hover { background: var(--brand-active); color: var(--btn-text); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--brand-secondary); color: var(--btn-text); }
.btn-secondary:hover { background: var(--brand-hover); color: var(--btn-text); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--brand-primary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--brand-secondary); color: var(--brand-secondary); background: var(--bg-secondary); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 1rem 1.9rem; font-size: var(--fs-base); }
.btn-block { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-secondary); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem; border-radius: 999px;
  font-size: var(--fs-xs); font-weight: 600; line-height: 1;
}
.badge-success { background: color-mix(in srgb, var(--success) 14%, white); color: var(--success); }
.badge-error   { background: color-mix(in srgb, var(--error) 12%, white);   color: var(--error); }
.badge-warning { background: color-mix(in srgb, var(--warning) 16%, white); color: #B45309; }
.badge-info    { background: color-mix(in srgb, var(--info) 14%, white);    color: #0369A1; }
.badge-muted   { background: var(--bg-secondary); color: var(--text-muted); }

/* ---------- Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: var(--fs-sm); font-weight: 600; margin-bottom: .4rem; color: var(--text-primary); }
.input, .textarea, .select {
  width: 100%; padding: .75rem .9rem; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--brand-secondary); box-shadow: var(--ring); }
.textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: var(--fs-sm); color: var(--text-secondary); }

/* ---------- Alerts ---------- */
.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); border: 1px solid; font-size: var(--fs-sm); margin-bottom: 1rem; }
.alert-success { background: color-mix(in srgb, var(--success) 8%, white); border-color: color-mix(in srgb, var(--success) 30%, white); color: #166534; }
.alert-error   { background: color-mix(in srgb, var(--error) 8%, white);   border-color: color-mix(in srgb, var(--error) 30%, white);   color: #991B1B; }

/* ---------- Utilities ---------- */
.muted { color: var(--text-muted); }
.secondary-text { color: var(--text-secondary); }
.divider { height: 1px; background: var(--divider); border: 0; margin-block: 1.5rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand-primary); color: #fff; padding: .6rem 1rem; border-radius: 0 0 var(--radius-sm) 0; z-index: 200; }
.skip-link:focus { left: 0; color:#fff; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive type ---------- */
@media (max-width: 768px) {
  :root { --fs-4xl: 2.25rem; --fs-3xl: 1.85rem; --fs-2xl: 1.45rem; }
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg-card) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-h);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; color: var(--brand-primary); }
.brand:hover { color: var(--brand-primary); }
.brand__mark {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff; border-radius: 11px; font-size: .82rem; letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-size: 1.18rem; }
.main-nav { margin-left: auto; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: .35rem; padding: 0; margin: 0; }
.nav-menu a {
  display: inline-block; padding: .55rem .85rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  color: var(--text-primary);
}
.nav-menu a:hover { background: var(--bg-secondary); color: var(--brand-secondary); }
.nav-menu a.active { color: var(--brand-secondary); background: var(--bg-secondary); }
.header-cta { flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--brand-primary); border-radius: 2px; transition: var(--transition); }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav { margin-left: auto; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: .5rem 1.25rem 1.25rem; box-shadow: var(--shadow-lg);
    transform: translateY(-130%); transition: transform var(--transition); max-height: calc(100vh - var(--header-h)); overflow:auto;
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a { padding: .85rem .6rem; border-radius: var(--radius-sm); }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { margin-top: 4rem; background: var(--brand-primary); color: #F7D9DA; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: 3.5rem; }
.brand--footer { color: #fff; }
.brand--footer .brand__name { color: #fff; }
.brand--footer:hover { color:#fff; }
.footer-tagline { margin: .9rem 0 1.3rem; color: #EFBEC0; max-width: 32ch; }
.footer-heading { color: #fff; font-size: var(--fs-base); margin-bottom: 1rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-links a { color: #F7D9DA; font-size: var(--fs-sm); }
.footer-links a:hover { color: #fff; }
.footer-contact li { font-size: var(--fs-sm); display: grid; gap: .1rem; }
.footer-contact span { color: #E39A9E; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .06em; }
.footer-contact a { color: #F7D9DA; }
.footer-contact a:hover { color:#fff; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.2rem; font-size: var(--fs-sm); }
.site-footer__bar-inner .muted { color: #E39A9E; }
.site-footer__bar-inner p { margin: 0; }

@media (max-width: 860px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}
@media (max-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: #25D366;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover { color: #fff; background: #1ebe5a; transform: scale(1.06); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--bg-secondary); }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(227,30,36,.16), transparent 60%),
    radial-gradient(700px 380px at 10% 110%, rgba(180,19,26,.12), transparent 60%);
}
/* faint circuit-trace signature motif */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--divider) 1px, transparent 1px),
    linear-gradient(90deg, var(--divider) 1px, transparent 1px);
  background-size: 46px 46px; opacity: .45;
  -webkit-mask-image: radial-gradient(circle at 78% 18%, black, transparent 55%);
  mask-image: radial-gradient(circle at 78% 18%, black, transparent 55%);
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero__content { max-width: 760px; }
.hero__title { font-size: var(--fs-4xl); font-weight: 800; }
.hero__title span { color: var(--brand-secondary); }
.hero__lead { margin-top: 1.25rem; font-size: var(--fs-lg); color: var(--text-secondary); max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 0; margin: 2rem 0 0; color: var(--text-secondary); font-size: var(--fs-sm); }
.hero__trust li { position: relative; padding-left: 1.4rem; }
.hero__trust li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.hero__trust strong { color: var(--text-primary); }

/* ============================================================
   Foundation cards (home Phase-1 section)
   ============================================================ */
.foundation-grid { grid-template-columns: repeat(3, 1fr); margin-top: 2.5rem; }
.foundation-card { padding: 1.6rem; }
.foundation-card h3 { font-size: var(--fs-xl); margin-bottom: .5rem; }
.foundation-card .badge { margin-top: .4rem; }
@media (max-width: 860px) { .foundation-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Error page
   ============================================================ */
.error-page { padding-block: clamp(4rem, 10vw, 7rem); }
.error-code {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 14vw, 7rem);
  line-height: 1; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block; margin-bottom: .5rem;
}

/* ============================================================
   Phase 3 — Homepage sections
   ============================================================ */

/* Small button + section heading row */
.btn-sm { padding: .55rem 1rem; font-size: var(--fs-xs); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.section-head .section-title { margin-top: .4rem; }

/* Category strip */
.cat-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.cat-chip {
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  padding: 1.2rem .75rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-primary); transition: all var(--transition);
}
.cat-chip:hover { transform: translateY(-3px); border-color: var(--brand-secondary); box-shadow: var(--shadow); color: var(--brand-primary); }
.cat-chip__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--bg-secondary); color: var(--brand-secondary); }
.cat-chip__name { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); }
@media (max-width: 900px) { .cat-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cat-strip { grid-template-columns: repeat(2, 1fr); } }

/* Product grid + card */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .product-grid { grid-template-columns: 1fr; } }

.product-card { display: flex; flex-direction: column; overflow: hidden; }
.product-card__media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--bg-secondary); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__flag { position: absolute; top: .6rem; left: .6rem; padding: .25rem .6rem; border-radius: 999px; font-size: var(--fs-xs); font-weight: 700; color: #fff; }
.flag-new { background: var(--brand-secondary); }
.product-card__stock { position: absolute; top: .6rem; right: .6rem; }
.product-card__body { display: flex; flex-direction: column; gap: .4rem; padding: 1rem 1.1rem 1.2rem; flex: 1; }
.product-card__brand { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 600; }
.product-card__title { font-size: var(--fs-base); font-weight: 700; line-height: 1.3; }
.product-card__title a { color: var(--text-primary); }
.product-card__title a:hover { color: var(--brand-secondary); }
.product-card__desc { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0; }
.product-card__footer { margin-top: auto; padding-top: .5rem; }
.product-card__price { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-lg); color: var(--brand-primary); }
.product-card__price--ask { font-size: var(--fs-sm); color: var(--text-secondary); font-weight: 600; }
.product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .25rem; }

/* Service grid + card */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 860px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
.service-card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; background: var(--bg-secondary); color: var(--brand-secondary); }
.service-card__title { font-size: var(--fs-lg); }
.service-card__title a { color: var(--text-primary); }
.service-card__title a:hover { color: var(--brand-secondary); }
.service-card__desc { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0; flex: 1; }
.service-card__link { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--brand-secondary); display: inline-flex; align-items: center; gap: .35rem; }
.service-card__link span { transition: transform var(--transition); }
.service-card__link:hover span { transform: translateX(4px); }

/* Why choose us + stats */
.why-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 2rem; } }
.why-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.why-list li { display: flex; align-items: center; gap: .7rem; font-weight: 500; }
.why-check { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: color-mix(in srgb, var(--success) 14%, white); color: var(--success); font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.stats-card { padding: 2rem; display: grid; gap: 1.2rem; background: linear-gradient(160deg, var(--bg-card), var(--bg-secondary)); }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-3xl); color: var(--brand-primary); line-height: 1; }
.stat__label { color: var(--text-secondary); font-size: var(--fs-sm); margin-top: .2rem; }
.stats-card .btn { margin-top: .5rem; }

/* Testimonials slider */
.testimonial-slider { position: relative; margin-top: 2.5rem; overflow: hidden; }
.testimonial-track { display: flex; gap: 1.5rem; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.testimonial { flex: 0 0 calc((100% - 3rem) / 3); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
@media (max-width: 900px) { .testimonial { flex-basis: calc((100% - 1.5rem) / 2); } }
@media (max-width: 600px) { .testimonial { flex-basis: 100%; } }
.testimonial__stars { color: var(--warning); letter-spacing: 2px; font-size: var(--fs-base); }
.testimonial__quote { font-size: var(--fs-base); color: var(--text-primary); line-height: 1.6; margin: 0; font-style: italic; }
.testimonial__author { display: flex; flex-direction: column; margin-top: auto; }
.testimonial__name { font-family: var(--font-display); font-weight: 700; }
.testimonial__role { font-size: var(--fs-sm); color: var(--text-muted); }
.testimonial-nav { display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.t-nav-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg-card); color: var(--brand-primary); font-size: 1.4rem; line-height: 1; cursor: pointer; transition: all var(--transition); }
.t-nav-btn:hover { border-color: var(--brand-secondary); background: var(--brand-secondary); color: #fff; }
.t-nav-btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* Brand showcase strip */
.brand-strip__label { text-align: center; color: var(--text-muted); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem; }
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1rem; }
.brand-logo { display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1.2rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); transition: all var(--transition); min-width: 110px; }
.brand-logo:hover { border-color: var(--brand-secondary); transform: translateY(-2px); }
.brand-logo__text { font-family: var(--font-display); font-weight: 700; color: var(--text-secondary); }
.brand-logo:hover .brand-logo__text { color: var(--brand-primary); }

/* Blog / post cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.post-card { display: flex; flex-direction: column; overflow: hidden; }
.post-card__media { display: block; aspect-ratio: 16 / 9; background: var(--bg-secondary); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.post-card__cat { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .06em; color: var(--brand-secondary); font-weight: 700; }
.post-card__title { font-size: var(--fs-lg); line-height: 1.3; }
.post-card__title a { color: var(--text-primary); }
.post-card__title a:hover { color: var(--brand-secondary); }
.post-card__excerpt { font-size: var(--fs-sm); color: var(--text-secondary); margin: 0; }
.post-card__date { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .2rem; }

/* Final CTA band */
.cta-band { background: linear-gradient(135deg, var(--brand-primary), var(--brand-active)); color: #fff; margin-top: 4rem; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 3rem; flex-wrap: wrap; }
.cta-band__title { color: #fff; font-size: var(--fs-2xl); }
.cta-band__lead { color: #F7D9DA; margin-top: .4rem; }
@media (max-width: 640px) { .cta-band__inner { flex-direction: column; text-align: center; align-items: stretch; } }

/* ============================================================
   Phase 4 — Catalog
   ============================================================ */

/* Page header */
.page-header { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding-block: 2.5rem; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: .8rem; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--brand-secondary); }
.breadcrumb__current { color: var(--text-primary); font-weight: 600; }
.page-header__title { font-size: var(--fs-3xl); }
.page-header__sub { color: var(--text-secondary); margin-top: .5rem; max-width: 70ch; }

/* Layout */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .catalog-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.catalog-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; }
.filter-close { display: none; position: absolute; top: .8rem; right: 1rem; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
.filter-block { padding-block: 1rem; border-bottom: 1px solid var(--divider); }
.filter-block:first-child { padding-top: 0; }
.filter-block:last-of-type { border-bottom: none; }
.filter-heading { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .06em; color: var(--text-secondary); margin-bottom: .8rem; }
.filter-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .15rem; max-height: 230px; overflow-y: auto; }
.filter-radio { display: flex; align-items: center; gap: .6rem; padding: .4rem .5rem; border-radius: var(--radius-sm); cursor: pointer; font-size: var(--fs-sm); transition: background var(--transition); }
.filter-radio:hover { background: var(--bg-secondary); }
.filter-radio input { accent-color: var(--brand-secondary); }
.filter-radio span { flex: 1; }
.filter-count { font-style: normal; font-size: var(--fs-xs); color: var(--text-muted); background: var(--bg-secondary); padding: .1rem .45rem; border-radius: 999px; }
.price-fields { display: flex; align-items: center; gap: .5rem; }
.price-fields .input { padding: .5rem .6rem; }
.price-sep { color: var(--text-muted); }
.filter-hint { font-size: var(--fs-xs); color: var(--text-muted); margin-top: .5rem; }
.filter-actions { display: grid; gap: .5rem; margin-top: 1.2rem; }

/* Toolbar */
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.catalog-toolbar__left, .catalog-toolbar__right { display: flex; align-items: center; gap: .75rem; }
.catalog-count { color: var(--text-secondary); font-size: var(--fs-sm); }
.sort-label { font-size: var(--fs-sm); color: var(--text-secondary); }
.sort-select { width: auto; padding: .55rem 2rem .55rem .8rem; font-size: var(--fs-sm); }
.filter-toggle { display: none; }

/* Empty state */
.catalog-empty { text-align: center; padding: 4rem 1rem; background: var(--bg-card); border: 1px dashed var(--border); border-radius: var(--radius); }
.catalog-empty__icon { font-size: 2.5rem; margin-bottom: .5rem; }
.catalog-empty h3 { margin-bottom: .4rem; }
.catalog-empty .btn { margin-top: 1rem; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .4rem; margin-top: 2.5rem; }
.page-link { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .75rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); color: var(--text-primary); font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); transition: all var(--transition); }
.page-link:hover { border-color: var(--brand-secondary); color: var(--brand-secondary); }
.page-link.is-current { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.page-link.is-disabled { opacity: .45; pointer-events: none; }
.page-link--nav { font-weight: 600; }
.page-ellipsis { padding: 0 .3rem; color: var(--text-muted); }

/* Catalog loading state */
.catalog-results.is-loading { opacity: .5; pointer-events: none; transition: opacity .15s; }

/* Mobile filter drawer */
.catalog-overlay { position: fixed; inset: 0; background: rgba(17,24,39,.5); z-index: 110; }
@media (max-width: 900px) {
  .filter-toggle { display: inline-flex; }
  .catalog-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: 86%; max-width: 340px; z-index: 120;
    border-radius: 0; overflow-y: auto; transform: translateX(-100%); transition: transform var(--transition);
  }
  .catalog-sidebar.is-open { transform: translateX(0); }
  .filter-close { display: block; }
}

/* ============================================================
   Phase 5 — Product detail
   ============================================================ */
.page-header--slim { padding-block: 1.25rem; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .product-detail { grid-template-columns: 1fr; gap: 2rem; } }

/* Gallery */
.pd-gallery__main { position: relative; aspect-ratio: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pd-gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
.pd-flag { position: absolute; top: 1rem; left: 1rem; }
.pd-gallery__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.pd-thumb { width: 72px; height: 72px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-card); cursor: pointer; padding: 0; transition: border-color var(--transition); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { border-color: var(--brand-secondary); }
.pd-thumb.is-active { border-color: var(--brand-primary); border-width: 2px; }
.pd-thumb:focus-visible { outline: none; box-shadow: var(--ring); }

/* Info */
.pd-brand { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--brand-secondary); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.pd-title { font-size: var(--fs-3xl); line-height: 1.15; margin-bottom: 1rem; }
.pd-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1.2rem; }
.pd-sku { font-size: var(--fs-sm); color: var(--text-muted); }
.pd-price { margin-bottom: 1.2rem; }
.pd-price__current, .pd-price__sale { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-3xl); color: var(--brand-primary); }
.pd-price__sale { color: var(--error); margin-right: .6rem; }
.pd-price__was { font-size: var(--fs-lg); color: var(--text-muted); text-decoration: line-through; }
.pd-price__ask { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-xl); color: var(--text-secondary); }
.pd-short { color: var(--text-secondary); font-size: var(--fs-lg); line-height: 1.6; margin-bottom: 1.5rem; }

.pd-actions { margin-bottom: 1.2rem; }
.pd-inquire { font-size: var(--fs-lg); }
.pd-inquire__note { text-align: center; font-size: var(--fs-sm); color: var(--text-muted); margin-top: .6rem; }

.pd-trust { list-style: none; padding: 1.2rem 0 0; margin: 0; border-top: 1px solid var(--divider); display: flex; flex-wrap: wrap; gap: 1.2rem; }
.pd-trust li { display: flex; align-items: center; gap: .4rem; font-size: var(--fs-sm); color: var(--text-secondary); }
.pd-trust span { color: var(--success); font-weight: 700; }

/* Description + specs */
.pd-details { margin-top: 3.5rem; display: grid; gap: 2.5rem; }
.pd-section__title { font-size: var(--fs-2xl); margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 2px solid var(--divider); }
.pd-description { color: var(--text-secondary); line-height: 1.8; max-width: 75ch; }
.pd-specs { width: 100%; border-collapse: collapse; max-width: 680px; }
.pd-specs tr { border-bottom: 1px solid var(--divider); }
.pd-specs tr:nth-child(odd) { background: var(--bg-secondary); }
.pd-specs th { text-align: left; padding: .85rem 1.1rem; font-weight: 600; color: var(--text-primary); width: 38%; vertical-align: top; }
.pd-specs td { padding: .85rem 1.1rem; color: var(--text-secondary); }

/* ============================================================
   Phase 6 — Services
   ============================================================ */

/* Listing: service grid on its own page (cards get a foot row) */
.service-grid--page { margin-top: 0; }
.service-grid--page .service-card { gap: .6rem; }
.service-card__foot { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: auto; padding-top: .4rem; }

/* Service detail layout */
.service-detail { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .service-detail { grid-template-columns: 1fr; } }

.sd-head { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.5rem; }
.sd-icon { flex-shrink: 0; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px; background: var(--bg-secondary); color: var(--brand-secondary); }
.sd-icon svg { width: 32px; height: 32px; }
.sd-title { font-size: var(--fs-3xl); line-height: 1.15; }
.sd-short { color: var(--text-secondary); font-size: var(--fs-lg); margin-top: .4rem; }
.sd-body { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; max-width: 70ch; }
.sd-price { font-size: var(--fs-lg); color: var(--text-primary); margin-bottom: 1.5rem; }
.sd-price strong { color: var(--brand-primary); font-family: var(--font-display); }

/* Inquiry form card */
.sd-form-card { padding: 1.8rem; }
.sd-form-title { font-size: var(--fs-xl); margin-bottom: .4rem; }
.sd-form { margin-top: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.sd-form-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
/* Honeypot — visually hidden but present for bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Sidebar */
.sd-sidebar { display: grid; gap: 1.5rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.sd-cta { padding: 1.5rem; }
.sd-cta h3 { font-size: var(--fs-lg); margin-bottom: .5rem; }
.sd-cta .btn { margin-top: 1rem; }
.sd-others { padding: 1.5rem; }
.sd-others h3 { font-size: var(--fs-lg); margin-bottom: 1rem; }
.sd-others__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; }
.sd-others__list a { display: flex; align-items: center; gap: .7rem; padding: .6rem .5rem; border-radius: var(--radius-sm); color: var(--text-primary); font-size: var(--fs-sm); font-weight: 500; transition: background var(--transition); }
.sd-others__list a:hover { background: var(--bg-secondary); color: var(--brand-secondary); }
.sd-others__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--bg-secondary); color: var(--brand-secondary); flex-shrink: 0; }
.sd-others__icon svg { width: 18px; height: 18px; }
.sd-others__list a:hover .sd-others__icon { background: var(--brand-secondary); color: #fff; }

/* ============================================================
   Phase 7 — Blog
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .blog-layout { grid-template-columns: 1fr; } }

/* Feed */
.blog-feed { display: grid; gap: 1.5rem; }
.blog-item { display: grid; grid-template-columns: 280px 1fr; overflow: hidden; }
@media (max-width: 600px) { .blog-item { grid-template-columns: 1fr; } }
.blog-item__media { display: block; aspect-ratio: 3/2; background: var(--bg-secondary); overflow: hidden; }
.blog-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-item:hover .blog-item__media img { transform: scale(1.04); }
.blog-item__body { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.blog-item__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; font-size: var(--fs-xs); }
.blog-item__cat { text-transform: uppercase; letter-spacing: .05em; font-weight: 700; color: var(--brand-secondary); }
.blog-item__date { color: var(--text-muted); }
.blog-item__title { font-size: var(--fs-xl); line-height: 1.3; }
.blog-item__title a { color: var(--text-primary); }
.blog-item__title a:hover { color: var(--brand-secondary); }
.blog-item__excerpt { color: var(--text-secondary); font-size: var(--fs-sm); margin: 0; }
.blog-item__more { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--brand-secondary); margin-top: auto; display: inline-flex; gap: .35rem; align-items: center; }
.blog-item__more span { transition: transform var(--transition); }
.blog-item__more:hover span { transform: translateX(4px); }

/* Sidebar widgets */
.blog-sidebar { display: grid; gap: 1.5rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.blog-widget { padding: 1.4rem; }
.blog-widget__title { font-size: var(--fs-base); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--divider); }
.blog-cat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .2rem; }
.blog-cat-list a { display: flex; align-items: center; justify-content: space-between; padding: .55rem .6rem; border-radius: var(--radius-sm); color: var(--text-primary); font-size: var(--fs-sm); transition: background var(--transition); }
.blog-cat-list a:hover { background: var(--bg-secondary); color: var(--brand-secondary); }
.blog-mini-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; }
.blog-mini-list a { display: grid; gap: .15rem; padding: .55rem .6rem; border-radius: var(--radius-sm); transition: background var(--transition); }
.blog-mini-list a:hover { background: var(--bg-secondary); }
.blog-mini__title { font-weight: 600; font-size: var(--fs-sm); color: var(--text-primary); line-height: 1.35; }
.blog-mini-list a:hover .blog-mini__title { color: var(--brand-secondary); }
.blog-mini__date, .blog-mini__views { font-size: var(--fs-xs); color: var(--text-muted); }
.blog-widget--cta { background: linear-gradient(160deg, var(--bg-card), var(--bg-secondary)); }
.blog-widget--cta .btn { margin-top: 1rem; }

/* Single post */
.post__header { margin-bottom: 1.5rem; }
.post__title { font-size: var(--fs-3xl); line-height: 1.15; margin-top: .6rem; }
.post__figure { margin: 0 0 1.8rem; border-radius: var(--radius); overflow: hidden; background: var(--bg-secondary); }
.post__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post__body { color: var(--text-primary); line-height: 1.8; font-size: var(--fs-lg); }
.post__body p { margin-bottom: 1.2rem; }
.post__body h2 { font-size: var(--fs-2xl); margin: 2rem 0 1rem; }
.post__body h3 { font-size: var(--fs-xl); margin: 1.5rem 0 .8rem; }
.post__body ul, .post__body ol { margin: 0 0 1.2rem 1.2rem; }
.post__body li { margin-bottom: .5rem; }
.post__body a { color: var(--link); text-decoration: underline; }
.post__body img { border-radius: var(--radius); margin: 1.5rem 0; }
.post__share { display: flex; align-items: center; gap: .6rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--divider); flex-wrap: wrap; }
.post__share span { font-weight: 600; font-size: var(--fs-sm); color: var(--text-secondary); }
.post__share-btn { padding: .45rem .9rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: var(--fs-sm); font-weight: 600; color: var(--brand-primary); transition: all var(--transition); }
.post__share-btn:hover { border-color: var(--brand-secondary); background: var(--bg-secondary); color: var(--brand-secondary); }

/* Related */
.post-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--divider); }
.post-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 600px) { .post-related__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Phase 8 — About & Contact
   ============================================================ */

/* About */
.about-intro { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro__body { color: var(--text-secondary); line-height: 1.8; font-size: var(--fs-lg); }
.about-intro__body p { margin-bottom: 1.2rem; }
.about-intro__body h2, .about-intro__body h3 { color: var(--text-primary); margin: 1.5rem 0 .8rem; }
.about-intro__card { padding: 1.6rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.about-intro__card h3 { font-size: var(--fs-lg); margin-bottom: .4rem; }
.about-intro__card .btn { margin-top: 1rem; }

.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card { padding: 1.8rem; text-align: center; }
.mv-icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px; background: var(--bg-secondary); color: var(--brand-secondary); margin-bottom: 1rem; }
.mv-card h3 { font-size: var(--fs-xl); margin-bottom: .5rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-check { flex-shrink: 0; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: color-mix(in srgb, var(--success) 14%, white); color: var(--success); font-weight: 700; }
.value-item h4 { font-size: var(--fs-lg); margin-bottom: .25rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-form-card { padding: 1.8rem; }
.contact-form { margin-top: 1.2rem; }
.contact-details { display: grid; gap: 1.5rem; }
.contact-card { padding: 1.6rem; }
.contact-card h3 { font-size: var(--fs-lg); margin-bottom: 1rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list__icon { flex-shrink: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--bg-secondary); color: var(--brand-secondary); }
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__label { display: block; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .1rem; }
.contact-list li a, .contact-list li span:not(.contact-list__label):not(.contact-list__icon) { color: var(--text-primary); font-weight: 500; }
.contact-list li a:hover { color: var(--brand-secondary); }
.social-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.social-link { padding: .5rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: var(--fs-sm); font-weight: 600; color: var(--brand-primary); }
.social-link:hover { border-color: var(--brand-secondary); color: var(--brand-secondary); background: var(--bg-secondary); }

/* Map */
.contact-map { margin-top: 2rem; line-height: 0; }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-placeholder { background: var(--bg-secondary); border: 1px dashed var(--border); border-radius: var(--radius); padding: 3rem 1.5rem; text-align: center; }

/* Newsletter */
.newsletter { background: linear-gradient(135deg, var(--brand-primary), var(--brand-active)); color: #fff; margin-top: 3rem; }
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 2.8rem; flex-wrap: wrap; }
.newsletter__title { color: #fff; font-size: var(--fs-2xl); }
.newsletter__lead { color: #F7D9DA; margin-top: .3rem; }
.newsletter__form { display: flex; gap: .6rem; flex: 1; min-width: 280px; max-width: 440px; }
.newsletter__form .input { flex: 1; }
@media (max-width: 640px) { .newsletter__inner { flex-direction: column; align-items: stretch; } .newsletter__form { max-width: none; } }

/* Generic page */
.generic-page { max-width: 75ch; }

/* Newsletter flash messages (Phase 9) */
.newsletter__flash { margin-top: .8rem; padding: .5rem .9rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); font-weight: 600; display: inline-block; }
.newsletter__flash--ok { background: rgba(255,255,255,.18); color: #fff; }
.newsletter__flash--err { background: color-mix(in srgb, var(--error) 30%, white); color: #fff; }
