:root {
  --ink: #f2f0e9;
  --muted: #a4a39e;
  --paper: #101110;
  --surface: #191a18;
  --cream: #ded8cb;
  --line: rgba(242,240,233,.16);
  --accent: #c8a96b;
  --white: #f8f6ef;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(16,17,16,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px; letter-spacing: .08em;
}
.nav-links { display: flex; gap: 34px; font-size: 14px; font-weight: 600; }
.nav-links a:hover, .text-link:hover { color: var(--accent); }
.menu-btn { display: none; color: inherit; background: none; border: 0; font: inherit; font-weight: 600; }

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 78px);
  margin: auto;
  padding: 9vh 5vw 10vh;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 900px; }
.eyebrow, .section-label, .activity-kicker, .activity-tag {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 700;
}
.eyebrow { color: var(--accent); margin-bottom: 20px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(58px, 8vw, 105px); max-width: 800px; margin-bottom: 34px; }
h1 em, h2 em { color: var(--accent); font-style: normal; }
.hero-text { max-width: 600px; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 35px; }
.btn {
  display: inline-flex; gap: 18px; align-items: center; justify-content: center;
  padding: 14px 21px; border: 1px solid var(--ink);
  font-size: 13px; font-weight: 700;
}
.btn-dark { color: #111210; background: var(--accent); border-color: var(--accent); }
.btn-light { background: transparent; }
.btn:hover { transform: translateY(-2px); }

.section { max-width: var(--max); margin: auto; padding: 130px 5vw; }
.section-label { color: var(--muted); padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding-top: 55px; }
.intro h2, .contact h2 { font-size: clamp(45px, 5vw, 75px); }
.lead { font-size: 21px; color: var(--ink); }
.intro p:not(.lead) { color: var(--muted); }

.activities { padding-top: 30px; }
.activity {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px;
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, padding-left .25s ease, padding-right .25s ease;
}
.activity:hover { padding-left: 22px; padding-right: 22px; background: var(--surface); }
.activity-number { font: 600 18px "Playfair Display", serif; color: var(--accent); }
.activity-body { max-width: 680px; }
.activity-kicker { color: var(--muted); }
.activity h3 { font-size: clamp(34px, 4vw, 52px); margin: 10px 0 18px; }
.activity p { max-width: 650px; color: var(--muted); margin-bottom: 23px; }
.activity-tag { align-self: start; padding-top: 5px; color: var(--muted); }
.text-link { font-size: 13px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.activity-links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.activity-links .text-link { padding-bottom: 3px; border-bottom: 1px solid var(--line); }
.activity-links .text-link:hover { border-color: var(--accent); }

.statement { max-width: none; color: #171814; background: var(--cream); }
.statement-inner { max-width: var(--max); margin: auto; padding: 0 5vw; }
.quote-mark { font: 100px/0 "Playfair Display", serif; color: var(--accent); }
.statement h2 { font-size: clamp(50px, 7vw, 92px); margin: 40px 0 25px; }
.statement p { color: #5f5c55; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding-top: 55px; }
.contact h2 { margin-bottom: 25px; }
.contact-location { color: var(--muted); }
.contact-details { display: flex; flex-direction: column; gap: 18px; padding-top: 15px; }
.contact-details a { width: fit-content; font-size: 19px; border-bottom: 1px solid var(--ink); }
.contact-details a:hover { color: var(--accent); border-color: var(--accent); }
.contact-details p { color: var(--muted); font-size: 13px; margin-top: 20px; }

footer {
  max-width: var(--max); margin: auto; padding: 30px 5vw 45px;
  display: flex; justify-content: space-between; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px;
}

@media (max-width: 760px) {
  .nav { height: 68px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    padding: 20px 5vw 25px; background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .hero { min-height: auto; padding-top: 70px; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .activity { grid-template-columns: 42px 1fr; gap: 10px; }
  .activity:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .activity-tag { display: none; }
  footer { gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
