:root {
  --bg:        #0f0d0b;
  --surface:   #1a1815;
  --surface-2: #242118;
  --fg:        #f2ede4;
  --fg-muted:  #9a9188;
  --accent:    #c8963e;
  --accent-2:  #e8b95a;
  --border:    #2e2a24;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* =======================
   HERO
   ======================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,150,62,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,150,62,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg) var(--space-xl) clamp(var(--space-md), 8vw, var(--space-2xl));
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: var(--space-md);
}

.headline-small {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg-muted);
  letter-spacing: -0.02em;
}

.headline-main {
  display: block;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 0.88;
  position: relative;
}

.headline-main::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-display);
}

.tagline-mark {
  font-size: 0.6rem;
}

/* =======================
   WATCH ORB (CSS Art)
   ======================= */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.watch-orb {
  position: relative;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-case-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #2e2a24;
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.8),
    0 0 60px rgba(0,0,0,0.5),
    0 0 120px rgba(200,150,62,0.08);
}

.orb-face {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2520, #141210);
  border: 1px solid #3a3430;
  box-shadow: inset 0 2px 20px rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-markers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.marker {
  position: absolute;
  width: 1px;
  height: 8px;
  background: var(--accent);
  top: 8px;
  left: 50%;
  transform-origin: center calc(84px - 8px);
  box-shadow: 0 0 4px rgba(200,150,62,0.6);
}

.marker-0, .marker-3, .marker-6, .marker-9 {
  height: 12px;
  width: 2px;
  box-shadow: 0 0 8px rgba(200,150,62,0.8);
}

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

.orb-hand-hour {
  position: absolute;
  width: 3px;
  height: 44px;
  background: #c8963e;
  bottom: 50%;
  left: calc(50% - 1.5px);
  transform-origin: bottom center;
  transform: rotate(-60deg);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(200,150,62,0.5);
}

.orb-hand-minute {
  position: absolute;
  width: 2px;
  height: 58px;
  background: #e8b95a;
  bottom: 50%;
  left: calc(50% - 1px);
  transform-origin: bottom center;
  transform: rotate(120deg);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(200,150,62,0.4);
}

.orb-hand-second {
  position: absolute;
  width: 1px;
  height: 64px;
  background: #c8963e;
  bottom: 50%;
  left: calc(50% - 0.5px);
  transform-origin: bottom center;
  transform: rotate(210deg);
  box-shadow: 0 0 4px rgba(200,150,62,0.3);
}

.orb-center {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(200,150,62,0.8);
  z-index: 10;
}

/* Lugs */
.orb-lug {
  position: absolute;
  width: 20px;
  height: 50px;
  background: #1a1815;
  border: 1px solid #2e2a24;
}
.orb-lug-tl { top: 70px; left: 50px; border-radius: 4px 4px 0 0; border-bottom: none; }
.orb-lug-tr { top: 70px; right: 50px; border-radius: 4px 4px 0 0; border-bottom: none; }
.orb-lug-bl { bottom: 70px; left: 50px; border-radius: 0 0 4px 4px; border-top: none; }
.orb-lug-br { bottom: 70px; right: 50px; border-radius: 0 0 4px 4px; border-top: none; }

/* Strap stubs */
.orb-strap-top, .orb-strap-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  background: #0f0d0b;
  border: 1px solid #2e2a24;
}
.orb-strap-top { top: 0; height: 60px; border-radius: 0 0 8px 8px; border-top: none; }
.orb-strap-bottom { bottom: 0; height: 80px; border-radius: 8px 8px 0 0; border-bottom: none; }

/* =======================
   PROMISE
   ======================= */
.promise {
  padding: var(--space-xl) clamp(var(--space-md), 6vw, var(--space-2xl));
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg), var(--surface));
}

.promise-inner { max-width: 720px; }

.promise-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.promise-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.promise-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

/* =======================
   MANIFESTO
   ======================= */
.manifesto {
  padding: var(--space-xl) clamp(var(--space-md), 6vw, var(--space-2xl));
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.manifesto-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--surface-2);
  line-height: 1;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px var(--border);
}

.manifesto-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* =======================
   MATERIALS
   ======================= */
.materials {
  padding: var(--space-xl) clamp(var(--space-md), 6vw, var(--space-2xl));
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.materials-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.material-card {
  background: var(--surface);
  padding: var(--space-md);
}

.material-icon {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.material-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.material-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* =======================
   CLOSING
   ======================= */
.closing {
  padding: var(--space-xl) clamp(var(--space-md), 6vw, var(--space-2xl));
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 640px; margin: 0 auto; }

.closing-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  margin: 0 auto var(--space-md);
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.closing-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.closing-sub {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* =======================
   FOOTER
   ======================= */
.footer {
  padding: var(--space-md) clamp(var(--space-md), 6vw, var(--space-2xl));
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner {
    padding: var(--space-lg) var(--space-md) var(--space-md);
    justify-content: flex-end;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .watch-orb { transform: scale(0.75); }

  .manifesto-inner {
    grid-template-columns: 1fr;
  }

  .manifesto-number {
    font-size: 2.5rem;
    margin-bottom: -0.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .closing-quote br { display: none; }
}

@media (max-width: 480px) {
  .watch-orb { transform: scale(0.6); }
  .hero-visual { min-height: 220px; }
  .promise-headline { font-size: 1.5rem; }
}