/* ═══════════════════════════════════════════════════════════════
   QUEEN'S COLLECTION — CORE DESIGN SYSTEM
   style.css  |  The foundation of everything

   Contents:
   1. CSS Custom Properties (Brand Tokens)
   2. CSS Reset & Base
   3. Typography Scale
   4. Layout & Grid
   5. Utility Classes
   6. Announcement Bar
   7. Navigation Bar
   8. Mobile Menu
   9. Footer
   10. Kente Pattern Elements
   11. Responsive Breakpoints
═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (BRAND TOKENS)
   These are the DNA of Queen's Collection.
   Change here → changes everywhere.
───────────────────────────────────────── */
:root {

  /* ── Colours ── */
  --gold:          #C9A84C;   /* Primary gold */
  --gold-light:    #E8C97A;   /* Hover / highlight gold */
  --gold-pale:     #F5E9C8;   /* Very light gold tint */
  --gold-dim:      #8B6F35;   /* Muted gold for borders */
  --gold-dark:     #6B521F;   /* Deep gold for shadows */

  --black:         #0A0A0A;   /* True black (background) */
  --black-soft:    #111111;   /* Slightly lifted black */
  --black-card:    #161616;   /* Card backgrounds */
  --black-border:  #2A2A2A;   /* Subtle borders on dark */

  --white:         #FFFFFF;
  --white-90:      rgba(255, 255, 255, 0.90);
  --white-60:      rgba(255, 255, 255, 0.60);
  --white-30:      rgba(255, 255, 255, 0.30);
  --white-10:      rgba(255, 255, 255, 0.10);

  --gold-alpha-20: rgba(201, 168, 76, 0.20);
  --gold-alpha-10: rgba(201, 168, 76, 0.10);
  --gold-alpha-05: rgba(201, 168, 76, 0.05);

  /* ── African Accent Colours ── */
  --kente-red:     #8B2020;   /* Deep kente red */
  --kente-green:   #1A5C2E;   /* Forest kente green */
  --kente-rust:    #A0522D;   /* Earthy rust/terracotta */

  /* ── Typography ── */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --text-xs:    0.70rem;   /* 11.2px */
  --text-sm:    0.813rem;  /* 13px   */
  --text-base:  0.938rem;  /* 15px   */
  --text-md:    1.063rem;  /* 17px   */
  --text-lg:    1.25rem;   /* 20px   */
  --text-xl:    1.5rem;    /* 24px   */
  --text-2xl:   2rem;      /* 32px   */
  --text-3xl:   2.75rem;   /* 44px   */
  --text-4xl:   3.75rem;   /* 60px   */
  --text-5xl:   5rem;      /* 80px   */
  --text-6xl:   6.5rem;    /* 104px  */

  /* ── Spacing ── */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* ── Layout ── */
  --container-max:    1280px;
  --container-wide:   1440px;
  --container-narrow: 820px;

  /* ── Borders & Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --border-gold:     1px solid var(--gold-dim);
  --border-subtle:   1px solid var(--black-border);
  --border-white-10: 1px solid var(--white-10);

  /* ── Shadows ── */
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-nav:  0 2px 20px rgba(0, 0, 0, 0.6);

  /* ── Transitions ── */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    450ms;
  --dur-reveal:  800ms;

  /* ── Z-index Stack ── */
  --z-base:    1;
  --z-nav:     100;
  --z-drawer:  200;
  --z-modal:   300;
  --z-top:     9999;

  /* ── Navigation ── */
  --nav-height: 72px;
  --nav-height-mobile: 60px;
}


/* ─────────────────────────────────────────
   2. CSS RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--white-90);
  background-color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Clean links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

/* Responsive images */
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Clean buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: inherit;
}

/* Form elements */
input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--white-90);
}

/* Focus styles (accessibility) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Selection colour */
::selection {
  background: var(--gold);
  color: var(--black);
}


/* ─────────────────────────────────────────
   3. TYPOGRAPHY SCALE
───────────────────────────────────────── */

/* Display headings — Cormorant Garamond */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

h1, .h1 { font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl)); }
h2, .h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3, .h3 { font-size: clamp(var(--text-xl),  3vw, var(--text-3xl)); }
h4, .h4 { font-size: clamp(var(--text-lg),  2vw, var(--text-2xl)); }

/* Italic headlines (the Prada-style editorial flourish) */
em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
}

/* Section label — the small CAPS text above big headings */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Running body text */
.body-text {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.8;
}

/* Price text */
.price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold);
  letter-spacing: 0.03em;
}

.price--original {
  text-decoration: line-through;
  color: var(--white-30);
  font-size: var(--text-base);
}


/* ─────────────────────────────────────────
   4. LAYOUT & GRID
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* Responsive product grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Flexbox helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Section spacing */
.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section--sm {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--lg {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

/* Push content below fixed header */
.page-offset {
  padding-top: calc(var(--nav-height) + 40px);
}


/* ─────────────────────────────────────────
   5. UTILITY CLASSES
───────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--white-60); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.hidden  { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ─────────────────────────────────────────
   6. ANNOUNCEMENT BAR
───────────────────────────────────────── */
.announcement-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: calc(var(--z-nav) + 1);
}

.announcement-bar p { margin: 0; }


/* ─────────────────────────────────────────
   7. NAVIGATION BAR
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  /* We push it down by announcement bar height via JS */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 1px solid var(--gold-alpha-20);
  padding: 0 var(--space-6);
  gap: var(--space-4);
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow  var(--dur-slow) var(--ease-out);
}

/* Scrolled state — slightly lifted */
.navbar.is-scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
}

/* ── Logo ── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  gap: 1px;
  flex-shrink: 0;
}

.logo__queen {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
}

.logo__luxury {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--white-60);
  text-transform: uppercase;
}

/* ── Nav Link Groups ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex: 1;
}

.nav-links--left  { justify-content: flex-start; }
.nav-links--right { justify-content: flex-end; }

.nav-link {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-90);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

/* Gold underline on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

/* Dropdown caret */
.caret {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform var(--dur-base) var(--ease-out);
}

.has-dropdown:hover .caret { transform: rotate(180deg); }

/* ── Dropdown Menu ── */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-soft);
  border: var(--border-gold);
  min-width: 200px;
  padding: var(--space-3) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              visibility var(--dur-base);
  transform: translateX(-50%) translateY(-6px);
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.dropdown li a:hover {
  color: var(--gold);
  background: var(--gold-alpha-05);
}

/* ── Nav Icon Buttons ── */
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white-90);
  transition: color var(--dur-base);
  position: relative;
}

.nav-icon-btn:hover { color: var(--gold); }

/* Cart badge */
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast);
}

.cart-count.bounce { animation: cart-bounce 0.35s var(--ease-out); }

/* ── Hamburger Toggle (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 2);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white-90);
  transition: transform var(--dur-base), opacity var(--dur-base);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* ─────────────────────────────────────────
   8. MOBILE MENU
───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12) var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out),
              visibility var(--dur-slow);
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-nav-links li a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white-90);
  display: block;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--black-border);
  transition: color var(--dur-base), padding-left var(--dur-base);
}

.mobile-nav-links li a:hover {
  color: var(--gold);
  padding-left: var(--space-4);
}

.mobile-divider {
  font-size: var(--text-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}


/* ─────────────────────────────────────────
   9. FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--black-soft);
  border-top: var(--border-gold);
  margin-top: var(--space-24);
}

/* Decorative kente strip at footer top */
.footer-kente {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold)    0px, var(--gold)    20px,
    var(--black)   20px, var(--black)  25px,
    var(--kente-red) 25px, var(--kente-red) 40px,
    var(--black)   40px, var(--black)  45px,
    var(--kente-green) 45px, var(--kente-green) 60px,
    var(--black)   60px, var(--black)  65px,
    var(--gold)    65px, var(--gold)   80px,
    var(--black)   80px, var(--black)  85px
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: var(--space-12);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

/* Footer Brand Column */
.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--white-60);
  margin-bottom: var(--space-6);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 36px;
  height: 36px;
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--gold-dim);
  transition: all var(--dur-base);
  border-radius: var(--radius-sm);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Footer Columns */
.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links li a {
  font-size: var(--text-sm);
  color: var(--white-60);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--gold);
  padding-left: var(--space-2);
}

/* Newsletter */
.footer-newsletter-text {
  font-size: var(--text-sm);
  color: var(--white-60);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.newsletter-input {
  background: transparent;
  border: var(--border-gold);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
  color: var(--white-90);
  outline: none;
  transition: border-color var(--dur-base);
  border-radius: var(--radius-sm);
}

.newsletter-input::placeholder {
  color: var(--white-30);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: var(--space-5) 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--white-30);
  letter-spacing: 0.5px;
}

.footer-payments {
  display: flex;
  gap: var(--space-2);
}

.payment-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 8px;
  border: 1px solid var(--black-border);
  color: var(--white-30);
  border-radius: var(--radius-sm);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--white-30);
  transition: color var(--dur-fast);
}

.footer-legal a:hover { color: var(--gold); }


/* ─────────────────────────────────────────
   10. KENTE PATTERN ELEMENTS
   These decorative dividers echo African
   textile patterns between sections
───────────────────────────────────────── */
.kente-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) auto;
}

.kente-divider::before,
.kente-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dim) 20%,
    var(--gold) 50%,
    var(--gold-dim) 80%,
    transparent
  );
}

.kente-divider::before {
  max-width: 80px;
}
.kente-divider::after {
  max-width: 80px;
}

/* The central diamond motif */
.kente-divider--center {
  justify-content: center;
  max-width: 300px;
}

.kente-divider--center::after {
  content: '◆';
  font-size: 8px;
  color: var(--gold);
  flex: 0;
}

/* Small decorative divider */
.kente-divider--sm::before,
.kente-divider--sm::after {
  max-width: 40px;
}

/* Full-width kente stripe (for section separators) */
.kente-stripe {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold)      0, var(--gold)      16px,
    var(--black)     16px, var(--black)  20px,
    var(--kente-red) 20px, var(--kente-red) 32px,
    var(--black)     32px, var(--black)  36px,
    var(--kente-green) 36px, var(--kente-green) 48px,
    var(--black)     48px, var(--black)  52px
  );
  opacity: 0.6;
}

/* ── Hero Placeholder (removed in Stage 2) ── */
.hero-placeholder {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at center top, rgba(201,168,76,0.08) 0%, transparent 60%),
    var(--black);
  padding: var(--space-24) var(--space-6);
  margin-top: calc(var(--nav-height) + 40px); /* offset for fixed nav + announcement bar */
}

.hero-placeholder__inner {
  max-width: 700px;
}

.hero-placeholder__label {
  font-size: var(--text-xs);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--space-6);
}

.hero-placeholder__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-placeholder__sub {
  font-size: var(--text-sm);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: var(--space-8);
}


/* ─────────────────────────────────────────
   11. RESPONSIVE BREAKPOINTS
───────────────────────────────────────── */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  :root {
    --nav-height: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .footer-col--newsletter {
    grid-column: span 2;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  :root {
    --nav-height: var(--nav-height-mobile);
  }

  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }

  /* Show hamburger */
  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 0 var(--space-4);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .footer-col--newsletter {
    grid-column: span 1;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .logo__queen { font-size: 1.15rem; letter-spacing: 4px; }
}
