
:root {
  --ink: #191919;
  --paper: #f1eadb;
  --paper-2: #e8dfce;
  --gold: #b8842a;
  --sage: #aeb8a3;
  --white: #fffaf0;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px clamp(22px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: clamp(.88rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: .055em;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0,0,0,.28);
}

.hero {
  min-height: 76vh;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 53%;
}

.hero-shade {
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 150px 0 clamp(52px, 7vw, 92px);
  color: white;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.intro {
  background:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,.38), transparent 32%),
    var(--paper);
  padding: clamp(70px, 10vw, 130px) 22px;
}

.intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.kicker { color: #7f652f; }

.intro h2 {
  margin: 0 0 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.intro p {
  max-width: 720px;
  font-size: 1.08rem;
}

.intro .lede {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 15px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .025em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid rgba(25,25,25,.18);
  background: var(--paper-2);
  padding: 48px 22px 58px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: start;
}

.footer-mark {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-title {
  margin: 2px 0 15px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-bottom-color: currentColor;
}

.footer-links a[aria-current="page"] { opacity: .55; }

.copyright {
  margin: 24px 0 0;
  font-size: .82rem;
  opacity: .62;
}

@media (max-width: 680px) {
  .site-header { padding: 16px 18px; }
  .brand img { width: 42px; height: 42px; }
  .hero { min-height: 70svh; }
  .hero-content { width: min(100% - 36px, var(--max)); }
  .hero h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .hero-subtitle { max-width: 92%; }
  .intro { padding-left: 18px; padding-right: 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-mark { width: 68px; height: 68px; }
  .footer-links { flex-direction: column; gap: 7px; align-items: flex-start; }
}
