:root {
  --ink: #181513;
  --muted: #6e6259;
  --paper: #f4efe6;
  --paper-strong: #fffaf0;
  --charcoal: #1e2524;
  --clay: #a9422e;
  --rose: #c96050;
  --sage: #66786a;
  --line: rgba(24, 21, 19, 0.14);
  --shadow: 0 18px 50px rgba(24, 21, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 22px;
}

.brand small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 13, 11, 0.82), rgba(13, 13, 11, 0.44) 48%, rgba(13, 13, 11, 0.1)),
    linear-gradient(0deg, rgba(13, 13, 11, 0.74), rgba(13, 13, 11, 0.05) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dark .eyebrow,
.hero .eyebrow,
.contact .eyebrow {
  color: #f3a08c;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(76px, 13vw, 168px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.band {
  background: var(--paper-strong);
}

.dark {
  color: #fff;
  background: var(--charcoal);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.intro-grid,
.rent-grid,
.join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 19px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.stats div {
  min-height: 136px;
  padding: 24px;
  background: var(--paper-strong);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.2;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.activity-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--paper);
}

.activity-number {
  display: block;
  margin-bottom: 48px;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #151515;
}

.photo-strip img {
  width: 100%;
  height: clamp(250px, 32vw, 480px);
  object-fit: cover;
}

.rent-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.team-layout > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.team-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.team-list div {
  padding: 30px;
  background: var(--paper-strong);
}

.join-copy {
  font-size: 19px;
}

.details-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.details-panel dl {
  display: grid;
  gap: 22px;
  margin: 24px 0 0;
}

.contact {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

address a {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 750;
  text-decoration: none;
}

footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.66);
  background: #111;
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer p + p {
  margin-top: 8px;
}

.legal-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 0;
}

.legal-info dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.legal-info dd {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: rgba(24, 21, 19, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .section-heading,
  .intro-grid,
  .rent-grid,
  .join-grid,
  .team-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .stats,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-grid article {
    min-height: auto;
  }

  .activity-number {
    margin-bottom: 26px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .team-layout > img {
    min-height: 360px;
  }

  footer {
    display: grid;
  }

  .legal-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-actions {
    display: grid;
  }

  section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 38px;
  }
}
