:root {
  --bg: #0e0e0e;
  --bg-surface: #161616;
  --bg-card: #1c1c1c;
  --fg: #f0ece4;
  --fg-muted: #8a857d;
  --fg-dim: #4a4741;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-dim: rgba(201, 169, 110, 0.12);
  --border: rgba(240, 236, 228, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --gutter: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, transparent 30%, rgba(28,28,28,0.6) 100%);
  pointer-events: none;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero__stats {
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__line {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto 48px;
}

.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.manifesto__body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ── COLLECTIONS ── */
.collections {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}

.collections__header {
  margin-bottom: 64px;
}

.collections__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.collections__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.collections__card {
  position: relative;
  padding: 48px 40px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg-card);
}

.collections__card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.collections__card--watches .collections__card-bg {
  background: radial-gradient(circle at 80% 20%, #c9a96e 0%, transparent 60%);
}
.collections__card--eyewear .collections__card-bg {
  background: radial-gradient(circle at 80% 20%, #a0c9b8 0%, transparent 60%);
}
.collections__card--jewelry .collections__card-bg {
  background: radial-gradient(circle at 80% 20%, #e8d4a8 0%, transparent 60%);
}

.collections__card-content {
  position: relative;
  z-index: 1;
}

.collections__card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
}

.collections__card-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}

.collections__card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.collections__card-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collections__card-facts li {
  font-size: 12px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.collections__card-facts li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.philosophy__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy__photo-frame {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
}

.philosophy__photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
}

.philosophy__photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy__watch-face {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 3px solid var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy__watch-markers {
  position: absolute;
  inset: 0;
}

.philosophy__watch-marker {
  position: absolute;
  width: 2px;
  height: 8px;
  background: var(--gold-dim);
  top: 8px;
  left: 50%;
  transform-origin: 50% 92px;
}

.philosophy__watch-marker:nth-child(1) { transform: rotate(0deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(2) { transform: rotate(30deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(3) { transform: rotate(60deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(4) { transform: rotate(90deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(5) { transform: rotate(120deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(6) { transform: rotate(150deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(7) { transform: rotate(180deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(8) { transform: rotate(210deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(9) { transform: rotate(240deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(10) { transform: rotate(270deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(11) { transform: rotate(300deg) translateX(-50%); }
.philosophy__watch-marker:nth-child(12) { transform: rotate(330deg) translateX(-50%); }

.philosophy__watch-hands {
  position: relative;
  width: 100%;
  height: 100%;
}

.philosophy__watch-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}

.philosophy__watch-hand--hour {
  width: 3px;
  height: 55px;
  background: var(--fg);
  margin-left: -1.5px;
  transform: rotate(140deg);
}

.philosophy__watch-hand--minute {
  width: 2px;
  height: 75px;
  background: var(--gold);
  margin-left: -1px;
  transform: rotate(260deg);
}

.philosophy__photo-caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 24px;
}

.philosophy__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.philosophy__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.philosophy__pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.philosophy__pillar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.philosophy__pillar-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.philosophy__pillar-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.philosophy__pillar-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: clamp(100px, 15vw, 180px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.closing__headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.closing__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.closing__stripe {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.closing__tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px var(--gutter) 40px;
  background: var(--bg);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-muted);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 6px;
}

.footer__col a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--fg); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__headline { font-size: clamp(40px, 10vw, 72px); }
  .collections__grid { grid-template-columns: 1fr; }
  .philosophy__inner { grid-template-columns: 1fr; }
  .philosophy__col-photo { max-width: 360px; margin: 0 auto; }
  .footer__inner { flex-direction: column; }
  .footer__links { flex-wrap: wrap; gap: 32px; }
  .hero__stats { flex-wrap: wrap; gap: 32px; }
  .nav__links { display: none; }
}

@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; gap: 8px; }
}
