/* Fonts loaded via HTML <link> tags for non-blocking load */

@font-face {
  font-family: 'NymphaTrial';
  src: url('../fonts/NymphaTrial-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --space-blue: #021b40;
  --platinum-dark: #626363;
  --platinum-light: #e9e9e9;
  --yale-blue: #155184;
  --cornflower: #708ec8;
  --stellar-lime: #f7d263;
  --nebula-grey: #626363;
  --lunar-mist: #fffcfc;
  --platinum-gradient: linear-gradient(90deg, #626363 0%, #e9e9e9 30%, #e9e9e9 70%, #626363 100%);
  --font-title: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sub: 'Quicksand', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Quicksand', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --nav-height: 80px;
  --max-width: 1280px;
  --section-pad: 120px 5vw;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--space-blue);
  color: var(--lunar-mist);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--space-blue); }
::-webkit-scrollbar-thumb { background: var(--platinum-dark); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.display {
  font-family: 'NymphaTrial', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.08em;
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.subtitle {
  font-family: var(--font-sub);
  color: #a8c0e8;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 56px);
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}

p {
  font-family: var(--font-body);
  color: rgba(255,252,252,0.92);
  line-height: 1.9;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }

/* ─── Layout ─── */
.max-w { max-width: var(--max-width); margin: 0 auto; }

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}

nav.scrolled {
  background: rgba(2, 27, 64, 0.97);
  border-bottom: 1px solid rgba(98,99,99,0.3);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'NymphaTrial', Georgia, serif;
  font-size: 28px;
  letter-spacing: 0.16em;
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,252,252,0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--cornflower);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--lunar-mist); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--lunar-mist); }
.nav-links a.active::after { width: 100%; background: var(--stellar-lime); }

.nav-cta {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(112,142,200,0.4);
  padding: 10px 24px;
  color: var(--cornflower) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--yale-blue) !important;
  border-color: var(--yale-blue) !important;
  color: var(--lunar-mist) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--platinum-light);
  transition: all 0.3s ease;
}

/* ─── Hero (Home) ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--nav-height) 5vw 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(21,81,132,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(112,142,200,0.06) 0%, transparent 60%);
}

.star-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star-field .star {
  position: absolute;
  width: 1px;
  height: 1px;
  background: rgba(233,233,233,0.5);
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cornflower);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(112,142,200,0.4);
}

.hero-display { margin-bottom: 32px; }

.hero-tagline {
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,252,252,0.72);
  margin-bottom: 56px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn-primary {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--yale-blue);
  color: var(--lunar-mist);
  padding: 16px 40px;
  border: 1px solid var(--yale-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--cornflower);
  border-color: var(--cornflower);
}

.btn-outline {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,252,252,0.88);
  padding: 16px 40px;
  border: 1px solid rgba(233,233,233,0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--platinum-light);
  color: var(--lunar-mist);
}

.btn-text {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8c0e8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
  cursor: pointer;
}

.btn-text:hover { gap: 16px; }

.btn-text::after {
  content: '→';
  font-size: 14px;
}

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--platinum-gradient);
  margin: 24px auto;
}

.divider-full {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98,99,99,0.3), transparent);
  margin: 0;
}

/* ─── Scroll indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(112,142,200,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Section base ─── */
section {
  padding: var(--section-pad);
  position: relative;
}

.section-header {
  margin-bottom: 72px;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 80px) 5vw 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(98,99,99,0.2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(21,81,132,0.1) 0%, transparent 70%);
}

/* ─── Card grid ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(98,99,99,0.2);
}

.card-grid > * {
  background: var(--space-blue);
}

/* ─── Collection cards ─── */
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  background: rgba(21,81,132,0.15);
}

.collection-card:hover .collection-card-bg {
  transform: scale(1.03);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,27,64,0.9) 0%, rgba(2,27,64,0.2) 60%, transparent 100%);
}

.collection-card-content {
  position: relative;
  z-index: 2;
}

.collection-card-tag {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stellar-lime);
  margin-bottom: 10px;
}

.collection-card h3 {
  font-size: clamp(22px, 3vw, 30px);
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.collection-card p {
  font-size: 13px;
  color: rgba(255,252,252,0.55);
  margin-bottom: 20px;
}

/* ─── Feature row ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  aspect-ratio: 4/5;
  background: rgba(21,81,132,0.08);
  border: 1px solid rgba(98,99,99,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual svg {
  width: 60%;
  height: 60%;
  opacity: 0.15;
}

/* ─── Marquee ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(98,99,99,0.2);
  border-bottom: 1px solid rgba(98,99,99,0.2);
  padding: 20px 0;
  background: rgba(21,81,132,0.04);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,252,252,0.6);
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.marquee-item::after {
  content: '✦';
  color: var(--stellar-lime);
  font-size: 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Stat strip ─── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(98,99,99,0.2);
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(98,99,99,0.2);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 60px);
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8c0e8;
  font-weight: 500;
}

/* ─── Process steps ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(98,99,99,0.2);
}

.process-step {
  padding: 48px 32px;
  border-right: 1px solid rgba(98,99,99,0.2);
  position: relative;
}

.process-step:last-child { border-right: none; }

.step-number {
  font-family: var(--font-title);
  font-size: 60px;
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,252,252,0.95);
  margin-bottom: 12px;
  font-weight: 600;
}

/* ─── Tier cards ─── */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(98,99,99,0.2);
}

.tier-card {
  background: var(--space-blue);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--platinum-gradient);
}

.tier-badge {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(168,192,232,0.5);
  padding: 6px 16px;
  display: inline-block;
  color: #a8c0e8;
  margin-bottom: 32px;
}

.tier-name {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 40px);
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.tier-price {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--stellar-lime);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.tier-features {
  list-style: none;
  margin-bottom: 48px;
}

.tier-features li {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(255,252,252,0.88);
  padding: 10px 0;
  border-bottom: 1px solid rgba(98,99,99,0.25);
  display: flex;
  gap: 12px;
  align-items: center;
}

.tier-features li::before {
  content: '◆';
  font-size: 6px;
  color: #a8c0e8;
  flex-shrink: 0;
}

/* ─── Education accordion ─── */
.edu-item {
  border-bottom: 1px solid rgba(98,99,99,0.25);
}

.edu-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  color: var(--lunar-mist);
}

.edu-trigger-title {
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 24px);
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edu-trigger-icon {
  font-family: var(--font-sub);
  font-size: 20px;
  color: var(--cornflower);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 24px;
}

.edu-trigger[aria-expanded="true"] .edu-trigger-icon {
  transform: rotate(45deg);
}

.edu-panel {
  display: none;
  padding: 0 0 36px;
}

.edu-panel.open { display: block; }

.edu-panel p {
  margin-bottom: 16px;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(98,99,99,0.15);
  margin-top: 24px;
}

.edu-grid-item {
  background: rgba(21,81,132,0.08);
  padding: 24px 20px;
}

.edu-grid-item-label {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8c0e8;
  margin-bottom: 8px;
  font-weight: 600;
}

.edu-grid-item-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,252,252,0.92);
  line-height: 1.7;
}

/* ─── Contact form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8c0e8;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(21,81,132,0.05);
  border: 1px solid rgba(98,99,99,0.3);
  color: var(--lunar-mist);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23708ec8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  background-color: rgba(21,81,132,0.05);
  cursor: pointer;
}

.form-select option {
  background: #021b40;
  color: var(--lunar-mist);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cornflower);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,252,252,0.2);
  font-size: 13px;
}

/* ─── Contact info ─── */
.contact-info-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(98,99,99,0.2);
}

.contact-info-label {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8c0e8;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,252,252,0.92);
}

/* ─── Page sections visibility ─── */
/* Pages — JS controls display via both class and inline style */
.page { display: none; }
.page.active { display: block; }
/* Home visible by default until JS runs */
#page-home { display: block; }

/* ─── Footer ─── */
footer {
  padding: 80px 5vw 40px;
  border-top: 1px solid rgba(98,99,99,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,252,252,0.72);
  max-width: 280px;
  line-height: 1.8;
}

.footer-col-title {
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8c0e8;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-sub);
  font-size: 14px;
  color: rgba(255,252,252,0.72);
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--lunar-mist); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(98,99,99,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,252,252,0.55);
}

/* ─── Diamond SVG placeholder ─── */
.diamond-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Fade-in animation ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile nav overlay ─── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,27,64,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: var(--font-title);
  font-size: 32px;
  background: var(--platinum-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  :root { --section-pad: 72px 5vw; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .feature-visual { aspect-ratio: 4/3; }

  .tier-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(98,99,99,0.2); }
  .edu-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: 40vh; padding: calc(var(--nav-height) + 48px) 5vw 56px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 5vw; --nav-height: 64px; }

  /* Nav */
  .nav-logo { font-size: 22px; }

  /* Typography scale down */
  .display { font-size: clamp(36px, 11vw, 64px); }
  .section-title { font-size: clamp(26px, 7vw, 40px); }

  /* Hero */
  .hero { padding-top: var(--nav-height); }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 16px 20px; }
  .hero-eyebrow { font-size: 10px; }

  /* Lookbook captions always visible on mobile */
  .lb-cell-caption { opacity: 1 !important; transform: none !important; }
  .lb-full-caption { padding: 40px 5vw 32px; }

  /* Grids */
  .card-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .tier-card { padding: 40px 28px; }

  /* Stat strip */
  .stat-item { padding: 32px 20px; }
  .stat-number { font-size: clamp(28px, 8vw, 44px); }

  /* Process steps */
  .process-step { padding: 32px 24px; }
  .step-number { font-size: 44px; }

  /* Contact */
  .contact-grid { gap: 40px; }

  /* Footer */
  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Page hero */
  .page-hero { min-height: 36vh; padding: calc(var(--nav-height) + 40px) 5vw 48px; }

  /* About name section */
  .divider { margin: 16px auto; }

  /* Lookbook */
  .lb-hero { grid-template-columns: 1fr; min-height: auto; }
  .lb-hero-img { height: 75vw; min-height: 280px; }
  .lb-hero-text { padding: 40px 5vw 56px; }
  .lb-duo, .lb-duo.asymmetric, .lb-duo.asymmetric-r { grid-template-columns: 1fr; }
  .lb-full { height: 80vw; min-height: 260px; }
  .lb-cell.portrait { aspect-ratio: 3/4; }
  .lb-piece-name { font-size: 16px !important; }
  .lb-piece-desc { font-size: 12px; }

  /* Cuts showcase */
  .cuts-showcase { grid-template-columns: 1fr 1fr; }
  .cut-item { padding: 20px 12px 18px; }

  /* Edu grid */
  .edu-trigger-title { font-size: clamp(15px, 4vw, 20px); }

  /* Home preview grid */
  .home-preview-grid { grid-template-columns: 1fr !important; }

  /* Marquee */
  .marquee-item { font-size: 10px; padding: 0 28px; gap: 28px; }

  /* Instagram strip */
  .ig-strip { grid-template-columns: repeat(2, 1fr) !important; }

  /* Misc spacing */
  section { padding: 56px 5vw; }
  .max-w { padding: 0; }
}

@media (max-width: 380px) {
  .display { font-size: 32px; }
  .section-title { font-size: 24px; }
  .cuts-showcase { grid-template-columns: 1fr; }
  .lb-hero-img { height: 85vw; }
}
