:root {
  --blue: #1f75b7;
  --blue-hover: #195f94;
  --navy: #042d5d;
  --deep-navy: #021a36;
  --gold: #c59a4a;
  --light: #f7fbff;
  --border: #d7e4ef;
  --header: #eef5fb;
  --text: #1d2733;
  --muted: #667585;
  --white: #fff;
  --brand-font: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-font: "adobe-garamond-pro", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--text);
  background: var(--light);
  font-family: var(--brand-font);
  line-height: 1.55;
}

img { max-width: 100%; }
a { color: inherit; }

.site-header {
  min-height: 110px;
  padding: 12px clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  position: relative;
  z-index: 5;
  border-bottom: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 3px 18px rgba(4, 45, 93, .12);
}

.brand {
  width: 160px;
  height: 84px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.brand img {
  width: 150px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.6vw, 42px);
}

nav a {
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:not(.nav-button):hover { color: var(--blue); }

.nav-button {
  min-height: 50px;
  padding: 0 24px;
  gap: 12px;
  border: 1px solid #0b477c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(180deg, #0b5d99, #052f5a);
  box-shadow:
    0 10px 24px rgba(4, 45, 93, .25),
    inset 0 2px 0 var(--gold),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-button::after {
  content: "→";
  color: #e8d8b8;
  font-size: 17px;
  line-height: 1;
  transition: transform .2s ease;
}

.nav-button:hover {
  color: var(--white);
  background: linear-gradient(180deg, #1278bd, #063967);
  box-shadow:
    0 14px 30px rgba(4, 45, 93, .32),
    inset 0 2px 0 #d6ad61,
    inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.nav-button:hover::after { transform: translateX(4px); }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(520px, 1.1fr);
  color: var(--white);
  background: var(--deep-navy);
}

.hero-copy {
  padding: clamp(74px, 8vw, 118px) clamp(42px, 6.5vw, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(31, 117, 183, .33), transparent 38%),
    linear-gradient(145deg, var(--deep-navy), var(--navy));
}

.hero-copy::after {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  right: -118px;
  bottom: -118px;
  border: 1px solid rgba(197, 154, 74, .42);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(197, 154, 74, .08), 0 0 0 48px rgba(197, 154, 74, .04);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #8bc7ee; }

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

.hero > *,
.welcome > *,
.welcome-copy > *,
.experience-grid > *,
.contact-band > * { min-width: 0; }

h1 {
  max-width: 720px;
  margin: 0 0 8px;
  font-size: clamp(56px, 5.4vw, 80px);
  font-weight: 700;
  letter-spacing: .045em;
  line-height: .9;
  text-transform: uppercase;
}

.hero-script {
  margin: 13px 0 26px;
  color: #e8d8b8;
  font-family: var(--display-font);
  font-size: clamp(27px, 2.7vw, 40px);
  font-style: italic;
  letter-spacing: .02em;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #0b477c, #052f5a);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.button-primary::before,
.button-primary::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.button-primary::after { background: linear-gradient(90deg, var(--gold), transparent); }
.button-primary span { padding: 0 12px; }
.button-primary:hover { background: linear-gradient(180deg, #0e568f, #063967); }

.button-secondary { border-color: rgba(255, 255, 255, .54); color: var(--white); }
.button-secondary:hover { background: rgba(255, 255, 255, .1); }

.hero-image {
  min-height: 690px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(2, 26, 54, .2), transparent 30%),
    url("jax-boat-club-marina.jpg") center / cover no-repeat;
}

.location-card {
  min-width: 250px;
  padding: 18px 22px;
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  bottom: 36px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 40px rgba(2, 26, 54, .2);
}

.location-card span,
.location-card strong { display: block; }

.location-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.location-card strong {
  margin-top: 4px;
  font-family: var(--display-font);
  font-size: 23px;
  font-weight: 400;
}

.welcome {
  padding: clamp(74px, 9vw, 130px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1.65fr);
  gap: clamp(46px, 8vw, 130px);
  background: var(--white);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  align-self: start;
}

.section-kicker .rule { width: 54px; height: 1px; background: var(--gold); }

.welcome-copy {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(260px, .8fr);
  align-items: end;
  gap: clamp(40px, 6vw, 90px);
}

.welcome h2,
.section-heading h2,
.contact-band h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.04;
}

.welcome h2 em { color: var(--blue); font-weight: 400; }

.welcome-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.memberships {
  padding: 92px clamp(24px, 7vw, 110px) 104px;
  scroll-margin-top: 110px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.memberships-standalone {
  min-height: calc(100vh - 110px);
  padding-top: 54px;
}

.back-link {
  margin-bottom: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link:hover { color: var(--navy); }

.membership-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
}

.membership-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.04;
}

.memberships-standalone .membership-heading h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.04;
  text-transform: none;
}

.membership-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tier-card {
  min-height: 390px;
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border);
  color: var(--text);
  background: #fbfdff;
  box-shadow: 0 14px 38px rgba(4, 45, 93, .08);
}

.tier-card::before {
  content: "";
  height: 4px;
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  background: var(--gold);
}

.tier-card-captain {
  border-color: var(--navy);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(31, 117, 183, .34), transparent 42%),
    var(--navy);
}

.tier-label {
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.tier-card-captain .tier-label { color: #8bc7ee; }

.tier-card h2,
.tier-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.tier-card-captain h2,
.tier-card-captain h3 { color: var(--white); }

.tier-card > p:not(.tier-label) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.tier-card-captain > p:not(.tier-label) { color: rgba(255, 255, 255, .8); }

.tier-fit {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tier-card-captain .tier-fit {
  border-color: rgba(255, 255, 255, .22);
  color: #e8d8b8;
}

.membership-footer {
  margin-top: 24px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--header);
  border-left: 4px solid var(--gold);
}

.membership-footer p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
}

.membership-footer strong { color: var(--navy); }

.membership-button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
}

.membership-button:hover { background: var(--blue); }

.tour-page {
  min-height: calc(100vh - 110px);
  background: var(--white);
}

.tour-intro {
  padding: 54px clamp(24px, 7vw, 110px) 104px;
}

.tour-heading {
  max-width: 1080px;
  margin: 0 auto 58px;
  text-align: center;
}

.tour-heading .eyebrow { margin-bottom: 14px; }

.tour-heading h1 {
  max-width: none;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: clamp(48px, 5.8vw, 78px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.02;
  text-transform: none;
}

.tour-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.tour-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
}

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

.tour-card-image {
  aspect-ratio: 4 / 2.65;
  margin-bottom: 28px;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  background: var(--header);
  box-shadow: 0 16px 38px rgba(4, 45, 93, .13);
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.tour-card-image-placeholder {
  padding: clamp(42px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(31, 117, 183, .12), transparent 55%),
    linear-gradient(145deg, #f7fbff, #e8f1f8);
}

.tour-card-image-placeholder img {
  width: min(78%, 270px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(4, 45, 93, .13));
}

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

.tour-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.15;
}

.tour-card p {
  max-width: 390px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.tour-cta {
  max-width: 760px;
  margin: 64px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.tour-cta p {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: var(--display-font);
  font-size: 27px;
  line-height: 1.3;
}

.tour-cta-button {
  min-height: 62px;
  padding: 0 38px;
  gap: 14px;
  color: var(--white);
  background: linear-gradient(180deg, #0b5d99, #052f5a);
  box-shadow: 0 14px 30px rgba(4, 45, 93, .24), inset 0 2px 0 var(--gold);
}

.tour-cta-button::after {
  content: "→";
  color: #e8d8b8;
  font-size: 18px;
  transition: transform .2s ease;
}

.tour-cta-button:hover { background: linear-gradient(180deg, #1278bd, #063967); }
.tour-cta-button:hover::after { transform: translateX(4px); }

.experiences {
  padding: 86px clamp(24px, 7vw, 110px) 112px;
  background: var(--header);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading h2 { font-size: clamp(40px, 4.7vw, 62px); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--navy);
}

.experience-grid article {
  min-height: 320px;
  padding: 30px 34px 28px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #bfcfdd;
}

.experience-grid article + article {
  padding-left: 34px;
  border-left: 1px solid #bfcfdd;
}

.number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
}

.experience-grid h3 {
  margin: 58px 0 12px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-grid p {
  max-width: 360px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
}

.experience-grid a {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.experience-grid a:hover { color: var(--navy); }
.experience-grid a span { margin-left: 5px; color: var(--gold); }

.contact-band {
  padding: clamp(58px, 7vw, 96px) clamp(30px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr);
  align-items: end;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(31, 117, 183, .35), transparent 30%),
    var(--navy);
}

.contact-band .eyebrow { color: #8bc7ee; }
.contact-band h2 { max-width: 850px; color: var(--white); }

.contact-actions { display: grid; gap: 15px; }

.button-light {
  margin-bottom: 8px;
  color: var(--navy);
  background: var(--white);
}

.button-light:hover { color: var(--white); background: var(--blue); }

.contact-detail {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: #e8d8b8;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

footer {
  padding: 28px clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  letter-spacing: .04em;
}

.footer-brand {
  width: 145px;
  height: 80px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.footer-brand img { width: 135px; }

footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

footer a { color: var(--navy); font-weight: 600; text-decoration: none; }

@media (max-width: 1050px) {
  .site-header { min-height: 92px; }
  .brand { width: 145px; height: 72px; }
  .brand img { width: 135px; }
  nav { gap: 18px; }
  nav a:not(.nav-button) { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding: 70px 44px; }
  .welcome { grid-template-columns: 1fr; gap: 28px; }
  .tier-grid { gap: 14px; }
  .tier-card { padding-right: 24px; padding-left: 24px; }
}

@media (max-width: 800px) {
  .site-header { padding: 10px 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 600px; padding: 74px 24px 70px; }
  .hero-image { min-height: 480px; }
  .welcome { padding: 72px 24px; }
  .welcome-copy { grid-template-columns: 1fr; gap: 30px; }
  .membership-heading { grid-template-columns: 1fr; gap: 28px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card { min-height: 320px; }
  .membership-footer { align-items: stretch; flex-direction: column; }
  .membership-button { width: 100%; }
  .tour-intro { padding: 42px 24px 82px; }
  .tour-heading { margin-bottom: 44px; }
  .tour-grid { grid-template-columns: 1fr; gap: 44px; }
  .tour-card { max-width: 620px; margin: 0 auto; }
  .tour-card-image { margin-bottom: 22px; }
  .tour-cta { margin-top: 54px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article { min-height: 260px; padding: 28px 0; }
  .experience-grid article + article { padding-left: 0; border-left: 0; }
  .experience-grid h3 { margin-top: 35px; }
  .contact-band { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 640px) {
  .site-header { min-height: 84px; padding: 8px 16px; gap: 16px; }
  .brand { width: 122px; height: 66px; }
  .brand img { width: 118px; }
  .nav-button { min-height: 42px; padding: 0 12px; gap: 7px; font-size: 10px; letter-spacing: .09em; }
  .nav-button::after { font-size: 14px; }
  h1 { font-size: clamp(47px, 12.5vw, 54px); letter-spacing: .025em; }
  .hero-script { font-size: 29px; }
  .hero-text { font-size: 16px; }
  .hero-copy,
  .hero-text { width: 100%; max-width: 100%; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-image { min-height: 390px; }
  .location-card { right: 18px; bottom: 18px; left: 18px; min-width: 0; }
  .experiences { padding: 70px 24px 82px; }
  .memberships { padding: 70px 24px 82px; }
  .memberships-standalone { padding-top: 36px; }
  .tour-intro { padding-top: 36px; }
  .tour-heading h1 { font-size: 44px; }
  .tour-heading > p:last-child { font-size: 16px; }
  .tour-card p { font-size: 16px; }
  .tour-cta-button { width: 100%; }
  .back-link { margin-bottom: 40px; }
  .contact-band { padding: 64px 24px; }
  footer { align-items: flex-start; flex-direction: column; }
  footer > div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
