/* ═══════════════════════════════════════════════════════════
   maskincare.be — Shared Styles
   Fonts, variables, base reset, layout chrome
═══════════════════════════════════════════════════════════ */

/* ── FONTS ── */
/* Fonts loaded via <link> in HTML to avoid render-blocking @import */

/* ── VARIABLES ── */
:root {
  /* ── Base palette ── */
  --ivory:      #FAFAF7;
  --pebble:     #E8E4DF;
  --white:      #FFFFFF;
  --slate:      #2C2C2C;
  --slate-mid:  #5A5A5A;

  /* ── Green (primary brand — matches logo) ── */
  --rose:       #8FAF8F;
  --rose-light: #EDF2ED;
  --rose-text:  #4D5951;

  /* ── Sage (secondary / in-stock) ── */
  --sage:       #B0BAA8;   /* warmer, less cold than before */
  --sage-light: #DDE3D9;
  --sage-text:  #4F6349;

  /* ── Semantic ── */
  --sale:       #B85450;   /* replaces hardcoded #C0392B / #C0392B */
  --amber:      #C4945A;   /* preorder badges */
  --amber-bg:   #FFF3CC;
  --amber-border: #E8C84A;
  --amber-text: #7A5200;
  --success:    #4A7C59;
  --danger:     #B85450;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  /* ── Radii — consistent scale ── */
  --r-sm:   2px;
  --r-md:   4px;
  --r-lg:   8px;
  --r-pill: 40px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ivory);
  color-scheme: light;
}
body {
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LANGUAGE BAR ── */
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding: 10px 48px;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pebble);
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn.active,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--rose);
  background: var(--rose-light);
  outline: none;
}
.lang-sep { color: var(--pebble); font-size: 10px; }
.nav-reviews-link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-reviews-link:hover { color: var(--rose); background: var(--rose-light); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--pebble);
  padding: 10px 0;
  overflow: hidden;
}
.trust-bar-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 22s linear infinite;
}
.trust-bar-track:hover { animation-play-state: paused; }
@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  justify-content: center;
  padding: 0 24px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a.trust-item:hover { color: var(--rose); }
a.trust-item:hover .trust-icon { color: var(--rose); }
.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--rose);
}
.trust-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--pebble);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .trust-bar-track { animation: none; }
  .trust-bar { overflow-x: auto; scrollbar-width: none; }
  .trust-bar::-webkit-scrollbar { display: none; }
}

/* ── BRAND NAV ── */
.brand-nav-wrap {
  position: sticky;
  top: 41px;
  z-index: 90;
  display: flex;
  align-items: stretch;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pebble);
}
.brand-nav-arrow {
  background: none;
  border: none;
  border-right: 1px solid var(--pebble);
  color: var(--slate-mid);
  width: 36px;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}
.brand-nav-arrow.right { border-right: none; border-left: 1px solid var(--pebble); }
.brand-nav-arrow:hover { background: var(--pebble); color: var(--slate); }
.brand-nav-arrow:disabled { opacity: 0.2; cursor: default; }
.brand-nav {
  position: static;
  top: auto;
  z-index: auto;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  padding: 0;
  flex: 1;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.brand-nav::-webkit-scrollbar { display: none; }
.brand-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  padding: 16px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.brand-nav a:hover,
.brand-nav a:focus-visible { color: var(--rose); border-bottom-color: var(--rose); outline: none; }
.brand-nav a.active { color: var(--rose); border-bottom-color: var(--rose); }

/* "Tout / All" pill in brand nav */
.brand-nav-all {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate-mid); text-decoration: none;
  padding: 16px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-bottom-color 0.2s;
  margin-right: 4px;
  border-right: 1px solid var(--pebble);
}
.brand-nav-all:hover { color: var(--rose); }
.brand-nav-all.active { color: var(--rose-text); border-bottom-color: var(--rose); }

/* ── FILTER BAR (search + concern chips) ── */
/* lang-bar ≈ 41px + brand-nav ≈ 48px = 89px */
.filter-bar {
  position: sticky;
  top: 89px;
  z-index: 80;
  padding: 14px 48px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pebble);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .filter-bar { padding: 10px 16px; top: 85px; gap: 10px; }
}

/* ── COVER ── */
.cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  /* Nature background — misty Korean/Japanese landscape */
  background-color: var(--ivory);
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&auto=format&fit=crop&q=75');
  background-size: cover;
  background-position: center 40%;
  background-attachment: scroll; /* fixed breaks on iOS Safari */
}
/* Ivory gradient overlay — keeps text fully readable, tints from top */
.cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,250,247,0.60) 0%,
    rgba(250,250,247,0.72) 40%,
    rgba(250,250,247,0.88) 75%,
    rgba(250,250,247,0.97) 100%
  );
  pointer-events: none;
  z-index: 0;
}
/* Rose radial glow — subtle accent top-right */
.cover::after {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,154,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* All direct children of cover sit above the overlays */
.cover > * { position: relative; z-index: 1; }
.cover-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 24px;
  opacity: 1;
}
.cover-logo {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  opacity: 1;
}
.cover-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--slate-mid);
  margin-bottom: 48px;
  opacity: 1;
}
.cover-tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--slate-mid);
  max-width: 420px;
  line-height: 1.8;
  opacity: 1;
}
.cover-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--rose), transparent);
  margin: 40px auto;
  opacity: 1;
}
.cover-scroll {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  opacity: 1;
  animation: pulse-arrow 2s ease-in-out infinite;
  cursor: pointer;
}

/* ── BRAND SECTION ── */
.brand-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--pebble);
  opacity: 1;
  transform: translateY(0);
  scroll-margin-top: 96px;
}
body.js-ready .brand-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .brand-section.visible { opacity: 1; transform: translateY(0); }

.brand-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pebble);
}
.brand-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand-origin {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-top: 8px;
}
.brand-count {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--pebble);
  line-height: 1;
  text-align: right;
}
.brand-count span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-top: 4px;
}
.section-intro {
  font-size: 13px;
  color: var(--slate-mid);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-style: italic;
  display: none;
}
body.lang-en .section-intro.lang-en,
body.lang-fr .section-intro.lang-fr,
body.lang-nl .section-intro.lang-nl { display: block; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: stretch;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--rose);
  transition: height 0.3s ease;
}
.product-card:hover::before { height: 100%; }
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(44,44,44,0.08);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--pebble);
  width: 100%;
  height: 100%;
}
.product-image-placeholder span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
  opacity: 0.4;
}

.product-type-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-text);
  background: var(--sage-light);
  padding: 3px 8px;
  border-radius: 10px;
}

.product-info { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-brand-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-text);
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--slate);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.product-desc {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.7;
  display: none;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 5.1em;
}
body.lang-en .product-desc.lang-en,
body.lang-fr .product-desc.lang-fr,
body.lang-nl .product-desc.lang-nl {
  display: -webkit-box;
  display: box;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--pebble);
  margin-top: auto;
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--slate);
}
.product-size {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--slate-mid);
}

/* ── LOGO MARK ── */
.logo-mark { display: inline-flex; align-items: baseline; }
.logo-mask, .logo-kin, .logo-care {
  font-family: 'Great Vibes', cursive;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: #2D4A2D;
}
.logo-tld {
  font-family: 'Great Vibes', cursive;
  font-size: 0.5em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: #8FAF8F;
  vertical-align: super;
  margin-left: 2px;
}

/* ── MULTILINGUAL ── */
.lang-en:not(body), .lang-fr:not(body), .lang-nl:not(body) { display: none; }
body.lang-en .lang-en,
body.lang-fr .lang-fr,
body.lang-nl .lang-nl { display: inline; }
.cover-tagline-text { display: none; }
body.lang-en .cover-tagline-text.lang-en,
body.lang-fr .cover-tagline-text.lang-fr,
body.lang-nl .cover-tagline-text.lang-nl { display: block; }

/* ── WHATSAPP FLOAT ── */
/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--slate);
  color: var(--ivory);
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(44,44,44,0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--rose); }

/* ── FOOTER — editorial premium layout ── */
.site-footer {
  background: #1A1A1A;
  background-image: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
  color: rgba(255,255,255,0.45);
  padding: 0 64px 0;
}
/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Brand column */
.footer-col-brand {}
.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 14px;
  color: #D4E4D4;
}
.footer-logo-tld {
  color: #8FAF8F;
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 2px;
}
.footer-tagline-new {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 240px;
  margin-bottom: 28px;
}
.footer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.footer-wa:hover { border-color: #25D366; color: #25D366; background-color: rgba(37,211,102,0.08); }
.footer-wa svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
/* Nav columns */
.footer-col-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  letter-spacing: 0.03em;
  transition: color 0.2s, text-decoration-color 0.25s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); text-decoration-color: rgba(255,255,255,0.4); }
.footer-link-more { color: rgba(255,255,255,0.3); font-style: italic; }
/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-bottom-sep { opacity: 0.3; }
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.footer-bottom-right svg {
  width: 11px;
  height: 11px;
  fill: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-footer { padding: 0 24px 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0;
  }
  .footer-logo { font-size: 32px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-right { margin-top: 4px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
}

/* ── ACTIVE BRAND NAV ── */
.brand-nav a.active {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .lang-bar  { padding: 10px 16px; gap: 2px; }
  .cover     { padding: 100px 20px 60px; min-height: 85vh; }
  .brand-section { padding: 48px 16px; }
  .brand-nav { padding: 0 8px; }
  .brand-nav-wrap { top: 42px; }
  .brand-nav-arrow { display: none; }
  .brand-nav a { padding: 16px 12px; font-size: 9px; letter-spacing: 0.1em; }
  .brand-header { grid-template-columns: 1fr; }
  .brand-count { text-align: left; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .product-card { padding: 16px 12px; gap: 10px; }
  .product-name { font-size: 14px; min-height: calc(14px * 1.3 * 2); }
  .product-desc { font-size: 11px; -webkit-line-clamp: 3; }
  footer { padding: 40px 20px; }
  .back-to-top { bottom: 20px; right: 16px; width: 46px; height: 46px; font-size: 20px; }
}
@media (max-width: 480px) {
  /* Keep 2 columns even on small phones */
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cover-logo   { font-size: clamp(40px, 13vw, 70px); }
  .product-card { padding: 12px 8px; gap: 8px; }
  .product-price { font-size: 16px; }
}
@media (min-width: 1400px) {
  .product-grid  { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .brand-section { padding: 80px 64px; }
  .brand-nav     { padding: 0 64px; }
}
