/* Lucerra — shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;900&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');

:root {
  --grey: #707070; /* darkened from #8c8c8c — the lighter tone failed WCAG AA contrast on white for small label text */
  --grey-dark: #5c5c5c;
  --grey-light: #d8d8d8;
  --grey-bg: #f2f1ef;
  --white: #ffffff;
  --black: #141414;
  --line: rgba(20,20,20,0.1);
  --max: 1240px;

  /* premium easing — ease-out-expo, use for anything that should feel considered */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --stagger-step: 80ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Respect OS-level reduced motion — kill everything non-essential */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .fade-in img { transform: none !important; }
}

body {
  margin: 0;
  font-family: 'Archivo', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;

  /* Page-enter transition — main.js (or the inline failsafe) adds .page-ready fast */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

html.page-ready body {
  opacity: 1;
  transform: translateY(0);
}

/* Page-exit — added just before navigating away on internal link clicks */
html.page-leaving body {
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* Skip link — hidden until keyboard-focused, jumps past nav to <main> */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* Announcement bar */
.announce {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 12px;
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
              border-color 0.5s var(--ease);
}

/* Pages without a hero are always in the "solid" state (JS adds .scrolled on load) */
header.site.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

/* Over a hero, start fully transparent so the header sits on the image/gradient */
header.site.transparent-capable:not(.scrolled) {
  border-bottom-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--grey-dark);
  transition: color 0.35s var(--ease);
}
.logo:hover { color: var(--black); }
.logo:focus-visible {
  color: var(--black);
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.logo-mark {
  height: 30px;
  width: auto;
  display: block;
}

/* Footer lockup — same mark, slightly smaller, sits above the tagline */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-logo .logo-mark { height: 22px; }
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--grey-dark);
}
.footer-logo:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

/* LC mark glow — tri-color bloom pulling from the heart-camo colorway
   (pink / blue / grey) rather than a flat brand tint. Icon only, so the
   wordmark stays clean and the mark itself is what lights up. */
.lc-logo {
  transition: filter 0.35s var(--ease);
}

@media (hover: hover) {
  .lc-logo:hover {
    filter:
      drop-shadow(0 0 8px #4A90D9)
      drop-shadow(0 0 8px #E88FB3)
      drop-shadow(0 0 8px #A0A0A0);
  }
}

/* Keyboard-focus parity — same glow, since focus can't rely on hover media */
.logo:focus-visible .lc-logo,
.footer-logo:focus-visible .lc-logo {
  filter:
    drop-shadow(0 0 8px #4A90D9)
    drop-shadow(0 0 8px #E88FB3)
    drop-shadow(0 0 8px #A0A0A0);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 6px;
}

/* Animated underline — grows from the left rather than appearing */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--grey-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover {
  color: var(--grey-dark);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active::after {
  transform: scaleX(1);
  background: var(--black);
}

.nav-icons {
  display: flex;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.burger {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.burger:active { transform: scale(0.9); }

/* Mobile menu — slides/fades rather than snapping (JS toggles .mobile-open) */
@media (max-width: 640px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 8px 32px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;

    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .nav-links.mobile-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Parallax layer — sits behind the content, moves at ~0.35x scroll speed via JS */
.hero-bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0) 65%),
    url('hero-wall.jpg');
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}

/* Bottom fade — pinned to the hero itself (not the parallax layer) so the
   wall art always dissolves into solid white right where the next section begins. */
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.88) 72%,
    #ffffff 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 64px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.92;
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  overflow: hidden;
}

/* Letter-stagger reveal — each .letter fades + rises into place */
.hero h1 .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero h1.revealed .letter {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  max-width: 320px;
  text-align: right;
}

.hero-sub p {
  font-size: 14px;
  color: var(--grey-dark);
  margin: 0 0 18px;
  line-height: 1.5;
}

/* Generic hero-content stagger (tagline, CTA) driven by main.js */
[data-hero-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-hero-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator — gentle continuous float */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 20px;
  height: 32px;
  border: 1px solid var(--grey-dark);
  border-radius: 12px;
  opacity: 0.55;
}
.scroll-cue::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--grey-dark);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cue-float 1.8s ease-in-out infinite;
}
@keyframes cue-float {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 10px); opacity: 0.3; }
}

.btn {
  position: relative;
  display: inline-block;
  padding: 14px 30px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease),
              transform 0.25s var(--ease);
}

/* Fill wipes in from the left on hover instead of a hard color swap */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--black); }

.btn:active { transform: scale(0.96); }

.btn-outline {
  background: transparent;
  color: var(--black);
}
.btn-outline::before { background: var(--black); }
.btn-outline:hover { color: var(--white); }

/* Keyboard focus — styled ring, not the default browser outline */
.btn:focus-visible,
.nav-links a:focus-visible,
.form-row button:focus-visible,
.dot:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.form-row button.is-confirmed {
  color: var(--grey-dark);
}

/* Section headings */
.section {
  /* padding-top/bottom only — a shorthand `padding: 88px 0` here would zero out
     .wrap's left/right padding on any element carrying both classes (equal
     specificity, later in the cascade), which is exactly what was pinning
     headings/tags flush to the screen edge on mobile with no side margin. */
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section-head h2 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}

.section-head .tag {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  position: relative;
}

.card .imgwrap {
  position: relative;
  background: var(--grey-bg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transition: box-shadow 0.5s var(--ease);
}

.card:hover .imgwrap {
  box-shadow: 0 24px 48px -16px rgba(20,20,20,0.28);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.card:hover img { transform: scale(1.045); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  z-index: 2;
}

/* Quick action — slides/fades up from the bottom of the card on hover (desktop only) */
.quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 14px 16px;
  background: linear-gradient(0deg, rgba(20,20,20,0.82) 0%, rgba(20,20,20,0) 100%);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.quick-add a {
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  border: 1px solid rgba(255,255,255,0.7);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.quick-add a:hover {
  background: var(--white);
  color: var(--black);
}

@media (hover: hover) {
  .card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Touch devices: keep it visible but understated rather than requiring a hover that can't happen */
@media (hover: none) {
  .quick-add { position: static; background: none; opacity: 1; transform: none; padding: 10px 0 0; }
  .quick-add a { border-color: var(--line); color: var(--black); }
}

.card .meta {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card .name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.card .colors {
  font-size: 12px;
  color: var(--grey);
}

.swatches {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}

/* About / story split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img { width: 100%; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.split h2, .stack h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.split p, .stack p {
  color: var(--grey-dark);
  line-height: 1.7;
  font-size: 15px;
  margin: 0 0 16px;
}

/* Editorial carousel — auto-advancing crossfade above the lookbook grid */
.editorial-carousel {
  position: relative;
  height: 70vh;
  min-height: 420px;
  max-height: 720px;
  background: var(--grey-bg);
  overflow: hidden;
  margin-bottom: 64px;
}

.editorial-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.editorial-carousel .slide.active {
  opacity: 1;
}
.editorial-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-carousel .caption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.editorial-carousel .dots {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.editorial-carousel .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.editorial-carousel .dot.active {
  background: var(--white);
  transform: scale(1.15);
}

/* Lookbook */
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.lookbook-grid .tall { grid-row: span 2; }

.lookbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--grey-bg);
}

/* Band / CTA */
.band {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}

.band h2 {
  font-size: clamp(30px, 5vw, 56px);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 22px;
}

.band p {
  color: #bbb;
  margin: 0 0 28px;
}

.band .btn {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.band .btn::before { background: var(--black); }
.band .btn:hover { color: var(--white); }

/* FAQ */
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--grey);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  color: var(--grey-dark);
  font-size: 15px;
  line-height: 1.7;
  margin: 14px 0 0;
  max-width: 640px;
}

/* Legal pages (privacy / terms) */
.legal-content {
  max-width: 760px;
}
.legal-content h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 36px 0 12px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--grey-dark);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal-content .updated {
  color: var(--grey);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-list li:last-child { border-bottom: 1px solid var(--line); }

.contact-list .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.contact-list .value {
  font-size: 16px;
  font-weight: 600;
}

/* Waitlist form */
.form-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--black);
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.form-row input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  padding: 8px 0;
}

.form-row button {
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  font-size: 13px;
  color: var(--grey-dark);
  margin: 10px 0 0;
  min-height: 1em;
}
.form-status.error { color: #b3402f; }

/* Screen-reader-only utility — visually hidden but still announced */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--grey);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 10px; font-size: 14px; }

.footer-grid p { color: var(--grey-dark); font-size: 14px; line-height: 1.6; max-width: 260px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
}

/* Placeholder note banner (dev-only helper, remove when real content lands) */
.dev-note {
  background: #fff8e8;
  border: 1px dashed #d8c084;
  color: #6b5527;
  font-size: 12px;
  padding: 10px 14px;
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Fade in on scroll — reveals once, then stays. Delay is set inline per-child by main.js for stagger. */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image scale-in, pairs with .fade-in on the same element or a child */
.fade-in .imgwrap img,
.fade-in.img-scale {
  transform: scale(1.06);
  transition: transform 0.9s var(--ease), opacity 0.5s var(--ease);
}
.fade-in.visible .imgwrap img,
.fade-in.visible.img-scale {
  transform: scale(1);
}
.fade-in.img-scale { overflow: hidden; }

/* Lazy image fade — swapped in by main.js once the image finishes loading */
img.img-lazy {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
img.img-lazy.loaded {
  opacity: 1;
}

/* Cookie consent — injected by main.js as a centered modal + dim backdrop so
   it's genuinely one of the first things a visitor sees, not an easy-to-miss
   strip at the bottom of the screen. */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(2px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  max-width: 480px;
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 32px 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);

  transform: translateY(14px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.cookie-overlay.visible .cookie-modal {
  transform: translateY(0) scale(1);
}

.cookie-modal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}
.cookie-modal p a { color: var(--white); text-decoration: underline; }

.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.cookie-modal button {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie-modal button.accept {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.cookie-modal button:hover { background: rgba(255,255,255,0.15); }
.cookie-modal button.accept:hover { background: rgba(255,255,255,0.85); color: var(--black); }

@media (max-width: 480px) {
  .cookie-overlay { padding: 16px; }
  .cookie-modal { padding: 24px 20px; }
}

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-grid .tall { grid-row: auto; }
}

@media (max-width: 640px) {
  .nav-icons { display: none; }
  .burger { display: block; }

  /* More breathing room on small screens — less edge-to-edge padding,
     so content isn't pressed against the sides */
  .wrap { padding: 0 22px; }
  .nav { padding: 14px 22px; }
  .hero-inner { padding: 0 22px 48px; }

  /* Single-column product grid — two cramped columns with wrapping
     product names read as "squished"; one full-width card per row
     gives the image and text room to breathe */
  .grid { grid-template-columns: 1fr; gap: 24px; }

  .hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-sub { text-align: left; max-width: 100%; }

  /* Scale the wordmark down a bit further so it doesn't crowd narrow
     phones (128px desktop max was never meant to hit a 6-7px letter
     margin on a 375px-wide screen) */
  .hero h1 { font-size: clamp(38px, 13.5vw, 128px); }

  .logo { font-size: 23px; gap: 8px; }
  .logo-mark { height: 26px; }

  /* Carousel shouldn't eat the whole first screen on mobile */
  .editorial-carousel { height: 50vh; min-height: 320px; margin-bottom: 40px; }

  /* Stack the footer instead of cramming 4 columns into 2 narrow ones */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid p { max-width: 100%; }

  .section { padding-top: 56px; padding-bottom: 56px; }
  .section-head { flex-wrap: wrap; gap: 8px; }
}
