:root {
  --ink: #1d1d1b;
  --muted: #6b675f;
  --paper: #f5f1e8;
  --white: #ffffff;
  --accent: #8b4d32;
  --accent-soft: #e9e1d4;
  --line: rgba(29, 29, 27, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: bold;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav a {
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

nav a:hover,
.text-link:hover,
.art-meta a:hover,
.footer-wrap a:hover {
  opacity: 0.65;
}

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  background: var(--white);
}

.hero-image {
  min-height: 700px;
  overflow: hidden;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 6vw;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: bold;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  line-height: 1.03;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(3.8rem, 8vw, 7rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
}

.hero-kicker {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.intro {
  max-width: 480px;
  margin: 26px 0 30px;
  font-size: 1.13rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-block;
  padding: 12px 22px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: 0.2s ease;
}

.button:hover {
  background: var(--ink);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: transparent;
  color: var(--ink);
}

.text-link {
  font-size: 0.95rem;
  text-underline-offset: 4px;
}

.trust-line {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 60px;
  align-items: end;
}

.section-intro {
  margin: 0;
  color: var(--muted);
}

.featured-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 24px;
}

.art-card {
  min-width: 0;
}

.art-image {
  display: block;
  overflow: hidden;
  background: #ddd;
}

.art-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.art-image:hover img {
  transform: scale(1.015);
}

.art-meta {
  padding-top: 12px;
}

.art-meta h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.art-meta a {
  font-size: 0.82rem;
  color: var(--muted);
  text-underline-offset: 3px;
}

.featured-cta {
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.featured-cta p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.story-section {
  background: var(--white);
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.story-copy {
  max-width: 680px;
}

.story-copy p,
.contact-copy p {
  color: var(--muted);
}

.lead {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink) !important;
}

.collectors-section {
  border-top: 1px solid var(--line);
}

.collector-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collector-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.collector-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.collector-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.collector-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--accent-soft);
}

.contact-copy {
  max-width: 650px;
}

.contact-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

footer {
  padding: 30px 0;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--paper);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-wrap p {
  margin: 0;
}

.footer-wrap a {
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  nav {
    gap: 15px;
  }

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

  .hero-image {
    min-height: auto;
  }

  .hero-image img {
    height: auto;
  }

  .hero-copy {
    padding: 64px 6%;
  }

  .section-heading,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-grid,
  .collector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  nav {
    font-size: 0.9rem;
  }

  .section {
    padding: 78px 0;
  }

  .featured-grid,
  .collector-grid {
    grid-template-columns: 1fr;
  }

  .featured-cta,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
}
