:root {
  --paper: #faf9f7;
  --ink: #25282b;
  --muted: #6d6d69;
  --line: #e8e4de;
  --soft: #f3f1ed;
  --accent: #c9b49b;
  --accent-dark: #8e6f50;
  --button-hover: #4a4d4f;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background: var(--paper);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 6.5rem, 1024px);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
}

.wordmark {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-nav,
.footer-inner nav {
  display: flex;
  gap: 2rem;
}

.site-nav a,
.footer-inner a {
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-inner a:hover {
  color: var(--muted);
}

.hero {
  padding: 6.3rem 0 6.8rem;
}

.hero-content {
  max-width: 1024px;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: #a28d77;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 1.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em {
  color: #515254;
  font-style: normal;
}

.hero-copy {
  max-width: 400px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.82rem 1.3rem;
  border-radius: 2px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-primary:hover {
  background: var(--button-hover);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid #d7c8b8;
  color: var(--ink);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--ink);
}

.text-link span {
  font-size: 1rem;
  line-height: 0.5;
}

.feature-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 2rem 0;
}

.feature {
  min-height: 7rem;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  border-right: 0;
}

.feature-mark {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.8rem;
  color: #8e8173;
  font-size: 1.35rem;
  line-height: 1.3;
}

.feature h2 {
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.feature p,
.about-copy {
  max-width: 190px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.about {
  padding: 3.7rem 0 4.4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about h2 {
  margin-bottom: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.about .text-link {
  margin-top: 1.3rem;
}

blockquote {
  margin: 0;
  padding: 1.3rem 1.8rem 1.5rem;
  border: 1px solid var(--line);
}

.quote-mark {
  display: block;
  height: 1.2rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

blockquote p {
  margin: 0.5rem 0 0.7rem;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-style: italic;
}

cite {
  color: var(--muted);
  font-size: 0.62rem;
  font-style: normal;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 4.2rem;
}

small {
  color: var(--muted);
  font-size: 0.58rem;
}

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2.5rem, 520px);
  }

  .header-inner {
    min-height: 4rem;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.55rem;
  }

  .hero {
    padding: 4.5rem 0 4.8rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .feature-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature {
    min-height: auto;
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:first-child {
    padding-top: 0;
  }

  .feature:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about {
    padding: 3.5rem 0;
  }

  blockquote {
    margin-top: 3rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  .button,
  .site-nav a,
  .footer-inner a,
  .text-link {
    transition: none;
  }
}
