/* ===========================================================
   Coming Tours — Brand Guidelines
   =========================================================== */

:root {
  /* Brand blues */
  --blue-50: #daedff;
  --blue-200: #7bb4eb;
  --blue-400: #297ecf;
  --coming-blue: #095aa8;
  /* Brand ambers */
  --amber-50: #fdeedc;
  --amber-200: #ffcf97;
  --amber-400: #f6b04d;
  --tours-amber: #f59d37;
  /* Neutrals / premium */
  --soft-white: #faf8f2;
  --warm-sand: #f4e8d2;
  --luxury-gold: #c7a45d;
  --deep-navy: #102033;

  --ink: #1c2733;
  --muted: #566372;

  --font-display: "Quicksand", sans-serif;
  --font-ui: "Poppins", sans-serif;
  --font-script: "Caveat", cursive;
  --font-body: "Nunito Sans", sans-serif;

  --maxw: 1120px;
  --radius: 18px;
  --shadow-sm: 0 4px 16px rgba(16, 32, 51, 0.08);
  --shadow-md: 0 12px 32px rgba(16, 32, 51, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--soft-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ---------- Floating symbols background ---------- */
.bg-symbols {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-symbols__item {
  position: absolute;
  opacity: 0.06;
  animation: floaty linear infinite;
  will-change: transform;
}
@keyframes floaty {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-40px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-symbols__item { animation: none; }
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5vw, 48px);
  background: rgba(9, 90, 168, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--soft-white);
}
.topbar__logo { height: 26px; width: auto; }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 3px;
}

/* ---------- Navigation ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.1); }
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--soft-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(16, 32, 51, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease;
    z-index: 49;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .nav__link:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .hamburger { display: flex; }
}
.lang-toggle__btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-toggle__btn.is-active {
  background: var(--tours-amber);
  color: var(--deep-navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--amber { background: var(--tours-amber); color: var(--deep-navy); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--coming-blue);
  color: var(--coming-blue);
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--deep-navy);
  color: var(--soft-white);
}
.hero__video-wrap {
  width: 100%;
  line-height: 0;
}
.hero__video {
  display: block;
  width: 100%;
  height: auto;
}
.hero__inner {
  max-width: 720px;
  width: 90%;
  padding: 48px 24px 60px;
}
.hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--tours-amber);
  display: block;
  margin-bottom: 8px;
}
.hero__logo {
  width: min(460px, 80vw);
  margin: 8px auto 28px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  margin: 0 0 6px;
}
.hero__credit {
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
}
.hero__scroll {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  text-decoration: none;
  padding-bottom: 24px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section--light { background: var(--soft-white); }
.section--sand  { background: var(--warm-sand); }
.section--amber {
  background: linear-gradient(135deg, var(--tours-amber), var(--amber-400));
  color: var(--deep-navy);
}
.section--navy { background: var(--deep-navy); color: var(--soft-white); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 24px;
}
.t-blue { color: var(--coming-blue); }
.t-blue-l { color: var(--blue-200); }
.t-amber { color: var(--tours-amber); }
.t-navy { color: var(--deep-navy); }
.t-white { color: var(--soft-white); }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 760px;
  margin: 0 0 40px;
  color: inherit;
}
.section--light .lead, .section--sand .lead { color: var(--muted); }

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.intro-note {
  position: relative;
  background: transparent;
  padding-left: 4px;
}
.intro-note__tag {
  float: left;
  margin: 4px 16px 8px 0;
  background: var(--amber-400);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.05;
  padding: 14px 18px;
  border-radius: 14px 14px 14px 2px;
  max-width: 120px;
}
.intro-note p, .intro-body { margin: 0; color: var(--muted); }
.intro-body { font-size: 1rem; }

/* ---------- Card grid (downloads) ---------- */
.logo-group { margin-top: 48px; }
.logo-group:first-of-type { margin-top: 24px; }
.logo-group__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--coming-blue);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(9, 90, 168, 0.15);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(16, 32, 51, 0.06);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(45deg, #eef1f5 25%, transparent 25%) -10px 0 / 20px 20px,
    linear-gradient(-45deg, #eef1f5 25%, transparent 25%) -10px 0 / 20px 20px,
    linear-gradient(45deg, transparent 75%, #eef1f5 75%) / 20px 20px,
    linear-gradient(-45deg, transparent 75%, #eef1f5 75%) / 20px 20px,
    #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
.card__num {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--deep-navy);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 999px;
}
.card__ext {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--tours-amber);
  color: var(--deep-navy);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.card__dl {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--coming-blue);
  color: #fff;
  transition: background 0.2s ease;
}
.card__dl:hover { background: #074a8c; }
.card__dl svg { width: 15px; height: 15px; }

/* ---------- Chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}
.chip {
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-navy);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.chip--navy {
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.section__title--onamber { margin-bottom: 20px; }
.section__title--onnavy { margin-bottom: 20px; }

/* ---------- Usage rules ---------- */
.usage-rules {
  max-width: 820px;
  display: grid;
  gap: 14px;
}
.usage-rules p {
  margin: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.02rem;
}
.usage-rules strong { color: var(--deep-navy); }

/* ---------- Voice ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.voice-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}
.voice-card__label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.voice-card__label--say { color: var(--tours-amber); }
.voice-card__old {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  margin: 6px 0 18px;
}
.voice-card__new {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--blue-200);
  margin: 6px 0 0;
  line-height: 1.35;
}

/* ---------- Colors / swatches ---------- */
.palette-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-end;
}
.palette-family {
  display: flex;
  align-items: flex-end;
  gap: -10px;
}
.palette-family .swatch:not(:first-child) { margin-left: -22px; }
.palette-hint {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--deep-navy);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
.swatch {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.swatch:hover { transform: translateY(-6px); z-index: 3; box-shadow: var(--shadow-md); }
.swatch:active { transform: scale(0.95); }
.swatch--named { width: 132px; height: 132px; z-index: 2; }
.swatch--ring { border: 1px solid rgba(16, 32, 51, 0.15); }
.swatch__hex {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--deep-navy);
  padding: 2px 8px;
  border-radius: 999px;
  position: absolute;
  top: -10px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.swatch--named .swatch__hex { top: auto; position: static; margin-bottom: 6px; }
.swatch__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Premium ---------- */
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.premium-swatches { display: flex; gap: 18px; flex-wrap: wrap; }
.swatch--tall {
  width: 120px;
  height: 150px;
  border-radius: 16px 16px 60px 60px / 16px 16px 30px 30px;
  justify-content: flex-end;
  padding-bottom: 16px;
}
.swatch--tall .swatch__hex { top: -10px; position: absolute; }
.premium-marks { display: grid; gap: 20px; }
.premium-mark {
  border-radius: var(--radius);
  padding: 30px 34px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-mark img { max-width: 100%; height: auto; }
.premium-mark--navy { background: var(--deep-navy); }
.premium-mark--light { background: transparent; }
.cm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  display: inline-block;
}
.cm__coming { color: var(--soft-white); }
.cm__coming--navy { color: var(--deep-navy); }
.cm__tours--gold { color: var(--luxury-gold); }
.cm__together {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.7em;
  font-size: 0.7rem;
  color: var(--luxury-gold);
  margin-top: 2px;
  padding-left: 0.7em;
}
.cm__together--navy { color: var(--deep-navy); }

/* ---------- Typography ---------- */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.type-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 32, 51, 0.06);
  display: flex;
  flex-direction: column;
}
.type-card__role {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.type-card__name {
  font-size: 1.3rem;
  margin: 4px 0 10px;
  color: var(--coming-blue);
}
.type-card__sample {
  font-size: 4.6rem;
  line-height: 1;
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.type-card__weights {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
}
.type-card__weights .is-bold { font-weight: 700; color: var(--ink); }
.type-card__desc { font-size: 0.9rem; color: var(--muted); margin: 0 0 16px; flex: 1; }
.type-card__link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--tours-amber);
  text-decoration: none;
  align-self: flex-start;
}
.type-card__link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 40px;
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__logo { width: 150px; margin-bottom: 6px; }
.footer__text { font-family: var(--font-display); font-size: 1.1rem; color: var(--soft-white); margin: 0; max-width: 520px; }
.footer__meta { font-family: var(--font-ui); font-size: 0.9rem; margin: 0; color: rgba(255,255,255,0.6); }
.footer__link {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--tours-amber);
  text-decoration: none;
  font-size: 1rem;
}
.footer__link:hover { text-decoration: underline; }
.footer__copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); margin: 14px 0 0; }

/* ---------- Print-ready / business card ---------- */
.bc-figure {
  margin: 0 auto 32px;
  max-width: 1050px;
  width: 100%;
}
.bc-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.bc-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 1050px;
  margin: 0 auto 28px;
  background: rgba(214, 45, 45, 0.06);
  border-left: 4px solid #d62d2d;
  border-radius: 12px;
  padding: 16px 20px;
}
.bc-warning__mark {
  color: #d62d2d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  flex: none;
}
.bc-warning p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}
.bc-tech {
  max-width: 1050px;
  margin: 0 auto 40px;
}
.bc-tech__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--coming-blue);
  margin: 0 0 8px;
}
.bc-tech p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.card-grid--print {
  max-width: 1050px;
  margin: 0 auto;
}

/* ---------- Product blocks (merchandise / signage) ---------- */
.pr-item {
  max-width: 1050px;
  margin: 0 auto;
  padding-top: 40px;
}
.pr-item + .pr-item {
  border-top: 1px solid rgba(16, 32, 51, 0.1);
}
.pr-item .bc-tech {
  margin-bottom: 8px;
}

/* ---------- Highlighted stamp download ---------- */
.btn--navy { background: var(--deep-navy); color: var(--soft-white); }

.stamp-download {
  max-width: 1050px;
  margin: 8px auto 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--amber-200), var(--luxury-gold));
  box-shadow: var(--shadow-md);
}
.stamp-download__thumb {
  flex: none;
  width: 140px;
  height: 140px;
  border-radius: 14px;
  background: var(--soft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.stamp-download__thumb img { width: 100%; height: 100%; object-fit: contain; }
.stamp-download__body { flex: 1; }
.stamp-download__eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-navy);
  opacity: 0.75;
}
.stamp-download__highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--deep-navy);
  margin: 4px 0 6px;
  line-height: 1.2;
}
.stamp-download__desc {
  margin: 0 0 16px;
  color: var(--deep-navy);
  font-size: 0.98rem;
  max-width: 620px;
}
.stamp-download__btn { font-size: 0.95rem; }

@media (max-width: 640px) {
  .stamp-download { flex-direction: column; text-align: center; align-items: center; }
  .stamp-download__desc { margin-left: auto; margin-right: auto; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--deep-navy);
  color: var(--soft-white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .premium-grid { grid-template-columns: 1fr; }
  .palette-row { gap: 28px; }
}
