:root {
  --ink: #171515;
  --muted: #6f665f;
  --cream: #efe3ab;
  --paper: #f7f1dd;
  --burgundy: #8b0f1d;
  --line: rgba(23, 21, 21, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: .03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-style: italic;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .95rem;
}

nav a {
  text-decoration: none;
  opacity: .72;
}
nav a:hover, nav a:focus-visible { opacity: 1; }

.nav-support {
  padding: .58rem .9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.hero,
.artwork-section,
.story-section,
.about-section,
.connect-section,
footer {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--burgundy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  letter-spacing: -.035em;
}

.hero-text {
  max-width: 650px;
  margin: 1.6rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }

.primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 30px rgba(23, 21, 21, .12);
}

.secondary {
  border: 1px solid var(--ink);
  background: transparent;
}

.text-button {
  padding-inline: .4rem;
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.hero-symbol {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: .9rem;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero-symbol i {
  display: block;
  width: 1px;
  height: 58px;
  background: var(--line);
}

.artwork-section {
  padding: 7rem 0 8rem;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.artwork-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(23, 21, 21, .10);
}

.artwork-frame img {
  width: 100%;
  height: auto;
}

.artwork-frame figcaption {
  padding: 1rem 1.2rem;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.32);
}

.story-section,
.about-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: 8rem 0;
  border-top: 1px solid var(--line);
}

.story-copy,
.about-section > div:last-child {
  max-width: 690px;
  font-size: 1.13rem;
  color: #38322e;
}

.story-copy p:first-child,
.about-section p:first-child { margin-top: 0; }

blockquote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 1.5rem 1.4rem;
  border-left: 3px solid var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink);
}

.connect-section {
  margin-bottom: 2rem;
  padding: 7rem 1.5rem;
  text-align: center;
  background: var(--ink);
  color: white;
  border-radius: 28px;
}

.connect-section .eyebrow { color: #d89aa2; }
.connect-section h2 { max-width: 850px; margin-inline: auto; }
.centered { justify-content: center; }

.connect-section .primary {
  background: var(--cream);
  color: var(--ink);
}
.connect-section .secondary { border-color: rgba(255,255,255,.55); }
.connect-section .text-button { color: white; }

footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .92rem;
}

footer > div:first-child {
  display: flex;
  gap: .8rem;
  align-items: center;
}
footer strong { color: var(--ink); }

.footer-links { display: flex; gap: 1rem; }

.legal {
  width: min(780px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 8rem;
}
.legal h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal h2 { margin-top: 2.5rem; font-size: 1.55rem; }
.legal .notice {
  margin: 2rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--burgundy);
  background: rgba(139, 15, 29, .07);
}

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
  }

  nav {
    gap: .7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav a:not(.nav-support) { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 5rem 0;
  }

  .hero-symbol {
    justify-self: stretch;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
  }

  .hero-symbol i {
    width: 100%;
    height: 1px;
  }

  .section-heading,
  .story-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .artwork-section,
  .story-section,
  .about-section { padding: 5rem 0; }

  .connect-section {
    padding: 5rem 1.2rem;
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }

  .button-row { align-items: stretch; }
  .button { width: 100%; }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
