/* ========================================
   BLUEWAY CLOTHING — Global Styles
   ======================================== */

:root {
  --bg-primary: #0B0B0B;
  --bg-card: #141824;
  --bg-navy: #1A2A44;
  --text-cream: #F5F3EF;
  --text-gray: #8A8580;
  --text-light-gray: #6B6560;
  --accent-sage: #6B7B5E;
  --accent-brown: #9E6B4A;
  --border-navy: rgba(26, 42, 68, 0.5);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgb(255 255 255 / 91%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(12, 18, 32, 0.08);
}

.navbar.scrolled .navbar-logo,
.navbar.scrolled .nav-link {
  color: #000000;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  border-bottom-color: #000000;
}

.navbar.scrolled .hamburger span {
  background: #000000;
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 32px;
}

.navbar-logo {
  justify-self: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  /* color: var(--text-cream); */
  font-weight: 500;
}

.navbar-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.navbar-links-left {
  justify-self: start;
}

.navbar-links-right {
  justify-self: end;
}

.navbar-links-left li {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* color: var(--text-gray); */
  color: #ffffff;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav-link:hover, .nav-link.active {
  /* color: var(--text-cream); */
  border-bottom-color: var(--text-cream);
}

.nav-link-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.hamburgerDesktop {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburgerDesktop span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-cream);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburgerDesktop.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburgerDesktop.open span:nth-child(2) { opacity: 0; }
.hamburgerDesktop.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.desktop-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 82vw);
  flex-direction: column;
  /* justify-content: center; */
  gap: 20px;
  padding: 60px 32px 40px;
  background: #ffffff;
  border-right: 1px solid rgb(12 18 32 / 10%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 49;
}

.desktop-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  height: 100vh;
}

.desktop-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.desktop-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000000;
}

.desktop-close span:nth-child(1) {
  transform: rotate(45deg);
}

.desktop-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.desktop-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(12 18 32 / 12%);
}

.desktop-link:hover,
.desktop-link.active {
  border-bottom-color: #000000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  justify-self: end;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-cream);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  background: rgba(11,11,11,0.97);
  border-top: 1px solid var(--border-navy);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-navy);
  transition: color 0.2s;
}
.mobile-link:hover, .mobile-link.active { color: var(--text-cream); }

.navbar.scrolled .hamburgerDesktop span {
  background: #000000;
}

.navbar.scrolled .desktop-menu {
  background: #ffffff;
  border-color: rgb(12 18 32 / 10%);
}

.navbar.scrolled .desktop-link {
  color: #000000;
  border-bottom-color: rgb(12 18 32 / 12%);
}

.navbar.scrolled .desktop-link:hover,
.navbar.scrolled .desktop-link.active {
  border-bottom-color: #000000;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-cream {
  color: var(--text-cream);
  border-color: var(--text-cream);
}
.btn-cream:hover {
  background: var(--text-cream);
  color: var(--bg-primary);
}
.btn-sage {
  color: var(--accent-sage);
  border-color: var(--accent-sage);
}
.btn-sage:hover {
  background: var(--accent-sage);
  color: var(--text-cream);
}
.btn-brown {
  color: var(--accent-brown);
  border-color: var(--accent-brown);
}
.btn-brown:hover {
  background: var(--accent-brown);
  color: var(--text-cream);
}
.btn-dark {
  background: var(--bg-primary);
  color: var(--text-cream);
  border-color: var(--text-cream);
}
.btn-dark:hover {
  background: var(--text-cream);
  color: var(--bg-primary);
}

/* ========================================
   HERO — shared
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* parallax wrapper — JS translates this element */
.hero-parallax {
  position: absolute;
  inset: -18% 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(116, 116, 116, 0) 50%, rgba(11,11,11,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--text-cream);
  font-weight: 400;
}
.hero-tagline {
  margin-top: 20px;
  font-size: 14px;
      color: #e3e3e3;
  letter-spacing: 0.05em;
}

/* ========================================
   HOME PAGE
   ======================================== */
/* ========================================
   SPLIT HERO — Home page full-screen
   ======================================== */
.split-hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Vertical centre divider */
.split-hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(200, 195, 190, 0.5);
  z-index: 4;
  pointer-events: none;
}

.split-hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 48px 56px;
  text-decoration: none;
}

.split-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.split-hero-panel:hover .split-hero-bg { transform: scale(1.04); }

/* Subtle bottom-up gradient for text legibility */
.split-hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(235, 232, 226, 0.65) 0%, rgba(235, 232, 226, 0.15) 30%, transparent 55%); */
  pointer-events: none;
  z-index: 1;
}

.split-hero-content {
  position: relative;
  z-index: 2;
}
.split-hero-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}
.split-hero-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}
.split-hero-btn {
  display: inline-block;
  padding: 11px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.split-hero-panel:hover .split-hero-btn {
  background: #1A2A44;
  color: #ffffff;
}

/* Panel entrance animations */
.split-hero-alpha .split-hero-content {
  opacity: 0;
  animation: heroUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.split-hero-blueway .split-hero-content {
  opacity: 0;
  animation: heroUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* ── Light navbar (home page before scroll) ── */
.page-home .navbar:not(.scrolled) {
  background: transparent;
}
.page-home .navbar:not(.scrolled) .navbar-logo,
.page-home .navbar:not(.scrolled) .nav-link {
  color: #000000;
}
.page-home .navbar:not(.scrolled) .nav-link:hover,
.page-home .navbar:not(.scrolled) .nav-link.active {
  /* color: #ffffff; */
  color: #0c0c0c;
  /* border-bottom-color: #ffffff; */
  border-bottom-color: #000000;
}
.page-home .navbar:not(.scrolled) .hamburger span {
  background: #1A2A44;
}

.page-home .navbar:not(.scrolled) .hamburgerDesktop span {
  background: #1A2A44;
}

/* .page-alpha-nine .navbar:not(.scrolled) .navbar-logo,
.page-alpha-nine .navbar:not(.scrolled) .nav-link,
.page-blueway .navbar:not(.scrolled) .navbar-logo,
.page-blueway .navbar:not(.scrolled) .nav-link {
  color: #000000;
}

.page-alpha-nine .navbar:not(.scrolled) .nav-link:hover,
.page-alpha-nine .navbar:not(.scrolled) .nav-link.active,
.page-blueway .navbar:not(.scrolled) .nav-link:hover,
.page-blueway .navbar:not(.scrolled) .nav-link.active {
  border-bottom-color: #000000;
}

.page-alpha-nine .navbar:not(.scrolled) .hamburger span,
.page-blueway .navbar:not(.scrolled) .hamburger span {
  background: #000000;
} */


/* ========================================
   TAGLINE SECTION
   ======================================== */

/* ========================================
   COLLECTION SECTION
   ======================================== */
.collection-section {
  background: #ffffff;
  padding: 80px 24px 80px;
}
.collection-header {
  max-width: 1100px;
  margin: 0 auto 30px;
}
.collection-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 5px;
}
.collection-sub {
  font-size: 13px;
  color: #292929;
  letter-spacing: 0.01em;
}
.collection-sub .highlight-blueway { color: #9E6B4A; font-weight: 500; }
.collection-sub .highlight-alpha   { color: #6B7B5E; font-weight: 500; }

/* Grid layout — mirrors the screenshot */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
}
/* Row 1 left: spans 4 cols, 4 row-units (tall) */
.cg-tall {
  grid-column: span 4;
  /* grid-row: span 4; */
}
/* Row 1 right top & bottom: each spans 2 cols, 2 row-units */
.collection-grid .cg-item:nth-child(2),
.collection-grid .cg-item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}
/* Row 2: 2 items each 3 cols, 2 row-units */
.collection-grid .cg-item:nth-child(4),
.collection-grid .cg-item:nth-child(5) {
  grid-column: span 3;
  grid-row: span 2;
}
/* Row 3: 3 items each 2 cols, 1 row-unit (shorter) */
.cg-short {
  grid-column: span 2;
  grid-row: span 1;
}

.cg-item {
  overflow: hidden;
  background: #D8D5CF;
}
.cg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  /* border-radius: 10px; */
}
.cg-item:hover .cg-img { transform: scale(1.05); }

.tagline-section {
  background: #EDEAE4;
  padding: 120px 24px;
  text-align: center;
}
.tagline-inner {
  /* max-width: 820px; */
  margin: 0 auto;
}
.tagline-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9E6B4A;
  margin-bottom: 16px;
}
.tagline-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.tagline-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4A4540;
  max-width: 680px;
  margin: 0 auto;
}

.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  overflow: hidden;
  min-height: 480px;
  transition: flex-grow 0.4s ease;
}
.brand-card > * {
  position: relative;
  z-index: 1;
}
.brand-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  transform: scale(1.01);
}
.brand-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.72) 10%, rgba(11, 11, 11, 0.35) 100%);
}
.brand-card-alpha { background: var(--bg-card); }
.brand-card-blueway { background: var(--bg-navy); }

.brand-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-card-label.sage { color: var(--accent-sage); }
.brand-card-label.brown { color: var(--accent-brown); }

.brand-card-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: normal;
  line-height: 1.1;
  color: var(--text-cream);
  margin-bottom: 16px;
  font-weight: 400;
}
.brand-card-desc {
  font-size: 13px;
  color: var(--text-gray);
  max-width: 360px;
  margin-bottom: 24px;
}



/* Wholesale banner */
.wholesale-banner {
  /* background: var(--bg-navy); */
  background: #EDEAE4;
  padding: 80px 24px;
  text-align: center;
}
.wholesale-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.01em;
  /* color: var(--text-cream); */
  color: #000;
  margin-bottom: 16px;
  font-weight: 400;
}
.wholesale-banner p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
  background: var(--bg-navy);
  padding: 120px 24px 80px;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.02em;
  color: var(--text-cream);
  margin-bottom: 16px;
  font-weight: 400;
}
.contact-hero p {
  font-size: 14px;
  color: var(--text-gray);
  letter-spacing: 0.04em;
}

.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--text-cream);
  margin-bottom: 32px;
  font-weight: 400;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--bg-navy);
  color: var(--text-cream);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-sage);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg-card); }

.form-message {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  border-radius: 2px;
}
.form-message.success {
  background: rgba(107, 123, 94, 0.15);
  border: 1px solid var(--accent-sage);
  color: var(--accent-sage);
}
.form-message.error {
  background: rgba(158, 107, 74, 0.15);
  border: 1px solid var(--accent-brown);
  color: var(--accent-brown);
}

/* Contact Info */
.contact-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--text-cream);
  margin-bottom: 32px;
  font-weight: 400;
}
.contact-info-group { margin-bottom: 32px; }
.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.contact-info-value {
  font-size: 14px;
  color: var(--text-cream);
}
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent-sage); }
.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-navy);
  padding: 40px 24px;
  text-align: center;
  margin-top: 24px;
}
.map-placeholder p {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-gray);
  text-transform: uppercase;
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  padding: 24px;
}
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-navy);
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-card h1 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--text-cream);
  margin-bottom: 8px;
  font-weight: 400;
}
.login-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 32px;
}
.login-form .form-group { text-align: left; }
.login-divider {
  border: none;
  border-top: 1px solid var(--border-navy);
  margin: 24px 0;
}

/* ========================================
   404 PAGE
   ======================================== */
.not-found-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.not-found-card {
  background: var(--bg-card);
  border: 1px solid var(--border-navy);
  padding: 64px 48px;
  max-width: 480px;
  width: 100%;
}
.not-found-code {
  font-family: var(--font-display);
  font-size: 96px;
  letter-spacing: -0.02em;
  color: var(--text-cream);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.not-found-card h2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-copy {
  max-width: 240px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.5);
}

.footer-heading {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a,
.footer-connect a,
.footer-bottom a,
.footer-bottom span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-connect a:hover,
.footer-bottom a:hover {
  color: #000000;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-connect a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.footer-icon-sm {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  padding: 24px 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Page fade-in */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.45s ease both; }

/* Hero text entrance */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero word-by-word entrance — JS staggers the 'in-view' class */
.hero-word {
  display: inline-block;
  margin-right: 0.3em;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Home hero words start 40px below (per React GSAP: y:40) */
.home-hero-headline .hero-word {
  transform: translateY(40px);
}
/* Brand hero words start 20px below (per React GSAP: y:20) */
.hero-title .hero-word {
  transform: translateY(20px);
}
.hero-word.in-view {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-eyebrow { opacity: 0; animation: heroUp 0.8s cubic-bezier(0.22,1,0.36,1) 1.2s both; }
.home-hero-sub      { opacity: 0; animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 1.4s both; }
.home-hero-ctas     { opacity: 0; animation: heroUp 0.6s cubic-bezier(0.22,1,0.36,1) 1.6s both; }

.hero-label   { opacity: 0; animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.hero-tagline { opacity: 0; animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 1.2s  both; }

/* Scroll reveal */
.reveal,
.reveal-left,
.reveal-right {
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal       { opacity: 0; transform: translateY(44px); }
.reveal-left  { opacity: 0; transform: translateX(-44px); }
.reveal-right { opacity: 0; transform: translateX(44px); }
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0,0);
}

/* Stagger items */
.stagger-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.stagger-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar entrance */
.navbar {
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
              opacity 0.55s ease, transform 0.55s ease;
}

/* ========================================
   PLACEHOLDER IMAGES
   ======================================== */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 0 20px;
    /* padding: 0 0; */
  }

  .navbar-links {
    gap: 24px;
  }

  .hero {
    min-height: 560px;
  }

  .split-hero-panel {
    padding: 36px 28px 40px;
  }

  .tagline-section,
  .collection-section,
  .contact-hero,
  .wholesale-banner,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cg-tall { grid-column: span 4; grid-row: span 2; }
  .collection-grid .cg-item:nth-child(2),
  .collection-grid .cg-item:nth-child(3) { grid-column: span 2; }
  .collection-grid .cg-item:nth-child(4),
  .collection-grid .cg-item:nth-child(5) { grid-column: span 2; }
  .cg-short { grid-column: span 2; }
}


@media (max-width: 768px) {
  .navbar {
    height: 64px;
  }

  .navbar-inner {
    grid-template-columns: 1fr auto 1fr;
    height: 64px;
    padding: 0 16px;
  }

  .navbar-logo {
    font-size: 18px;
    grid-column: 2;
    justify-self: center;
  }

  .navbar-links { display: none; }
  .desktop-menu { display: none !important; }
  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .mobile-menu {
    padding: 16px 16px 24px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-tagline,
  .collection-sub,
  .tagline-body,
  .contact-hero p,
  .wholesale-banner p {
    font-size: 13px;
  }

  .split-hero { grid-template-columns: 1fr; }
  .split-hero::before { display: none; }
  .split-hero-panel {
    min-height: 50svh;
    padding: 28px 20px 32px;
  }
  .tagline-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tagline-headline br,
  .tagline-body br {
    display: none;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .collection-grid .cg-item {
    grid-row: span 1 !important;
  }
  .cg-tall { grid-column: span 2; grid-row: span 1; }
  .collection-grid .cg-item:nth-child(2),
  .collection-grid .cg-item:nth-child(3),
  .collection-grid .cg-item:nth-child(4),
  .collection-grid .cg-item:nth-child(5) { grid-column: span 1; }
  .cg-short { grid-column: span 1; }
  .brand-split { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section {
    padding: 56px 0;
  }
  .login-card,
  .not-found-card {
    padding: 36px 24px;
  }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .footer-grid,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    width: 100%;
    padding: 13px 18px;
  }

  .hero {
    min-height: 460px;
  }

  .split-hero-panel {
    min-height: 44svh;
    padding: 24px 16px 24px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .collection-grid .cg-item,
  .cg-tall,
  .cg-short,
  .collection-grid .cg-item:nth-child(2),
  .collection-grid .cg-item:nth-child(3),
  .collection-grid .cg-item:nth-child(4),
  .collection-grid .cg-item:nth-child(5) {
    grid-column: 1 / -1 !important;
    grid-row: span 3 !important;
    margin-bottom: 0.8rem;
  }

  .contact-hero {
    padding: 96px 16px 56px;
  }

  .footer-grid {
    padding: 56px 16px 40px;
  }

  .footer-bottom {
    padding: 20px 16px;
  }

  .not-found-code {
    font-size: 72px;
  }

  .editorial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-links {
    width: 100%;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
