:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: rgba(255,255,255,0.03);
  --text: #f5f5f5;
  --muted: #a7a7a7;
  --line: rgba(255,255,255,0.1);
  --line-2: rgba(255,255,255,0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 32px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top, #111 0%, #060606 36%, #030303 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { min-height: 100vh; padding: 20px 0 48px; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.soft-panel { background: var(--panel-2); }
.eyebrow {
  color: #d0d0d0;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 8px 24px;
}
.brand { display: inline-flex; gap: 12px; align-items: center; font-weight: 700; letter-spacing: 0.14em; }
.brand-mark { width: 18px; height: 18px; border-radius: 999px; background: linear-gradient(135deg, #fff, #666); box-shadow: 0 0 20px rgba(255,255,255,.16); }
.nav { display: flex; gap: 28px; }
.nav a, .footer a { color: var(--muted); transition: .25s ease; }
.nav a:hover, .footer a:hover, .text-link:hover { color: var(--text); }
.nav-actions { display: flex; gap: 14px; align-items: center; }
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 20px; border-radius: 999px;
  background: linear-gradient(180deg, #f7f7f7, #d7d7d7); color: #111; font-weight: 700;
}
.pill-btn.ghost { background: transparent; color: #f5f5f5; border: 1px solid var(--line-2); }
.menu-btn {
  width: 46px; height: 46px; display: none; flex-direction: column; justify-content: center; gap: 6px;
  border-radius: 999px; background: transparent; border: 1px solid var(--line-2); cursor: pointer;
}
.menu-btn span { width: 18px; height: 1.5px; background: #fff; display: block; margin: 0 auto; }
.mobile-panel {
  display: none; width: min(1180px, calc(100% - 32px)); margin: 0 auto 16px; padding: 14px;
  background: #090909; border: 1px solid var(--line); border-radius: 24px;
}
.mobile-panel.open { display: grid; gap: 10px; }
.hero, .models-hero {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 28px; padding: 34px;
  overflow: hidden;
}
.hero-copy h1, .models-hero h1 {
  margin: 0; line-height: .88; font-size: clamp(52px, 9vw, 120px); letter-spacing: -0.06em;
}
.hero-copy h1 span { font-family: 'Cormorant Garamond', serif; font-style: italic; letter-spacing: -0.03em; }
.hero-text, .models-hero p { max-width: 560px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 34px; }
.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats div { min-width: 120px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.02); }
.hero-stats strong { display: block; font-size: 28px; margin-bottom: 6px; }
.hero-stats span { color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-grid-lines {
  position: absolute; inset: -12% auto auto -18%; width: 78%; height: 90%; pointer-events: none;
  background: repeating-linear-gradient(120deg, rgba(255,255,255,.07), rgba(255,255,255,.07) 2px, transparent 2px, transparent 18px);
  filter: blur(0.2px); opacity: .35;
}
.hero-card {
  position: absolute; border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
}
.hero-card-large { right: 0; top: 60px; width: 86%; }
.hero-card-small { left: 0; bottom: 18px; width: 52%; padding: 24px; min-height: 180px; display: grid; align-content: end; }
.ring-badge {
  position: absolute; right: -14px; top: 22px; width: 116px; height: 116px; border-radius: 999px;
  display: grid; place-items: center; font-size: 18px; font-weight: 700; color: white;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), rgba(255,145,145,.25), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px);
}
.section { padding: 82px 0 0; }
.section-heading { display: flex; align-items: end; gap: 18px; justify-content: space-between; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-size: clamp(28px, 5vw, 54px); letter-spacing: -0.05em; }
.section-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.25), transparent); margin-bottom: 12px; }
.feature-grid { display: grid; grid-template-columns: 0.95fr 1.1fr 0.85fr; gap: 22px; align-items: stretch; }
.feature-meta, .feature-note { padding: 28px; }
.feature-product { padding: 26px; display: grid; gap: 18px; }
.feature-product img { aspect-ratio: 1 / 1.05; width: 100%; object-fit: cover; }
.swatches { display: flex; gap: 14px; margin-bottom: 26px; }
.swatch { width: 22px; height: 22px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 0 18px rgba(255,255,255,.08); }
.sand { background: #e4c8af; } .stone { background: #d9c4b5; } .mint { background: #4ed3c2; }
.feature-copy-block h3, .product-card h3, .journal-item h3, .model-card h3, .trend-card h3 { margin: 0 0 8px; font-size: 24px; }
.feature-copy-block p, .feature-note p, .card-copy p, .journal-item p, .model-card p, .footer p, .footer a { color: var(--muted); line-height: 1.7; }
.size-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.size-pills button {
  border-radius: 999px; min-width: 54px; min-height: 42px; color: #e5e5e5; background: transparent; border: 1px solid var(--line-2);
}
.size-pills .active { background: #fff; color: #111; font-weight: 700; }
.product-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 10px 14px 10px 18px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line);
}
.text-link { color: #f0f0f0; font-weight: 600; }
.trending-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; }
.trend-card.large { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; padding: 26px; }
.trend-card img { width: 100%; border-radius: 24px; }
.trend-stack { display: grid; gap: 22px; }
.trend-mini { padding: 14px; }
.trend-mini img { border-radius: 20px; width: 100%; }
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { padding: 16px; }
.product-card.featured { transform: translateY(18px); }
.product-card img, .journal-visual img, .model-card img { width: 100%; border-radius: 22px; background: #111; }
.product-card div { padding: 14px 6px 2px; }
.product-card p { color: #d7d7d7; margin: 0; font-weight: 600; }
.journal-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
.journal-list { display: grid; gap: 16px; }
.journal-item { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 20px; align-items: start; }
.journal-item span { font-size: 22px; color: #fff; font-weight: 800; }
.cta { margin-top: 84px; padding: 34px; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer {
  display: grid; grid-template-columns: 1.4fr repeat(3, .8fr); gap: 22px; margin-top: 28px; padding: 28px;
}
.footer h4, .footer h3 { margin-top: 0; }
.footer > div { display: grid; gap: 10px; align-content: start; }
.models-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.model-card { padding: 14px; }
.model-card div { padding: 16px 6px 8px; }
@media (max-width: 1080px) {
  .hero, .models-hero, .feature-grid, .trending-grid, .journal-grid, .cta, .footer { grid-template-columns: 1fr; }
  .hero-card-large, .hero-card-small { position: relative; width: 100%; right: auto; left: auto; top: auto; bottom: auto; }
  .hero-visual { min-height: auto; display: grid; gap: 18px; }
  .ring-badge { right: 12px; top: 12px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .desktop-nav, .nav-actions .ghost { display: none; }
  .menu-btn { display: flex; }
  .hero-copy h1, .models-hero h1 { font-size: clamp(42px, 14vw, 82px); }
  .collection-grid, .models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shell { padding-top: 10px; }
  .container { width: min(100% - 20px, 1180px); }
  .topbar { padding-bottom: 16px; }
  .hero, .models-hero, .feature-meta, .feature-note, .feature-product, .trend-card.large, .cta, .footer { padding: 20px; }
  .hero-stats { display: grid; grid-template-columns: 1fr; }
  .journal-item { grid-template-columns: 42px 1fr; }
  .collection-grid, .models-grid { grid-template-columns: 1fr; }
  .section { padding-top: 60px; }
}
