:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5d6b62;
  --paper: #f8f4ec;
  --paper-strong: #fffaf1;
  --line: #d8d0c1;
  --leaf: #2f5f46;
  --moss: #8aa36f;
  --gold: #c98a2c;
  --shadow: rgba(23, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: #fffaf1;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 250, 241, 0.24);
}

.nav {
  gap: 20px;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 64px) 76px;
  color: #fffaf1;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 21, 17, 0.82) 0%, rgba(14, 21, 17, 0.56) 36%, rgba(14, 21, 17, 0.1) 68%),
    linear-gradient(0deg, rgba(14, 21, 17, 0.34), rgba(14, 21, 17, 0.06));
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f0c879;
}

.eyebrow.dark {
  color: var(--leaf);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.4rem;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 470px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 241, 0.64);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.08);
  color: #fffaf1;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-action:hover,
.hero-action:focus-visible {
  background: rgba(255, 250, 241, 0.18);
}

.section {
  padding: 54px clamp(20px, 5vw, 64px) 64px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  max-width: 1100px;
}

.section-heading h2,
.visit-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin-top: 34px;
}

.space-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 34px var(--shadow);
}

.space-kicker {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 800;
}

.space-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.space-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 28px;
  align-items: end;
  margin: 0 clamp(20px, 5vw, 64px) 64px;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: 78vh;
    align-items: flex-end;
  }

  h1 {
    font-size: 3.5rem;
  }

  .section-heading h2,
  .visit-band h2 {
    font-size: 2.35rem;
  }

  .section-heading,
  .space-grid,
  .visit-band {
    grid-template-columns: 1fr;
  }

  .space-card {
    min-height: 0;
  }

  .visit-band {
    padding: 28px 0;
  }
}
