/* Edit these colors to change the entire palette. No external fonts or scripts. */
:root {
  color-scheme: dark;
  --background: #151816;
  --text: #f3f1e9;
  --muted: #b4b9b0;
  --accent: #d5ae7b;
  --rule: #394038;
}

* { box-sizing: border-box; }
html { min-width: 280px; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--background); }
.page {
  width: min(100%, 1600px);
  min-height: 100vh;
  min-height: 100svh;
  margin: auto;
  padding: 36px clamp(24px, 6vw, 96px) 28px;
  display: flex;
  flex-direction: column;
}
.topline, footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.monogram { display: flex; align-items: center; gap: 12px; font: 28px Georgia, 'Times New Roman', serif; }
.stitch { width: 32px; height: 1px; background: var(--accent); transform: rotate(-45deg); }
.location { color: var(--muted); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; line-height: 1.6; }
main { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 78px 0 72px; }
h1 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.brand-prefix { display: block; font-size: clamp(2.6rem, 5.8vw, 5.7rem); line-height: 1.15; letter-spacing: -.045em; }
.brand-word { display: block; margin-left: -.035em; font-size: clamp(5rem, 15vw, 14rem); line-height: 1.03; letter-spacing: -.065em; }
.period { color: var(--accent); }
.subtitle { color: var(--muted); font-size: 1rem; line-height: 1.8; letter-spacing: .075em; margin: 26px 0 0; }
.subtitle span { color: var(--accent); padding: 0 .4em; }
.launch { display: flex; align-items: center; gap: 20px; margin-top: 58px; }
.thread-line { width: 64px; height: 1px; background: var(--accent); }
.launch p { margin: 0; font-size: .875rem; line-height: 1.5; letter-spacing: .15em; text-transform: uppercase; }
footer { border-top: 1px solid var(--rule); padding-top: 25px; }
footer a { color: var(--text); font-size: .9375rem; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 6px; padding: 8px 0; overflow-wrap: anywhere; transition: color .15s, text-decoration-color .15s; }
footer a:hover { color: var(--accent); text-decoration-color: var(--accent); }
footer a:focus-visible { outline: 2px solid var(--accent); outline-offset: 7px; border-radius: 1px; }
.footer-brand { color: var(--muted); font-size: .75rem; letter-spacing: .08em; }
@media (max-width: 600px) {
  .page { padding-top: 25px; padding-bottom: 22px; }
  .location { letter-spacing: .09em; text-align: right; }
  main { padding-top: 74px; padding-bottom: 68px; }
  .subtitle { font-size: .875rem; letter-spacing: .015em; }
  .subtitle span { padding: 0 .15em; }
  .launch { margin-top: 44px; gap: 16px; }
  .thread-line { width: 40px; }
  .footer-brand { display: none; }
}
@media (prefers-reduced-motion: reduce) { footer a { transition: none; } }
