/* Tuesday or Not Watchmakers. Luxury-minimal. */

:root {
  --ivory: #faf8f4;
  --paper: #f3f0e9;
  --ink: #1d1a16;
  --ink-soft: #57514a;
  --gold: #a8863c;
  --hairline: #ddd7cc;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 5vw, 3.5rem);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.wordmark {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.8rem);
}

.site-nav a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--ink); }

.header-right { display: flex; align-items: center; gap: 0.9rem; }

.status-pill {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 0.38rem 0.8rem;
  white-space: nowrap;
}

.status-pill.is-tuesday {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s;
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 5vw, 3.5rem) 4rem;
}

.over {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.6rem;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.lede-sub {
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.95rem 1.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

.btn.ghost { background: transparent; color: var(--ink); }

.btn.ghost:hover { background: var(--ink); color: var(--ivory); }

.hero-figure img {
  cursor: zoom-in;
  box-shadow: 0 30px 60px -30px rgba(29, 26, 22, 0.35);
}

figcaption {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 0.8rem;
  text-transform: uppercase;
}

/* ---------- creed ---------- */

.creed {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.5rem, 8vw, 6rem);
}

.creed p:first-child {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  max-width: 30em;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.attribution {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- split sections ---------- */

section { scroll-margin-top: 90px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
}

.split.reverse figure { order: 2; }

.split figure img { cursor: zoom-in; }

.split h2, .widget h2, .options h2, .heritage h2, .collection h2,
.specs h2, .acquire h2, .faq h2 {
  font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.split-text p { margin-bottom: 1rem; color: var(--ink-soft); }

.split-text p em { color: var(--ink); }

/* ---------- widget ---------- */

.widget {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
}

.widget-intro {
  color: var(--ink-soft);
  max-width: 36em;
  margin: 0 auto 2.5rem;
}

.aperture-frame {
  display: inline-block;
  background: linear-gradient(160deg, #e8e5de, #cfcabf);
  padding: 14px;
  border-radius: 6px;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.9), 0 18px 40px -18px rgba(29,26,22,0.4);
}

.aperture {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  letter-spacing: 0.22em;
  background: #fdfdfb;
  color: var(--ink);
  border: 1px solid #b9b2a4;
  border-radius: 3px;
  padding: 1rem clamp(1.2rem, 5vw, 3rem);
  min-width: 9ch;
}

.aperture.is-tuesday { color: var(--gold); }

.widget-date {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 1.6rem 0 2rem;
}

.widget-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 1.4rem auto 0;
}

/* ---------- exploded ---------- */

.exploded {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3.5rem) clamp(3rem, 8vh, 5rem);
  text-align: center;
}

.exploded img { cursor: zoom-in; }

/* ---------- options ---------- */

.options {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
  text-align: center;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 3rem;
  text-align: left;
}

.option-card img { cursor: zoom-in; }

.option-card h3 {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 1.4rem 0 0.2rem;
}

.option-adds {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.option-card p:last-child { color: var(--ink-soft); }

/* ---------- heritage ---------- */

.heritage {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
}

.heritage > .over, .heritage > h2 { text-align: center; }

.timeline {
  max-width: 760px;
  margin: 3rem auto 0;
  border-left: 1px solid var(--hairline);
  padding-left: clamp(1.4rem, 4vw, 3rem);
}

.timeline article { margin-bottom: 2.6rem; position: relative; }

.timeline article::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(1.4rem, 4vw, 3rem) - 3.5px);
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline article.has-image::before { display: none; }

.timeline h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.timeline p { color: var(--ink-soft); }

.timeline .has-image figure { max-width: 420px; }

.timeline .has-image img { cursor: zoom-in; }

.wide-figure {
  max-width: 1000px;
  margin: 3.5rem auto 0;
}

.wide-figure img { cursor: zoom-in; }

/* ---------- ambassador ---------- */

.ambassador { padding: clamp(3.5rem, 9vh, 6.5rem) 0 0; }

.ambassador figure { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 5vw, 3.5rem); }

.ambassador img { cursor: zoom-in; }

/* ---------- collection ---------- */

.collection {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
  text-align: center;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3rem;
  text-align: left;
}

.ref-card img { cursor: zoom-in; }

.ref-card h3 { font-weight: 500; font-size: 1.5rem; margin-top: 1.4rem; }

.ref-meta {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0.3rem 0 0.8rem;
}

.ref-note { color: var(--ink-soft); font-style: italic; margin-bottom: 1rem; }

.ref-price {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ref-card .btn { font-size: 0.65rem; padding: 0.75rem 1.3rem; }

.collection-note {
  color: var(--ink-soft);
  max-width: 40em;
  margin: 3rem auto 0;
  font-style: italic;
}

/* ---------- specs ---------- */

.specs {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
}

.specs table { width: 100%; border-collapse: collapse; margin-top: 2rem; }

.specs td {
  border-bottom: 1px solid var(--hairline);
  padding: 0.85rem 0.5rem;
  vertical-align: top;
}

.specs td:first-child {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: 40%;
  padding-top: 1.05rem;
}

.specs-figure { margin-top: 3rem; }

.specs-figure img { cursor: zoom-in; }

/* ---------- acquire ---------- */

.acquire {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
}

.acquire .over { color: var(--gold); }

.acquire > * { max-width: 620px; margin-left: auto; margin-right: auto; }

.acquire-intro { color: #b8b1a5; margin-bottom: 2.5rem; }

.field { margin-bottom: 1.6rem; }

.field label {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8b1a5;
  margin-bottom: 0.5rem;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #4a453d;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 0.8rem 0.9rem;
}

.field select { appearance: none; }

.field select option { color: var(--ink); }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.acquire .btn { background: var(--gold); border-color: var(--gold); }

.acquire .btn:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.form-note {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #857e71;
  margin-top: 1.2rem;
}

.form-confirm { text-align: center; padding: 2rem 0; }

.form-confirm h3 { font-weight: 400; font-size: 1.8rem; margin-bottom: 1rem; }

.form-confirm p { color: #b8b1a5; }

/* ---------- faq ---------- */

.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1rem, 5vw, 3.5rem);
}

.faq details { border-bottom: 1px solid var(--hairline); }

.faq summary {
  font-weight: 500;
  font-size: 1.15rem;
  padding: 1.2rem 0.2rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  color: var(--gold);
  font-weight: 300;
}

.faq details[open] summary::after { content: "\2212"; }

.faq details p { color: var(--ink-soft); padding: 0 0.2rem 1.4rem; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1rem, 5vw, 3.5rem) 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.foot-mark {
  font-family: var(--sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.foot-head {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.foot-grid p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0.5rem; }

.foot-fine {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  font-size: 0.85rem;
  color: #9a9284;
}

/* ---------- modal ---------- */

.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 18, 15, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal img {
  max-width: min(92vw, 1000px);
  max-height: 82vh;
  object-fit: contain;
}

.modal-caption {
  color: #cfc8bb;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2.4rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}

/* ---------- marketing page ---------- */

.mkt-main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 5rem) clamp(1rem, 5vw, 3.5rem);
  text-align: center;
}

.mkt-main h1 { font-weight: 300; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }

.mkt-main .intro { color: var(--ink-soft); max-width: 38em; margin: 0 auto 3rem; }

.mkt-main figure { margin-bottom: 3.5rem; }

.mkt-main img { cursor: zoom-in; margin: 0 auto; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.5rem 0;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.9rem 0; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .hero-figure { order: -1; max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split.reverse figure { order: 0; }
  .split figure { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .wordmark { letter-spacing: 0.18em; }
  .status-pill { font-size: 0.55rem; padding: 0.3rem 0.5rem; }
}
