:root {
  --forest-950: #071b12;
  --forest-900: #0b281b;
  --forest-800: #173a2a;
  --gold: #c6a05f;
  --gold-light: #e2c98f;
  --cream: #f1ebdc;
  --paper: #faf7ef;
  --ink: #152219;
  --muted: #626a62;
  --line: rgba(198, 160, 95, 0.38);
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --content: 1180px;
  --banner-height: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.mockup-banner {
  position: relative;
  z-index: 100;
  min-height: var(--banner-height);
  padding: 8px 16px;
  color: var(--forest-950);
  background: var(--gold);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mockup-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: var(--banner-height);
  right: 0;
  left: 0;
  color: var(--paper);
  background: transparent;
  pointer-events: none;
}

.site-header.is-floating {
  background: transparent;
}

.header-inner {
  width: min(calc(100% - 48px), var(--content));
  height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  pointer-events: auto;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.menu-button,
.sidebar-close {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(250, 247, 239, 0.45);
  cursor: pointer;
  pointer-events: auto;
}

.menu-lines {
  width: 22px;
  display: grid;
  gap: 6px;
}

.menu-lines span {
  height: 1px;
  background: currentColor;
}

.sidebar {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100dvh;
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  color: var(--paper);
  background: var(--forest-950);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 350ms ease;
}

.sidebar.is-open {
  transform: translateX(0);
}

.sidebar-close {
  align-self: flex-end;
  color: var(--gold-light);
  font-size: 24px;
}

.sidebar nav {
  margin-top: 54px;
  display: grid;
  gap: 22px;
}

.sidebar nav a {
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
}

.sidebar nav a:hover,
.sidebar nav a:focus-visible {
  color: var(--gold-light);
}

.sidebar .membership-link {
  margin-top: 12px;
  padding: 13px 24px;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-size: 16px;
}

.sidebar-status {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(1, 8, 5, 0.7);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.eyebrow {
  display: inline-block;
  padding-bottom: 6px;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 14px;
}

.hero-slideshow {
  position: relative;
  height: calc(100svh - var(--banner-height));
  min-height: 620px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-950);
  cursor: pointer;
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 8, 0.52), transparent 55%),
    linear-gradient(180deg, rgba(3, 14, 8, 0.16) 35%, rgba(3, 14, 8, 0.72));
}

.hero-slide.is-clubhouse img {
  object-position: center 48%;
}

.hero-slide.is-fairway img {
  object-position: center 55%;
}

.hero-slide.is-sunrise img {
  object-position: center 48%;
}

.slide-caption {
  position: absolute;
  z-index: 2;
  left: max(6vw, calc((100% - var(--content)) / 2));
  bottom: 13%;
  width: min(520px, calc(100% - 48px));
}

.slide-caption h1,
.slide-caption p {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.slide-caption p {
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.38;
}

.slide-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 64px;
  padding: 0;
  display: grid;
  place-items: center;
  color: rgba(250, 247, 239, 0.9);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  cursor: pointer;
}

.slide-arrow:hover,
.slide-arrow:focus-visible {
  color: var(--gold-light);
}

.slide-arrow.is-previous {
  left: 18px;
}

.slide-arrow.is-next {
  right: 18px;
}

.slide-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.slide-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(250, 247, 239, 0.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slide-dot.is-active {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-status {
  position: absolute;
  z-index: 4;
  right: max(4vw, 24px);
  bottom: 72px;
  display: grid;
  justify-items: end;
  gap: 7px;
}

.status-pill {
  padding: 7px 13px;
  color: rgba(250, 247, 239, 0.84);
  background: rgba(3, 14, 8, 0.4);
  border: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.status-pill strong {
  color: var(--gold-light);
}

.intro {
  padding: 100px 0 80px;
  background: var(--cream);
  text-align: center;
}

.intro-inner {
  width: min(calc(100% - 48px), 760px);
  margin-inline: auto;
}

.intro h2 {
  margin: 20px 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.2;
}

.intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.story-panel {
  position: relative;
  display: block;
  height: min(82vh, 820px);
  min-height: 560px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-950);
}

.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.story-panel:hover img {
  transform: scale(1.025);
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 14, 8, 0.78));
}

.story-panel.is-sunrise img {
  object-position: center 47%;
}

.story-panel.is-fairway img {
  object-position: center 54%;
}

.story-copy {
  position: absolute;
  z-index: 2;
  bottom: 11%;
  left: max(6vw, calc((100% - var(--content)) / 2));
  width: min(500px, calc(100% - 48px));
}

.story-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.24;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.story-copy p {
  margin: 18px 0 0;
  color: rgba(250, 247, 239, 0.82);
  line-height: 1.7;
}

.discover {
  padding: 96px 0 104px;
  background: var(--cream);
}

.section-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 44px);
}

.text-link {
  padding-bottom: 5px;
  color: #8e6a2e;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 15px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.discover-card {
  position: relative;
  min-width: 0;
  height: 390px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-900);
}

.discover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.discover-card:hover img {
  transform: scale(1.04);
}

.discover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(3, 14, 8, 0.86));
}

.discover-card-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 22px;
}

.discover-card-copy h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.news-section,
.board-section,
.content-section {
  padding: 100px 0;
  background: var(--paper);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.news-card {
  min-width: 0;
}

.news-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.news-card:hover img {
  transform: scale(1.035);
}

.news-card-copy {
  padding-top: 22px;
}

.news-card time,
.news-card .category {
  color: #8e6a2e;
  font-family: var(--serif);
  font-size: 13px;
}

.news-card h3 {
  margin: 11px 0 10px;
  font-size: 23px;
  line-height: 1.3;
}

.news-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 640px;
  color: var(--paper);
  background: var(--forest-900);
}

.split-feature-image {
  min-width: 0;
}

.split-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-feature-copy {
  padding: clamp(48px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-feature-copy h2 {
  margin: 20px 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}

.split-feature-copy p {
  color: rgba(250, 247, 239, 0.76);
  line-height: 1.8;
}

.button {
  width: max-content;
  margin-top: 10px;
  padding: 13px 24px;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 15px;
}

.button:hover,
.button:focus-visible {
  color: var(--forest-950);
  background: var(--gold-light);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.board-card {
  min-width: 0;
  text-align: center;
}

.board-avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--forest-900);
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 24px;
}

.board-card h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.board-card p {
  margin-bottom: 0;
  color: #8e6a2e;
  font-family: var(--serif);
  font-size: 13px;
}

.page-hero {
  position: relative;
  height: min(68vh, 700px);
  min-height: 480px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-950);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.is-news img {
  object-position: center 45%;
}

.page-hero.is-schedule img {
  object-position: center 52%;
}

.page-hero.is-board img {
  object-position: center 46%;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 14, 8, 0.24), rgba(3, 14, 8, 0.78));
}

.page-hero-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 11%;
  left: 24px;
  text-align: center;
}

.page-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(38px, 6vw, 66px);
}

.schedule-wrap {
  overflow-x: auto;
}

.schedule {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.schedule th,
.schedule td {
  padding: 20px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.schedule th {
  color: #8e6a2e;
  font-family: var(--serif);
  font-weight: 400;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  color: var(--forest-800);
  border: 1px solid currentColor;
  font-size: 10px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.badge.is-finished {
  color: #8e6a2e;
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(250, 247, 239, 0.72);
  background: var(--forest-950);
}

.footer-grid {
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-grid h4 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 17px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 0;
  color: rgba(250, 247, 239, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-note {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(250, 247, 239, 0.42);
  font-size: 11px;
}

@media (max-width: 980px) {
  .discover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 19px);
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature-image {
    height: 520px;
  }

  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --banner-height: 42px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--content));
  }

  .mockup-banner {
    min-height: var(--banner-height);
    padding-inline: 10px;
    font-size: 10px;
  }

  .header-inner {
    height: 76px;
  }

  .brand {
    gap: 0;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .brand span {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .sidebar {
    padding: 28px 24px;
  }

  .hero-slideshow {
    min-height: 640px;
  }

  .hero-slide img {
    object-position: center;
  }

  .slide-caption {
    left: 24px;
    bottom: 22%;
    width: calc(100% - 48px);
  }

  .slide-caption h1,
  .slide-caption p {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.32;
  }

  .slide-arrow {
    top: 46%;
    width: 38px;
    font-size: 36px;
  }

  .slide-arrow.is-previous {
    left: 4px;
  }

  .slide-arrow.is-next {
    right: 4px;
  }

  .hero-status {
    right: auto;
    bottom: 62px;
    left: 24px;
    justify-items: start;
  }

  .status-pill {
    padding: 5px 10px;
    font-size: 9px;
  }

  .intro {
    padding: 72px 0 62px;
  }

  .story-panel {
    height: 72svh;
    min-height: 500px;
  }

  .story-copy {
    right: 24px;
    bottom: 10%;
    left: 24px;
    width: auto;
  }

  .discover,
  .news-section,
  .board-section,
  .content-section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    align-items: start;
    flex-direction: column;
  }

  .discover-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .discover-card {
    height: 360px;
  }

  .news-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .split-feature {
    min-height: 0;
  }

  .split-feature-image {
    height: 400px;
  }

  .split-feature-copy {
    padding: 54px 24px 62px;
  }

  .board-grid {
    gap: 42px 18px;
  }

  .page-hero {
    height: 62svh;
    min-height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-note {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
