:root {
  color-scheme: light;
  --ink: #102521;
  --muted: #5b6b66;
  --line: #d8e1dc;
  --paper: #f7f8f4;
  --white: #ffffff;
  --green: #154c3b;
  --green-2: #0f382e;
  --blue: #235b73;
  --gold: #c6943b;
  --gold-soft: #f3dfb8;
  --max-page: 1160px;
  --max-narrow: 720px;
  --radius: 8px;
  --section-y: clamp(70px, 10vw, 118px);
  --section-x: clamp(18px, 5vw, 72px);
  --shadow: 0 20px 70px rgba(16, 37, 33, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  width: 100%;
}

main {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.88);
  border-bottom: 1px solid rgba(216, 225, 220, 0.8);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--green-2);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  min-height: min(780px, 96vh);
  position: relative;
  display: grid;
  place-items: end start;
  padding: 128px clamp(18px, 5vw, 72px) 74px;
  overflow: hidden;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 22, 19, 0.86), rgba(8, 22, 19, 0.46) 42%, rgba(8, 22, 19, 0.08) 68%),
    url("assets/hero-golf-club-phone.webp");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.01);
  z-index: 0;
}

.hero::after {
  background: linear-gradient(180deg, rgba(247, 248, 244, 0), var(--paper));
  bottom: -1px;
  content: "";
  height: 90px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.section .eyebrow,
.local-copy .eyebrow,
.join-panel .eyebrow {
  color: var(--blue);
}

.clubhouse-eyebrow {
  font-size: clamp(1.45rem, 3.8vw, 2.7rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  font-size: clamp(3.05rem, 7.6vw, 6.35rem);
  line-height: 0.96;
  margin-bottom: 20px;
  max-width: 720px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
  max-width: 650px;
  overflow-wrap: anywhere;
}

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

.button,
button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}

.button.primary,
button {
  background: var(--gold);
  color: #1d1608;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.signal-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: -34px auto 0;
  max-width: var(--max-page);
  padding: 0 clamp(18px, 4vw, 36px);
  position: relative;
  z-index: 3;
}

.signal-strip article {
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 178px;
  min-width: 0;
  padding: 28px;
}

.signal-strip article:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.signal-strip article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.signal-strip span,
.card-label {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.signal-strip p,
.feature-card p,
.pillar-list p,
.local-copy p,
.join-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: var(--section-y) var(--section-x);
}

.digital-section {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  margin: 0 auto;
  max-width: var(--max-page);
}

.digital-intro p {
  color: var(--muted);
  line-height: 1.6;
}

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

.digital-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 178px;
  padding: 24px;
}

.digital-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.experience-section {
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(198, 148, 59, 0.22), transparent 28%),
    linear-gradient(135deg, var(--green-2), #123f4a);
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 1.14fr);
  max-width: none;
}

.experience-copy {
  justify-self: end;
  max-width: 500px;
}

.experience-copy .eyebrow {
  color: var(--gold-soft);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.65;
}

.device-stage {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(260px, 520px));
  justify-content: center;
}

.lifestyle-phone-card {
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  max-width: 520px;
  overflow: hidden;
  position: relative;
}

.single-phone-card,
.member-card-visual {
  justify-self: center;
}

.member-card-visual {
  align-self: center;
}

.visual-tag {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 900;
  left: 14px;
  margin: 0;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 3;
}

.lifestyle-phone-card img {
  display: block;
  height: auto;
  width: 100%;
}

.commerce-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 28px;
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 620px;
}

.commerce-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.product-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.product-row span {
  background: #edf3ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-2);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 12px 8px;
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  margin: 0 auto 32px;
  max-width: var(--max-page);
}

.section-heading.compact {
  display: block;
  max-width: var(--max-narrow);
  text-align: center;
}

.brief-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr 1fr 1fr;
  margin: 0 auto;
  max-width: var(--max-page);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 244px;
  padding: 26px;
}

.lead-card {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  grid-row: span 2;
}

.lead-card p {
  color: rgba(255, 255, 255, 0.84);
}

.lead-card .card-label {
  color: var(--gold-soft);
}

.pillars-section {
  background: #edf3ef;
}

.pillar-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin: 32px auto 0;
  max-width: 1040px;
}

.pillar-list article {
  border-top: 3px solid var(--gold);
  padding: 20px 12px 0;
}

.local-section {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.92fr 1.08fr;
  margin: 0 auto;
  max-width: var(--max-page);
}

.local-copy {
  position: sticky;
  top: 96px;
}

form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 37, 33, 0.08);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.hidden-field {
  display: none;
}

label,
legend {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

input,
select {
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 11px 12px;
  width: 100%;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 16px;
}

fieldset legend {
  padding: 0 6px;
}

fieldset label {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 8px;
}

fieldset input {
  min-height: auto;
  width: auto;
}

.join-section {
  padding-top: 0;
}

.join-panel {
  background:
    linear-gradient(135deg, rgba(21, 76, 59, 0.96), rgba(35, 91, 115, 0.92)),
    linear-gradient(45deg, var(--green), var(--blue));
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.8fr 1.2fr;
  margin: 0 auto;
  max-width: var(--max-page);
  padding: clamp(24px, 5vw, 54px);
}

.join-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.join-panel .eyebrow {
  color: var(--gold-soft);
}

.join-form {
  box-shadow: none;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-status {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0;
  min-height: 1.3em;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.88rem;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer span:first-child {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 920px) {
  .hero {
    min-height: 760px;
  }

  .signal-strip,
  .digital-section,
  .digital-grid,
  .experience-section,
  .device-stage,
  .brief-grid,
  .pillar-list,
  .local-section,
  .join-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: -20px;
  }

  .signal-strip article,
  .signal-strip article:first-child,
  .signal-strip article:last-child {
    border-radius: var(--radius);
  }

  .lead-card {
    grid-row: auto;
  }

  .local-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-content: 354px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 720px;
    max-width: 100%;
    padding: 104px 18px 58px;
    width: 100%;
  }

  .hero-content {
    max-width: min(100%, var(--mobile-content));
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 22, 19, 0.3), rgba(8, 22, 19, 0.88)),
      url("assets/hero-golf-club-phone.webp");
    background-position: 68% center;
  }

  h1 {
    font-size: clamp(2.14rem, 10.6vw, 2.78rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.52rem, 6.8vw, 1.92rem);
  }

  .signal-strip {
    margin-left: 0;
    margin-right: 0;
    max-width: min(100%, var(--mobile-content));
    padding: 0 18px;
    width: 100%;
  }

  .hero,
  .hero-content,
  .hero-actions,
  .signal-strip,
  .section,
  .digital-section,
  .digital-grid,
  .experience-section,
  .device-stage,
  .brief-grid,
  .pillar-list,
  .local-section,
  .join-panel,
  .section-heading {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .digital-section,
  .digital-grid,
  .device-stage,
  .experience-copy,
  .brief-grid,
  .pillar-list,
  .local-section,
  .join-panel,
  .section-heading {
    margin-left: 0;
    margin-right: 0;
    max-width: min(100%, var(--mobile-content));
    width: 100%;
  }

  .join-panel {
    padding: 28px 18px;
  }

  .join-panel h2 {
    font-size: clamp(1.76rem, 8vw, 2.16rem);
  }

  .join-form {
    width: 100%;
  }

  .signal-strip article,
  .digital-grid article,
  .feature-card,
  .pillar-list article,
  .commerce-panel,
  .lifestyle-phone-card,
  .join-panel,
  form {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button,
  button {
    max-width: 100%;
    width: 100%;
  }

  .experience-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .experience-copy {
    justify-self: stretch;
  }

  .lifestyle-phone-card {
    max-width: 100%;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  fieldset,
  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
