:root {
  --ink: #1c1914;
  --muted: #5e564c;
  --cream: #f4efe6;
  --paper: #faf7f2;
  --line: rgba(62, 42, 24, 0.16);
  --wood: #3a2718;
  --sand: #c6a36a;
  --sky-deep: #163044;
  --header: rgba(18, 28, 36, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
}

img { max-width: 100%; }

a { color: inherit; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: #fff;
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  z-index: 10;
}

.skip:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow { width: min(720px, calc(100% - 2.5rem)); }

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

.eyebrow.ink { color: #8a6233; }
.eyebrow.light { color: #e7d3ae; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 6.4rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2.4rem, 4vw, 3.8rem); }
h3 { margin: 0 0 0.6rem; font-size: 2rem; }

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 6vw;
  color: #fff;
  background: var(--wood);
}

section { scroll-margin-top: 4.25rem; }

.brand {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-header nav {
  display: flex;
  gap: 1.4rem;
}

.site-header nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
}

.site-header nav a:hover,
.brand:hover { color: #f3e2c4; }

.hero {
  position: relative;
  color: #fff;
  background: #163044;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(10, 16, 14, 0.78), rgba(10, 16, 14, 0.08) 70%, transparent);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  left: 6vw;
  bottom: 7%;
  width: min(920px, calc(100% - 12vw));
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.lede {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.welcome {
  background: var(--paper);
  padding: 6.5rem 0 5rem;
}

.welcome p:last-child { margin-bottom: 0; color: var(--muted); }

.community {
  padding: 0 0 5.5rem;
  background: var(--paper);
}

.section-head { margin-bottom: 2.2rem; max-width: 38rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cards article {
  padding: 1.6rem 1.5rem 1.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--sand);
}

.cards p { margin: 0; color: var(--muted); }

.contact {
  background: var(--wood);
  color: #f6f0e6;
  padding: 5.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.contact p { color: rgba(246, 240, 230, 0.82); }

address {
  margin: 0;
  padding: 1.8rem 1.7rem;
  font-style: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(231, 211, 174, 0.35);
  line-height: 1.7;
}

.address-label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e7d3ae;
}

address strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.site-footer {
  background: #24170f;
  color: rgba(246, 240, 230, 0.72);
  padding: 1.3rem 0;
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-row p { margin: 0; }

a:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; gap: 0.35rem 1.1rem; }

  .hero::after { display: none; }

  .hero-copy {
    position: static;
    width: min(720px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 1.7rem 0 0.2rem;
    color: var(--ink);
    text-shadow: none;
  }

  .hero { background: var(--paper); }
  .hero .eyebrow { color: #8a6233; }

  .cards,
  .contact-grid,
  .footer-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  h1 { font-size: 2.7rem; }
  .welcome { padding-top: 2.4rem; }
}

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