:root {
  color-scheme: light;
  --ink: #102016;
  --muted: #607066;
  --line: #dde4de;
  --paper: #f7f7f3;
  --green: #173c27;
  --green-soft: #e5eee6;
  --gold: #18c8d8;
  --aqua: #18c8d8;
  --aqua-dark: #087987;
  --aqua-soft: #e0f8fa;
  --white: #ffffff;
}

* {
  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;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 88px;
  padding: 16px clamp(22px, 6vw, 92px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 32, 22, 0.08);
}

.brand img {
  width: 174px;
  height: auto;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a {
  color: var(--aqua-dark);
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--aqua-dark);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 92px);
  color: var(--white);
}

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

.hero > img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 13, 0.82) 0%, rgba(7, 20, 13, 0.46) 48%, rgba(7, 20, 13, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 20, 13, 0.54) 0%, rgba(7, 20, 13, 0) 52%);
}

.hero-copy {
  position: relative;
  max-width: 840px;
}

.hero-copy p,
.kicker,
.section-heading p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.94;
  font-weight: 900;
}

.hero-copy a {
  margin-top: 36px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  background: var(--gold);
  color: #05282d;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(22px, 6vw, 92px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.feature-band h2,
.club-story h2,
.contact h2 {
  margin: 0;
  color: var(--aqua-dark);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  font-weight: 900;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.offer-card {
  min-height: 420px;
  background: var(--white);
  display: grid;
  grid-template-rows: 210px 1fr;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 56, 64, 0.18);
}

.offer-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.offer-grid div,
.update-grid article,
.contact-grid article {
  padding: 26px;
}

.offer-grid span,
.update-grid span,
.contact-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin: 14px 0 12px;
  color: var(--aqua-dark);
  font-size: 1.25rem;
}

.offer-grid p,
.feature-band p,
.club-story p,
.update-grid p,
.contact-grid a {
  color: var(--muted);
  line-height: 1.58;
}

.offer-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--aqua-dark);
  font-size: 0.9rem;
}

.detail-hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(58px, 9vw, 112px) clamp(22px, 6vw, 92px);
  color: var(--white);
}

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

.detail-hero > img {
  object-fit: cover;
}

.detail-shade {
  background: linear-gradient(90deg, rgba(5, 28, 34, 0.86), rgba(5, 28, 34, 0.34));
}

.detail-copy {
  position: relative;
  max-width: 880px;
}

.detail-copy a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--aqua);
  font-weight: 900;
}

.detail-copy p {
  color: var(--aqua);
  font-weight: 900;
  text-transform: uppercase;
}

.detail-copy h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(54px, 8vw, 100px) clamp(22px, 6vw, 92px);
  background: var(--white);
}

.detail-summary h2,
.detail-list h2 {
  margin: 0 0 18px;
  color: var(--aqua-dark);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.detail-summary p,
.detail-list li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-list {
  display: grid;
  align-content: start;
  gap: 26px;
}

.detail-list ul {
  margin: 0;
  padding-left: 22px;
}

.detail-list li + li {
  margin-top: 14px;
}

.detail-panel {
  padding: 30px;
  background: var(--aqua-soft);
}

.detail-panel h3 {
  margin-top: 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--aqua-dark);
  color: var(--white);
  font-weight: 900;
}

.member-benefits {
  padding: clamp(58px, 8vw, 108px) clamp(22px, 6vw, 92px);
  background: var(--paper);
}

.member-benefits.alt {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
}

.benefit-grid span {
  display: block;
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-grid p,
.benefit-list li {
  color: var(--muted);
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-list ul {
  margin: 0;
  padding: 32px 32px 32px 52px;
  background: var(--aqua-soft);
}

.benefit-list li + li {
  margin-top: 16px;
}

.feature-band,
.club-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(58px, 8vw, 106px) clamp(22px, 6vw, 92px);
  background: #083840;
  color: var(--white);
}

.feature-band h2,
.feature-band p {
  color: var(--white);
}

.feature-band p {
  max-width: 660px;
  font-size: 1.06rem;
}

.feature-band img,
.club-story > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.club-story {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  background: var(--white);
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.stats span {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: var(--aqua-soft);
  color: var(--aqua-dark);
  font-weight: 800;
}

.stats strong {
  display: block;
  font-size: 2.1rem;
}

.updates {
  background: var(--paper);
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.update-grid article {
  min-height: 260px;
  background: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 6vw, 72px);
  padding: clamp(58px, 8vw, 100px) clamp(22px, 6vw, 92px);
  background: #083840;
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.contact-grid article {
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(22px, 6vw, 92px);
  background: #0b1b12;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

footer img {
  width: 84px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .offer-grid,
  .update-grid,
  .contact,
  .contact-grid,
  .benefit-grid,
  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature-band,
  .club-story {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .offer-grid,
  .update-grid,
  .contact,
  .contact-grid,
  .stats,
  .benefit-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-copy p {
    max-width: 280px;
    font-size: 0.72rem;
  }

  .offer-card {
    min-height: auto;
  }
}
