/* Gold & Time — the watch bench on the 16th Street Mall
   Palette from their own photos: velvet burgundy, case gold, movement silver, warm ink. */

:root {
  --ink: #17120e;
  --velvet: #3d141b;
  --paper: #f4eee1;
  --paper-deep: #ece2cd;
  --gold: #b9922f;
  --brass: #e3c778;
  --silver: #cfc9bc;
  --line: rgba(23, 18, 14, 0.22);
  --line-light: rgba(244, 238, 225, 0.28);
  --serif: "Marcellus", "Times New Roman", serif;
  --text: "Newsreader", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
  font-family: var(--text);
  font-weight: 340;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
h1, h2, h3, .unit, .wordmark { font-family: var(--serif); font-weight: 400; }

/* ---------- header ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.3rem clamp(1.5rem, 5vw, 4.5rem);
  color: var(--paper);
  background: var(--ink);
}
.wordmark { font-size: 1.45rem; letter-spacing: 0.04em; }
.wordmark .amp { color: var(--brass); }
nav { display: flex; align-items: baseline; gap: 1.6rem; }
.place-note { font-size: 0.9rem; letter-spacing: 0.07em; opacity: 0.75; }
.tel-link {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 199, 120, 0.45);
  padding-bottom: 2px;
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 47fr 53fr;
  min-height: 46rem;
  color: var(--paper);
  background: var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(1.5rem, 5vw, 4.5rem) 5.5rem;
}
.proof-line {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.8rem;
}
h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.06;
  text-wrap: balance;
}
.lead {
  max-width: 34rem;
  margin-top: 1.6rem;
  font-size: 1.19rem;
  line-height: 1.62;
  color: rgba(244, 238, 225, 0.88);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.4rem; }
.btn {
  display: inline-block;
  padding: 0.95rem 1.7rem;
  color: var(--ink);
  background: var(--brass);
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn:hover { background: var(--gold); color: var(--paper); }
.hours-note { font-size: 0.98rem; color: rgba(244, 238, 225, 0.7); }
.hero-photo { position: relative; min-height: 30rem; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; position: absolute; inset: 0; }
.hero-photo figcaption,
.movement-photo figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  color: var(--paper);
  background: rgba(23, 18, 14, 0.78);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ---------- three units intro + minute track ---------- */
.units-intro { padding: 6.5rem clamp(1.5rem, 6vw, 6rem) 3.5rem; text-align: center; }
.units-intro h2 {
  max-width: 30ch;
  margin: 0 auto;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.18;
  text-wrap: balance;
}
.minute-track {
  height: 1.1rem;
  max-width: 36rem;
  margin: 2.8rem auto 0;
  background:
    repeating-linear-gradient(90deg,
      var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 0.75rem),
    linear-gradient(0deg, transparent calc(50% - 0.5px), var(--line) calc(50% - 0.5px), var(--line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-size: 3.75rem 55%, 100% 100%;
  background-repeat: repeat-x, no-repeat;
  background-position: 0 bottom, 0 0;
}

/* ---------- rungs ---------- */
.rung {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 74rem;
  margin: 0 auto;
  padding: 4.5rem clamp(1.5rem, 5vw, 4.5rem);
}
.rung + .rung { border-top: 1px solid var(--line); }
.unit {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.02;
  color: var(--ink);
}
.unit.light { color: var(--paper); }
.rung-body h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.25; }
.rung-body > p { max-width: 36rem; margin-top: 1rem; font-size: 1.13rem; }
blockquote {
  margin-top: 2rem;
  padding: 1.4rem 0 0 1.4rem;
  border-left: 3px solid var(--gold);
}
blockquote p { max-width: 36rem; font-size: 1.13rem; font-style: italic; line-height: 1.58; }
blockquote cite {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* week rung — velvet ground, movement photo */
.rung-week {
  display: grid;
  grid-template-columns: 58fr 42fr;
  max-width: none;
  padding: 0;
  margin-top: 4.5rem;
  color: var(--paper);
  background: var(--velvet);
}
.rung-week .rung-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 5.5rem clamp(1.5rem, 4vw, 4.5rem);
  align-content: center;
}
.rung-week h3 { color: var(--brass); }
.rung-week .rung-body > p { color: rgba(244, 238, 225, 0.88); }
.rung-week blockquote { border-left-color: var(--brass); }
.rung-week blockquote cite { opacity: 0.6; }
.movement-photo { position: relative; min-height: 34rem; }
.movement-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ---------- place band ---------- */
.place { position: relative; min-height: 38rem; display: flex; align-items: flex-end; }
.place > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 88%; }
.place-overlay {
  position: relative;
  width: 100%;
  padding: 7rem clamp(1.5rem, 5vw, 4.5rem) 3.2rem;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(23, 18, 14, 0.88) 0%, rgba(23, 18, 14, 0.55) 55%, transparent 100%);
}
.place-overlay h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.place-overlay p { max-width: 38rem; margin-top: 0.9rem; font-size: 1.13rem; color: rgba(244, 238, 225, 0.92); }

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: 6rem clamp(1.5rem, 5vw, 4.5rem);
  color: var(--paper);
  background: var(--ink);
}
.contact-main h2 { font-size: clamp(2.1rem, 3.4vw, 3.2rem); }
.contact-main > p { max-width: 32rem; margin-top: 1rem; font-size: 1.13rem; color: rgba(244, 238, 225, 0.85); }
.contact-phone {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  color: var(--brass);
  text-decoration: none;
  border-bottom: 2px solid rgba(227, 199, 120, 0.4);
}
.maps-link {
  display: block;
  margin-top: 1.3rem;
  width: fit-content;
  color: var(--paper);
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.contact-details { display: flex; flex-direction: column; gap: 2.2rem; justify-content: center; }
.contact-details h4 {
  font-size: 0.85rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-details p, .hours td { font-size: 1.04rem; color: rgba(244, 238, 225, 0.88); }
.hours { border-collapse: collapse; }
.hours td { padding: 0.15rem 0; font-variant-numeric: tabular-nums; }
.hours td:first-child { padding-right: 1.8rem; }

/* ---------- footer ---------- */
footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.4rem clamp(1.5rem, 5vw, 4.5rem);
  color: rgba(244, 238, 225, 0.62);
  background: #100c09;
  font-size: 0.9rem;
}
footer a { color: rgba(244, 238, 225, 0.62); }

/* ---------- mobile ---------- */
@media (max-width: 900px) {
  header { flex-wrap: wrap; padding: 1rem 1.25rem; }
  .place-note { display: none; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 3.5rem 1.25rem 3rem; }
  h1 { font-size: clamp(2.3rem, 9vw, 2.9rem); }
  .lead { font-size: 1.08rem; }
  .hero-photo { min-height: 24rem; }
  .hero-photo img { position: static; height: 24rem; }
  .hero-photo figcaption { bottom: 0.8rem; }

  .units-intro { padding: 4rem 1.25rem 2.5rem; }

  .rung { grid-template-columns: 1fr; gap: 1.2rem; padding: 3rem 1.25rem; }
  .unit { font-size: 2.7rem; }
  .unit br { display: none; }

  .rung-week { grid-template-columns: 1fr; margin-top: 3rem; }
  .rung-week .rung-inner { grid-template-columns: 1fr; padding: 3.5rem 1.25rem; }
  .movement-photo { min-height: 0; }
  .movement-photo img { position: static; height: 20rem; }

  .place { min-height: 26rem; }
  .place-overlay { padding: 5rem 1.25rem 2.4rem; }

  .contact { grid-template-columns: 1fr; padding: 4rem 1.25rem; }
  .contact-phone { font-size: 2rem; }

  footer { flex-direction: column; }
}
