
:root {
  --cream: #f7f3ea;
  --paper: #fbf8f1;
  --paper-2: #f0eadf;
  --burgundy: #7d1f2f;
  --burgundy-dark: #641726;
  --olive: #536a39;
  --olive-dark: #40502c;
  --gold: #c8a352;
  --ink: #2f2925;
  --muted: #645e59;
  --line: rgba(80, 66, 52, 0.16);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: .8rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  background: linear-gradient(180deg, #f8f5ee, #f4efe5);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: .95rem;
  text-decoration: none;
}
.logo-image {
  width: auto;
  height: 84px;
  border-radius: 12px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-title {
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}
.logo-place {
  color: var(--muted);
  font-size: .9rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  padding: .7rem .78rem;
  border-radius: 999px;
}
.nav a:hover,
.nav a.active {
  color: #fff;
  background: var(--burgundy);
}
.nav .cta-nav {
  background: var(--burgundy);
  color: #fff;
}

.club-hero {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8f4eb 0%, #f4eee3 100%);
}
.hero-copy-panel {
  padding: 4rem max(1rem, calc((100vw - var(--shell)) / 2)) 3.4rem max(1rem, calc((100vw - var(--shell)) / 2));
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
  display: block;
}
.club-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.05em;
  color: var(--burgundy);
  max-width: 580px;
}
.club-strap {
  margin: 1rem 0 1rem;
  color: #9b6930;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: 1rem;
  max-width: 600px;
}
.hero-copy {
  max-width: 540px;
  margin: 0 0 1.4rem;
  font-size: 1.08rem;
  color: #3c3632;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  padding: .95rem 1.3rem;
  font-weight: 900;
  transition: transform .18s ease, filter .18s ease;
}
.primary-button {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: #fff;
}
.secondary-button {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(125,31,47,.18);
  color: var(--burgundy);
}
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.example-chip {
  margin-top: 1rem;
  display: inline-flex;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(125,31,47,.15);
  background: rgba(255,255,255,.7);
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
}
.hero-image-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero-room-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.welcome-badge {
  position: absolute;
  right: max(1rem, calc((100vw - var(--shell)) / 2));
  bottom: 2rem;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.1rem;
  background: rgba(247,243,234,.94);
  border: 4px double rgba(200,163,82,.75);
  box-shadow: 0 18px 44px rgba(60,40,35,.18);
}
.welcome-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: .9;
  color: var(--burgundy);
  margin: .1rem 0;
}
.welcome-badge span {
  color: #8a6633;
  font-weight: 700;
}
.welcome-badge small {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trust-strip {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2.2rem 0;
}
.trust-card {
  text-align: center;
  padding: 0 1.3rem;
  border-right: 1px solid var(--line);
}
.trust-card:last-child { border-right: 0; }
.trust-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto .75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: #fff;
}
.trust-icon.burgundy { background: var(--burgundy); }
.trust-icon.olive { background: var(--olive); }
.trust-card h2 {
  margin: 0 0 .35rem;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}
.trust-card p {
  margin: 0;
  color: var(--muted);
}

.offer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer-side {
  display: grid;
  grid-template-columns: .72fr 1fr;
  min-height: 430px;
}
.offer-side.right {
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.35));
}
.offer-image {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}
.offer-image.membership { background-image: url("assets/membership-bar.jpg"); }
.offer-image.function { background-image: url("assets/function-room.jpg"); }
.offer-content {
  padding: 2.2rem 2rem;
  position: relative;
}
.membership-panel {
  background: linear-gradient(135deg, var(--burgundy), #89243b);
  color: #fff;
}
.membership-panel h2,
.function-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: .95;
}
.subscript {
  display: block;
  margin-top: .3rem;
  color: var(--gold);
  font-style: italic;
  font-size: 1.35rem;
}
.membership-panel p,
.function-panel p {
  margin: 1rem 0;
  max-width: 420px;
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: .45rem;
}
.tick-list li {
  position: relative;
  padding-left: 1.5rem;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}
.price-badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--gold);
  color: var(--burgundy-dark);
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
}
.price-badge .small {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.price-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: .9;
}
.function-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.84));
}
.function-panel p,
.function-panel li { color: #3c3632; }
.function-panel .price-badge {
  background: var(--olive);
  color: #fff;
}

.whats-on {
  padding: 2.8rem max(1rem, calc((100vw - var(--shell)) / 2));
  background: var(--paper);
}
.section-heading {
  text-align: center;
  margin-bottom: 1.4rem;
}
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  color: var(--burgundy);
  line-height: .95;
}
.section-heading p {
  margin: .45rem auto 0;
  max-width: 650px;
  color: var(--muted);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.event-card {
  background: #fff;
  border: 1px solid rgba(80,66,52,.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(40,34,28,.06);
}
.event-card img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}
.event-body {
  padding: 1rem .95rem 1.05rem;
  text-align: center;
}
.event-body h3 {
  margin: 0;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1;
}
.event-body .when {
  display: block;
  margin-top: .35rem;
  color: #8a6633;
  font-style: italic;
  font-weight: 700;
}
.event-body p {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.center-cta {
  text-align: center;
  margin-top: 1.2rem;
}

.facilities-strip {
  background: linear-gradient(180deg, #ece7d8, #e6dfd0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facilities-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.facility {
  text-align: center;
  padding: 1.1rem .6rem;
  border-right: 1px solid rgba(80,66,52,.1);
}
.facility:last-child { border-right: 0; }
.facility span {
  display: block;
  font-size: 1.8rem;
  color: var(--burgundy);
  margin-bottom: .35rem;
}
.facility strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 2rem max(1rem, calc((100vw - var(--shell)) / 2));
  background: var(--paper);
}
.info-card {
  padding: 0 1.35rem;
  border-right: 1px solid var(--line);
}
.info-card:last-child { border-right: 0; }
.info-card h2 {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .9rem;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}
.info-card h2 span {
  color: #b38c43;
  font-size: 1.3rem;
}
.info-card p {
  margin: 0 0 .75rem;
  color: #3f3935;
}
.info-card small {
  color: var(--muted);
}
.hours-list {
  margin: 0;
}
.hours-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .7rem;
  margin-bottom: .25rem;
}
.hours-list dt { font-weight: 800; }
.hours-list dd { margin: 0; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .45rem;
}
.check-list li {
  position: relative;
  padding-left: 1.45rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 900;
}
.inline-photo {
  margin-top: .8rem;
  border: 1px solid rgba(80,66,52,.08);
  box-shadow: 0 14px 32px rgba(40,34,28,.08);
}
.inline-photo img {
  width: 100%;
  aspect-ratio: 1.1 / .95;
  object-fit: cover;
}

.bottom-cta {
  background: linear-gradient(90deg, var(--burgundy), #8a233a);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bottom-cta-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  padding: 1.3rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.bottom-cta h2 {
  margin: 0 0 .25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}
.bottom-cta p {
  margin: 0;
  color: rgba(255,255,255,.85);
}
.email-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  text-align: center;
  min-width: 320px;
}
.email-box strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
}
.email-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  background: #1f1a18;
  color: #fff;
}
.footer-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .7fr .85fr;
  gap: 3rem;
  padding: 2.6rem 0;
}
.footer-logo {
  width: 110px;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.footer-brand-block p {
  color: rgba(255,255,255,.72);
  max-width: 390px;
}
.footer-tagline { color: #fff !important; }
.site-footer h3 {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li { margin-bottom: .42rem; }
.footer-links a,
.site-footer a {
  color: rgba(255,255,255,.84);
}
.footer-bottom {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }
  .club-hero,
  .offer-split,
  .info-band,
  .footer-inner,
  .bottom-cta-inner {
    grid-template-columns: 1fr;
  }
  .trust-strip,
  .event-grid,
  .facilities-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-side {
    grid-template-columns: .7fr 1fr;
  }
  .info-card {
    border-right: 0;
    padding: 0 0 1.8rem;
  }
}

@media (max-width: 720px) {
  .logo-image { height: 70px; }
  .logo-text { display: none; }
  .nav { gap: .1rem; }
  .nav a { font-size: .82rem; padding: .55rem .62rem; }
  .hero-copy-panel { padding-top: 3rem; padding-bottom: 2rem; }
  .hero-image-panel { min-height: 380px; }
  .welcome-badge {
    right: 1rem;
    width: 165px;
    height: 165px;
  }
  .trust-strip,
  .event-grid,
  .facilities-inner {
    grid-template-columns: 1fr;
  }
  .trust-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
  }
  .trust-card:last-child { border-bottom: 0; }
  .offer-side {
    grid-template-columns: 1fr;
  }
  .offer-image {
    min-height: 220px;
  }
  .price-badge {
    position: static;
    margin-top: 1rem;
  }
  .info-band {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hours-list div {
    grid-template-columns: 1fr;
    gap: .02rem;
  }
  .email-box {
    min-width: 0;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
