/* ============================================================
 *  1ST COMPASS TRAVEL — SITE STYLESHEET
 *  Design system: navy + brass + ivory editorial luxury
 * ============================================================ */

:root {
  /* Colors */
  --ink: #0E1B2C;
  --ink-soft: #1a2d44;
  --bone: #F4EFE6;
  --bone-soft: rgba(244, 239, 230, 0.7);
  --bone-mute: rgba(244, 239, 230, 0.5);
  --bone-faint: rgba(244, 239, 230, 0.15);
  --brass: #B08D57;
  --brass-soft: rgba(176, 141, 87, 0.3);
  --sea: #2C4A5C;
  --rose: #C2A88E;
  --char: #1F1F1F;
  --error: #c0392b;
  --success: #2d8a4e;

  /* Type */
  --font-display: 'Italiana', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

/* ============================================================
 *  LIGHT MODE — daylight-friendly palette
 *  Activated by class "light" on the <html> element.
 *  Re-maps the same variables so the whole site cascades.
 * ============================================================ */
html.light {
  --ink: #F4EFE6;          /* page background becomes warm ivory */
  --ink-soft: #ece4d6;
  --bone: #1c2a3a;         /* primary text becomes deep navy-ink */
  --bone-soft: rgba(28, 42, 58, 0.78);
  --bone-mute: rgba(28, 42, 58, 0.55);
  --bone-faint: rgba(28, 42, 58, 0.18);
  --brass: #8a6a3b;        /* slightly deeper brass for contrast on light */
  --brass-soft: rgba(138, 106, 59, 0.3);
  --sea: #2C4A5C;
  --rose: #9c7e5e;
  --char: #1F1F1F;
}
/* Header/footer use a fixed dark tint by default; soften for light mode */
html.light .site-header {
  background: rgba(244, 239, 230, 0.85);
  border-bottom: 1px solid rgba(138, 106, 59, 0.2);
}
html.light .site-footer {
  background: var(--ink-soft);
  border-top: 1px solid rgba(138, 106, 59, 0.25);
}
/* The nav drawer on mobile uses solid --ink, which is now light — fine.
   Buttons: the brass primary button text should stay light (ivory) on brass. */
html.light .btn-primary,
html.light .nav-cta { color: #F4EFE6 !important; }
/* Hero radial glows are tuned for dark; lighten them so they don't muddy */
html.light .home-hero,
html.light .page-hero,
html.light .section[style*="rgba(244, 239, 230"] {
  background:
    radial-gradient(circle at 20% 20%, rgba(138,106,59,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44,74,92,0.06) 0%, transparent 50%);
}
/* Inputs in light mode need a light field background */
html.light .field input,
html.light .field select,
html.light .field textarea,
html.light .kid-age-field select {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: rgba(28, 42, 58, 0.2);
}
html.light .field input:focus,
html.light .field select:focus,
html.light .field textarea:focus { background-color: #fff; }
html.light .form-card { background: rgba(255,255,255,0.5); }

/* Smooth the switch */
html { transition: none; }
body, .site-header, .site-footer, .form-card,
.field input, .field select, .field textarea,
.feature, .stat-card, .panel {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* ============================================================
 *  THEME TOGGLE BUTTON
 * ============================================================ */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--bone-faint);
  color: var(--bone-soft);
  width: 38px; height: 38px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.theme-toggle:hover { border-color: var(--brass); color: var(--brass); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
html.light .theme-toggle .icon-moon { display: block; }
html.light .theme-toggle .icon-sun { display: none; }

/* ============================================================
 *  RESET & BASE
 * ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brass); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

/* ============================================================
 *  HEADER & NAVIGATION
 * ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 27, 44, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: var(--space-md);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--bone);
  flex-shrink: 0;
}
.brand:hover { color: var(--bone); }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; color: var(--bone); }
.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-weight: 600;
}
.brand-name em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
}
.brand-name sup { font-size: 0.6em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-soft);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: var(--brass);
  color: var(--ink) !important;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-indent: 0.22em; /* compensate for trailing letter-spacing so text sits centered */
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  border: none !important;
  border-radius: 3px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #c89f63;
  color: var(--ink) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--bone);
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 23px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .theme-toggle { margin-left: auto; margin-right: 8px; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  .site-nav a { font-size: 14px; }
  .nav-cta { font-size: 12px; padding: 14px 28px; }
}

/* ============================================================
 *  HOME HERO
 * ============================================================ */
.home-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(176,141,87,0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44,74,92,0.20) 0%, transparent 50%);
}
.home-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-compass {
  width: 130px;
  height: 130px;
  margin-bottom: var(--space-lg);
  animation: heroRotate 80s linear infinite;
  color: var(--bone);
}
@keyframes heroRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-md);
}
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 0;
  max-width: 14ch;
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: var(--space-md) auto;
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 3.5vw, 24px);
  color: var(--bone-soft);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-compass { width: 160px; height: 160px; }
}

/* ============================================================
 *  PAGE HERO (used by sub-pages)
 * ============================================================ */
.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(176,141,87,0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44,74,92,0.18) 0%, transparent 50%);
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-md);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: var(--space-md);
}
.page-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
}
.page-hero .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--bone-soft);
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.page-hero .divider {
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: var(--space-md) auto;
}

/* ============================================================
 *  PAGE SECTIONS
 * ============================================================ */
.section {
  padding: var(--space-xl) 0;
}
.section-tight { padding: var(--space-lg) 0; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}
.section h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
}
.section p {
  font-size: 16px;
  color: var(--bone-soft);
  margin-bottom: var(--space-md);
  max-width: 680px;
}
.section p.large {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 22px);
  font-style: italic;
  color: var(--bone);
}

/* ============================================================
 *  FORMS
 * ============================================================ */
.form-card {
  background: rgba(244, 239, 230, 0.03);
  border: 1px solid var(--brass-soft);
  border-radius: 4px;
  padding: var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-row { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: var(--space-md); }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
}
.field label .req { color: var(--rose); }
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  color: var(--bone-mute);
  font-style: italic;
  font-size: 11px;
  font-family: var(--font-serif);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(14, 27, 44, 0.6);
  border: 1px solid var(--bone-faint);
  color: var(--bone);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23B08D57' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: rgba(14, 27, 44, 0.6);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--bone-mute);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(14, 27, 44, 0.8);
}

/* Missed required field — clear red highlight + a quick nudge so it's easy to find */
.field input.input-error,
.field select.input-error,
.field textarea.input-error {
  border-color: #e05a4b !important;
  box-shadow: 0 0 0 3px rgba(224, 90, 75, 0.25) !important;
  animation: fieldNudge 0.35s ease;
}
@keyframes fieldNudge {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Honeypot - hidden from real users, traps bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* Form sections */
.form-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(176, 141, 87, 0.15);
}
.form-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.form-section-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-md);
  text-align: center;
}

/* Checkbox label */
.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--bone) !important;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px !important;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brass);
  cursor: pointer;
  flex-shrink: 0;
  /* The global ".field input { appearance:none }" (for text inputs/selects)
     also strips the native checkbox tick — restore it so checked is visible. */
  -webkit-appearance: auto;
  appearance: auto;
}

/* Kids ages grid */
.kids-ages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
}
.kid-age-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kid-age-field label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-mute);
}
.kid-age-field select {
  width: 100%;
  background: rgba(14, 27, 44, 0.6);
  border: 1px solid var(--bone-faint);
  color: var(--bone);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}
.kid-age-field select:focus { outline: none; border-color: var(--brass); }

/* Date inputs - style the native picker to match */
.field input[type="date"] {
  color-scheme: dark;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover {
  background: #c89f63;
  color: var(--ink);
}
.btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone-faint);
}
.btn-secondary:hover {
  border-color: var(--brass);
  color: var(--brass);
}
.btn-large { padding: 18px 48px; font-size: 12px; }
.btn-block { display: block; width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Status messages */
.status {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 14px;
  margin: var(--space-sm) 0;
  display: none;
}
.status.show { display: block; }
.status.success {
  background: rgba(45, 138, 78, 0.15);
  border: 1px solid rgba(45, 138, 78, 0.4);
  color: #88dd9f;
}
.status.error {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: #ff8a7a;
}

/* Success card (replaces form after submission) */
.success-card {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.success-card.show { display: block; }
.success-card .icon {
  font-size: 40px;
  color: var(--brass);
  margin-bottom: var(--space-md);
}
.success-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--bone);
  margin-bottom: var(--space-sm);
}
.success-card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--bone-soft);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
 *  CARDS & FEATURES
 * ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.feature {
  padding: var(--space-md);
  background: rgba(244, 239, 230, 0.02);
  border: 1px solid var(--brass-soft);
  border-radius: 2px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.feature .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--brass);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-sm);
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 12px;
}
.feature p {
  font-size: 14px;
  color: var(--bone-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
 *  COMING SOON BLOCK
 * ============================================================ */
.coming-soon {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}
.coming-soon .compass-deco {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  opacity: 0.6;
  color: var(--bone);
}
.coming-soon h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: var(--space-sm);
}
.coming-soon h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
}
.coming-soon p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--bone-soft);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

/* ============================================================
 *  FOOTER
 * ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(176, 141, 87, 0.15);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .brand-mark { width: 40px; height: 40px; margin-bottom: var(--space-sm); }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 6px;
}
.footer-brand-name em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--bone-mute);
  font-size: 15px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 13px;
  color: var(--bone-soft);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--brass); }

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

/* ============================================================
 *  UTILITY
 * ============================================================ */
.text-center { text-align: center; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.brass { color: var(--brass); }
.italic { font-style: italic; font-family: var(--font-serif); }

/* ============================================================
 *  ANNOUNCEMENT BAR  (admin: Content → Announcement Bar)
 * ============================================================ */
.promo-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--brass);
  color: var(--ink);
  padding: 9px 44px;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  text-align: center;
}
.promo-bar__inner { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.promo-bar__text { font-weight: 500; }
.promo-bar__link { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; white-space: nowrap; }
.promo-bar__link:hover { opacity: 0.8; }
.promo-bar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 4px;
}
.promo-bar__close:hover { opacity: 1; }
@media (max-width: 600px) {
  .promo-bar { font-size: 12.5px; padding: 8px 40px; }
}
