:root {
  --ink: #1c1818;
  --ink-2: #2a2424;
  --muted: #6d6464;
  --paper: #fffdf9;
  --cream: #f4eee5;
  --cream-2: #ece2d5;
  --red: #8e2330;
  --red-dark: #64151f;
  --red-deep: #431017;
  --red-soft: #f4e3e5;
  --gold: #c8a76c;
  --line: #ded5cc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(34, 20, 20, .13);
  --shadow-soft: 0 12px 36px rgba(34, 20, 20, .08);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.modal-open { overflow: hidden; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.62; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 7vw, 90px); }
h2 { font-size: clamp(34px, 4.2vw, 56px); }
h3 { font-size: 24px; }
p { margin: 0; }
:focus-visible { outline: 3px solid #e0aeb5; outline-offset: 3px; }

.container { width: min(calc(100% - 42px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(28,24,24,.97); color: white; border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { width: 62px; height: 62px; object-fit: cover; border-radius: 14px; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.brand-copy { display: grid; line-height: 1.14; }
.brand-copy strong { font-size: 16px; letter-spacing: -.025em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 31px 0 28px; color: rgba(255,255,255,.78); }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 2px; background: #e6bdc3; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: #fff; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 14px 22px; font-weight: 800; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.nav-cta { background: var(--red); color: white; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: white; margin: 5px 0; }

/* Buttons & labels */
.button-primary { background: var(--red); color: white; box-shadow: 0 14px 30px rgba(107,20,31,.22); }
.button-dark { background: var(--ink); color: white; }
.button-light { background: white; color: var(--red-dark); }
.button-outline { background: transparent; border: 1px solid rgba(28,24,24,.22); color: var(--ink); }
.button-outline-light { background: transparent; border: 1px solid rgba(255,255,255,.46); color: white; }
.text-link { color: var(--red); font-weight: 800; }
.eyebrow, .hero-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before, .hero-kicker::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.eyebrow.light, .hero-kicker { color: #f1c7cc; }
.lead { font-size: 20px; color: var(--muted); max-width: 760px; }

/* Hero */
.hero { background: var(--ink); color: white; overflow: hidden; }
.hero-grid { min-height: 700px; display: grid; grid-template-columns: 1.02fr .98fr; }
.hero-copy { display: flex; align-items: center; padding: 84px max(5vw,42px) 84px max(3vw,0px); }
.hero-copy-inner { max-width: 700px; margin-left: auto; }
.hero h1 { margin-top: 18px; max-width: 780px; }
.hero p { margin-top: 24px; max-width: 620px; color: rgba(255,255,255,.75); font-size: 20px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-photo { position: relative; min-height: 600px; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(28,24,24,.45),transparent 32%), linear-gradient(0deg,rgba(28,24,24,.28),transparent 46%); }
.hero-badge { position: absolute; z-index: 2; left: 34px; bottom: 34px; background: rgba(255,253,249,.95); color: var(--ink); padding: 18px 20px; border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-badge strong { display: block; font-size: 22px; }
.hero-badge span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }
.highlight-strip { background: var(--red-dark); color: white; }
.highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.highlight { padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.highlight:last-child { border-right: 0; }
.highlight strong { display: block; font-size: 25px; line-height: 1.15; }
.highlight span { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: 13px; }

/* Shared sections */
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.section-red { background: var(--red-dark); color: white; }
.section-dark { background: var(--ink); color: white; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.section-head > div { max-width: 720px; }
.section-head h2 { margin-top: 12px; }
.section-head p { max-width: 500px; color: var(--muted); }
.section-red .section-head p, .section-dark .section-head p { color: rgba(255,255,255,.68); }

/* Facility cards */
.facility-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.facility-card { position: relative; overflow: hidden; min-height: 350px; border-radius: var(--radius); box-shadow: var(--shadow-soft); color: white; }
.facility-card:nth-child(1), .facility-card:nth-child(4) { grid-column: span 7; }
.facility-card:nth-child(2), .facility-card:nth-child(3) { grid-column: span 5; }
.facility-card:nth-child(5), .facility-card:nth-child(6) { grid-column: span 6; }
.facility-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.facility-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(26,18,18,.92) 0%,rgba(26,18,18,.55) 48%,rgba(26,18,18,.05) 82%); }
.facility-card:hover img { transform: scale(1.03); }
.facility-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 30px; }
.facility-content span { color: #f3c7cc; font-weight: 900; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.facility-content h3 { margin-top: 8px; font-size: 31px; }
.facility-content p { margin-top: 10px; color: rgba(255,255,255,.78); max-width: 560px; }
.facility-content .text-link { display: inline-block; margin-top: 15px; color: white; }

/* Feature bands */
.feature-band { display: grid; grid-template-columns: 1.06fr .94fr; overflow: hidden; border-radius: 30px; background: var(--red-dark); color: white; box-shadow: var(--shadow); }
.feature-band-media { min-height: 520px; position: relative; }
.feature-band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-band-copy { padding: 58px; display: flex; flex-direction: column; justify-content: center; }
.feature-band-copy h2 { margin-top: 12px; }
.feature-band-copy p { margin-top: 18px; color: rgba(255,255,255,.72); }
.feature-band-copy .button { align-self: flex-start; margin-top: 28px; }
.price-chip { display: inline-grid; align-self: flex-start; margin-top: 28px; padding: 14px 18px; border-radius: 15px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }
.price-chip strong { font-size: 31px; line-height: 1; }
.price-chip span { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 12px; }
.member-split { display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; background: white; box-shadow: var(--shadow-soft); }
.member-split-copy { padding: 58px; display: flex; flex-direction: column; justify-content: center; }
.member-split-copy h2 { margin-top: 12px; }
.member-split-copy > p { margin-top: 18px; color: var(--muted); }
.member-split-copy .button { align-self: flex-start; margin-top: 28px; }
.member-split-media { min-height: 480px; }
.member-split-media img { width: 100%; height: 100%; object-fit: cover; }
.single-column { grid-template-columns: 1fr !important; }

/* Galleries */
.home-gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 230px; gap: 14px; }
.home-gallery a, .club-photo-grid a, .room-gallery-curated a { overflow: hidden; border-radius: 18px; background: var(--cream-2); }
.home-gallery a:first-child { grid-row: span 2; }
.home-gallery a:last-child { grid-column: span 2; }
.home-gallery img, .club-photo-grid img, .room-gallery-curated img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.home-gallery a:hover img, .club-photo-grid a:hover img, .room-gallery-curated a:hover img { transform: scale(1.025); }
.club-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.club-photo-grid a { aspect-ratio: 4/3; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.review-stars { color: var(--red); letter-spacing: .12em; font-size: 15px; }
.review-card p { margin-top: 16px; color: var(--ink-2); font-size: 17px; }
.review-card strong { display: block; margin-top: 24px; color: var(--red-dark); }

/* Visit */
.visit-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.visit-copy h2 { margin-top: 12px; }
.visit-copy p { margin-top: 18px; color: rgba(255,255,255,.68); font-size: 18px; }
.visit-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.visit-hours { border-top: 1px solid rgba(255,255,255,.16); }
.visit-hours h3 { padding: 0 0 14px; color: #f1c7cc; }
.visit-hours div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); }
.visit-hours span { color: rgba(255,255,255,.55); }

/* Committee */
.committee-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.committee-intro h2 { margin-top: 12px; }
.committee-intro p { margin-top: 18px; color: rgba(255,255,255,.64); }
.committee-list { border-top: 1px solid rgba(255,255,255,.17); }
.committee-row { display: grid; grid-template-columns: 190px 1fr; gap: 22px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.committee-row strong { color: #f0c2c7; }
.committee-row span { color: rgba(255,255,255,.8); }

/* Page hero */
.page-hero { position: relative; overflow: hidden; background: var(--ink); color: white; }
.page-hero-grid { min-height: 430px; display: grid; grid-template-columns: 1.1fr .9fr; }
.page-hero-copy { display: flex; align-items: center; padding: 70px 50px 70px 0; }
.page-hero-copy h1 { margin-top: 14px; font-size: clamp(46px,6vw,74px); }
.page-hero-copy p { margin-top: 18px; color: rgba(255,255,255,.7); max-width: 650px; font-size: 18px; }
.page-hero-art { position: relative; min-height: 360px; }
.page-hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,var(--ink) 0%,rgba(28,24,24,.3) 35%,rgba(28,24,24,.08) 100%); }
.page-hero-noimage { padding: 86px 0 70px; background: linear-gradient(135deg,var(--ink) 0 66%,var(--red-dark) 66% 100%); color: white; }
.page-hero-noimage h1 { margin-top: 14px; font-size: clamp(46px,6vw,74px); }
.page-hero-noimage p { margin-top: 18px; color: rgba(255,255,255,.7); max-width: 700px; font-size: 18px; }

/* Our Club */
.about-club-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.about-club-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.about-club-copy h2 { margin-top: 12px; }
.about-club-copy p { margin-top: 18px; color: var(--muted); }
.about-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.about-stat-row div { padding: 18px; background: var(--cream); border-radius: 16px; }
.about-stat-row strong { display: block; color: var(--red-dark); font-size: 24px; }
.about-stat-row span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.club-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.club-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; min-height: 100%; }
.club-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.club-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.club-card:hover .club-card-media img { transform: scale(1.025); }
.club-card-copy { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.club-card-index { color: var(--red); font-weight: 900; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.club-card h3 { font-size: 33px; margin-top: 9px; }
.club-card p { margin-top: 14px; color: var(--muted); }
.club-card p + p { margin-top: 10px; }
.club-card .button { margin-top: 24px; align-self: flex-start; padding-top: 13px; padding-bottom: 13px; }

/* Membership */
.membership-top { padding-top: 0; }
.membership-hero-card { margin-top: -44px; position: relative; z-index: 3; display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.membership-price { background: var(--red); color: white; padding: 46px; display: flex; flex-direction: column; justify-content: center; }
.membership-price strong { font-size: clamp(72px,10vw,116px); line-height: .82; letter-spacing: -.07em; }
.membership-price span { margin-top: 14px; color: rgba(255,255,255,.8); font-weight: 800; }
.membership-price small { margin-top: 8px; color: rgba(255,255,255,.62); }
.membership-benefits { padding: 46px; }
.membership-benefits h2 { margin-top: 12px; font-size: 39px; }
.tick-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.tick-list li { position: relative; padding-left: 29px; color: var(--ink-2); }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--red-soft); color: var(--red-dark); font-size: 12px; font-weight: 900; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.process-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.process-no { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: white; font-weight: 900; }
.process-card h3 { margin-top: 22px; }
.process-card p { margin-top: 12px; color: var(--muted); }
.image-callout { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; background: var(--ink); color: white; }
.image-callout img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.image-callout-copy { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.image-callout-copy h2 { margin-top: 12px; }
.image-callout-copy p { margin-top: 17px; color: rgba(255,255,255,.7); }
.image-callout-copy .button { align-self: flex-start; margin-top: 26px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-top: 12px; }
.faq-intro p { margin-top: 18px; color: var(--muted); }
.faq-intro .button { margin-top: 26px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 23px 50px 23px 0; font-size: 19px; font-weight: 850; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 17px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--red-dark); font-size: 22px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 50px 24px 0; color: var(--muted); }

/* Function room */
.room-hero { position: relative; min-height: 630px; display: flex; align-items: end; color: white; overflow: hidden; background: var(--ink); }
.room-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(28,24,24,.94),rgba(28,24,24,.62) 50%,rgba(28,24,24,.12)), linear-gradient(0deg,rgba(28,24,24,.55),transparent 60%); }
.room-hero-content { position: relative; z-index: 2; padding: 88px 0 70px; max-width: 800px; }
.room-hero-content h1 { margin-top: 14px; font-size: clamp(50px,7vw,86px); }
.room-hero-content p { margin-top: 20px; max-width: 700px; color: rgba(255,255,255,.8); font-size: 19px; }
.room-rates-section { padding-top: 0; }
.rate-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: -52px; position: relative; z-index: 3; }
.rate-card { background: white; border-radius: 22px; padding: 30px; box-shadow: var(--shadow); border-top: 5px solid var(--red); }
.rate-card span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; }
.rate-card strong { display: block; margin-top: 7px; font-size: 44px; line-height: 1; color: var(--red-dark); }
.rate-card p { margin-top: 12px; color: var(--muted); }
.room-details { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.room-details img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.room-details-copy h2 { margin-top: 12px; }
.room-details-copy p { margin-top: 17px; color: var(--muted); }
.room-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.room-fact { padding: 15px 16px; border-radius: 14px; background: var(--cream); font-weight: 750; }
.occasion-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.occasion-grid article { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 26px; }
.occasion-grid article > span { display: inline-block; font-size: 30px; }
.occasion-grid h3 { margin-top: 16px; font-size: 22px; }
.occasion-grid p { margin-top: 10px; color: var(--muted); }
.room-gallery-curated { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: repeat(2,250px); gap: 14px; }
.room-gallery-curated a { min-height: 0; }
.room-gallery-main { grid-row: 1 / span 2; }
.room-enquiry-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: start; }
.room-enquiry-intro { position: sticky; top: 120px; }
.room-enquiry-intro h2 { margin-top: 12px; }
.room-enquiry-intro > p { margin-top: 18px; color: rgba(255,255,255,.68); }
.enquiry-contact-list { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.15); }
.enquiry-contact-list div { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.enquiry-contact-list span { display: block; color: #e7b8be; font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.enquiry-contact-list a { display: inline-block; margin-top: 4px; font-size: 19px; font-weight: 800; }
.contact-form-on-dark { box-shadow: none; }

/* Contact */
.contact-top-section { padding-top: 0; }
.contact-quick-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: -38px; position: relative; z-index: 3; }
.contact-quick-grid article { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 25px; box-shadow: var(--shadow-soft); }
.contact-quick-grid article > span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.contact-quick-grid h3 { margin-top: 9px; font-size: 20px; overflow-wrap: anywhere; }
.contact-quick-grid p { margin-top: 9px; color: var(--muted); font-size: 13px; }
.contact-quick-grid article > a { display: inline-block; margin-top: 13px; color: var(--red-dark); font-weight: 800; font-size: 13px; }
.contact-email-heading { font-size: 17px !important; }
.visit-map-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: stretch; }
.map-card { overflow: hidden; border-radius: var(--radius); min-height: 530px; background: var(--cream); box-shadow: var(--shadow-soft); }
.map-card iframe { border: 0; width: 100%; height: 100%; min-height: 530px; }
.opening-card { background: var(--ink); color: white; border-radius: var(--radius); padding: 38px; }
.opening-card h2 { margin-top: 12px; font-size: 42px; }
.opening-card > p { margin-top: 18px; color: rgba(255,255,255,.62); font-size: 13px; }
.opening-card .button { margin-top: 24px; }
.opening-table { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.opening-table div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.opening-table span { color: rgba(255,255,255,.55); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: start; }
.contact-layout-balanced { grid-template-columns: .9fr 1.1fr; }
.contact-panel { background: var(--ink); color: white; border-radius: var(--radius); padding: 36px; }
.contact-panel h2 { margin-top: 12px; font-size: 38px; }
.contact-panel > p { margin-top: 14px; color: rgba(255,255,255,.66); }
.contact-panel > .button { margin-top: 26px; }
.contact-stack { margin-top: 30px; display: grid; gap: 0; }
.compact-contact-stack { margin-top: 28px; }
.contact-item { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-item > span { display: block; color: #e7b8be; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.contact-item a, .contact-item strong { display: block; font-size: 17px; }
.contact-item a + a { margin-top: 4px; color: rgba(255,255,255,.58); font-size: 13px; }
.contact-form { border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 36px; box-shadow: var(--shadow-soft); color: var(--ink); }
.contact-form h2 { margin-top: 10px; font-size: 38px; }
.form-grid { margin-top: 26px; display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; font-weight: 750; font-size: 14px; }
.form-grid input, .form-grid textarea, .form-grid select { width: 100%; border: 1px solid #cfc5bd; border-radius: 13px; padding: 13px 14px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-grid textarea { min-height: 160px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.form-note { color: var(--muted); font-size: 12px; }
.form-note a { text-decoration: underline; }
.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 13px; font-weight: 700; }
.form-status.success { background: #e6f2e9; color: #225b32; }
.form-status.error { background: #f9e8e9; color: #8a202d; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Lightbox */
.lightbox { width: min(1200px, calc(100vw - 40px)); max-width: none; height: min(88vh, 900px); padding: 0; border: 0; border-radius: 22px; background: #121010; color: white; overflow: hidden; box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(12,8,8,.88); backdrop-filter: blur(5px); }
.lightbox figure { margin: 0; width: 100%; height: 100%; display: grid; grid-template-rows: 1fr auto; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; min-height: 0; }
.lightbox figcaption { padding: 13px 70px 16px; text-align: center; color: rgba(255,255,255,.7); font-size: 13px; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 3; border: 0; color: white; background: rgba(0,0,0,.48); cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(6px); }
.lightbox-close { right: 16px; top: 16px; width: 44px; height: 44px; border-radius: 50%; font-size: 29px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 64px; border-radius: 14px; font-size: 42px; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

/* Legal */
.policy { max-width: 840px; }
.policy p { color: var(--muted); }
.policy h2 { margin-top: 38px; margin-bottom: 12px; font-size: 28px; }
.policy a { color: var(--red-dark); text-decoration: underline; }

/* Footer */
.footer-cta { background: var(--red); color: white; }
.footer-cta-inner { min-height: 180px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.footer-cta h2 { margin-top: 9px; font-size: clamp(30px,4vw,46px); }
.footer-cta p { margin-top: 10px; color: rgba(255,255,255,.72); max-width: 700px; }
.site-footer { background: #141111; color: white; padding: 62px 0 26px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr 1fr .7fr; gap: 48px; }
.footer-grid h3 { font-size: 15px; letter-spacing: .03em; }
.footer-grid p, .footer-grid address, .footer-grid > div > a { display: block; margin-top: 10px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-copy strong { color: white; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.46); }
.footer-logo { width: 70px; height: 70px; }
.social-link { margin-top: 18px !important; color: #efc0c6 !important; font-weight: 800; }
.hours-list { display: grid; margin-top: 6px; }
.hours-list div { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.hours-list span { color: rgba(255,255,255,.48); }
.hours-list strong { white-space: nowrap; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.4); font-size: 12px; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-grid a:hover, .footer-bottom a:hover { color: white; }

/* Responsive */
@media (max-width: 1000px) {
  .site-nav { position: fixed; left: 20px; right: 20px; top: 78px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.nav-cta) { padding: 13px 14px; border-radius: 10px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav > a[aria-current="page"] { background: rgba(255,255,255,.08); }
  .nav-cta { margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 32px; }
  .hero-copy-inner { max-width: none; margin: 0 auto; width: min(100%,var(--max)); }
  .hero-photo { min-height: 460px; }
  .page-hero-copy { padding: 64px 0; }
  .page-hero-art { min-height: 340px; }
  .facility-card:nth-child(n) { grid-column: span 6; }
  .feature-band, .member-split, .room-details, .image-callout, .about-club-grid { grid-template-columns: 1fr; }
  .feature-band-media { min-height: 420px; }
  .member-split-media { min-height: 390px; order: -1; }
  .membership-hero-card { grid-template-columns: 1fr; }
  .committee-panel, .contact-layout, .visit-panel, .faq-layout, .room-enquiry-layout, .visit-map-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro, .room-enquiry-intro { position: static; }
  .review-grid { grid-template-columns: 1fr; }
  .rate-grid { grid-template-columns: 1fr 1fr; }
  .rate-card:last-child { grid-column: 1 / -1; }
  .occasion-grid, .contact-quick-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .club-photo-grid { grid-template-columns: 1fr 1fr; }
  .room-gallery-curated { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px 220px; }
  .room-gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .map-card, .map-card iframe { min-height: 430px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; }
  .brand-logo { width: 50px; height: 50px; border-radius: 11px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { display: none; }
  .site-nav { top: 68px; left: 14px; right: 14px; }
  .hero-copy { padding: 60px 14px; }
  .hero-copy-inner { width: 100%; }
  .hero p { font-size: 17px; }
  .hero-photo { min-height: 390px; }
  .hero-badge { left: 14px; bottom: 14px; right: 14px; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 70px 0; }
  .section-head { flex-direction: column; align-items: start; margin-bottom: 30px; }
  .facility-grid { grid-template-columns: 1fr; }
  .facility-card:nth-child(n) { grid-column: auto; min-height: 330px; }
  .facility-content { padding: 24px; }
  .facility-content h3 { font-size: 28px; }
  .feature-band-copy, .member-split-copy { padding: 32px; }
  .home-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .home-gallery a:first-child { grid-row: span 2; }
  .home-gallery a:last-child { grid-column: 1 / -1; }
  .club-grid { grid-template-columns: 1fr; }
  .club-card h3 { font-size: 30px; }
  .club-card-copy { padding: 26px; }
  .about-stat-row { grid-template-columns: 1fr; }
  .club-photo-grid { grid-template-columns: 1fr; }
  .membership-hero-card { margin-top: -24px; }
  .membership-price, .membership-benefits { padding: 32px; }
  .tick-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .image-callout-copy { padding: 32px; }
  .faq-list summary { padding-right: 46px; }
  .room-hero { min-height: 570px; }
  .room-hero-content { padding: 70px 0 54px; }
  .rate-grid { grid-template-columns: 1fr; margin-top: -34px; }
  .rate-card:last-child { grid-column: auto; }
  .room-facts { grid-template-columns: 1fr; }
  .occasion-grid, .contact-quick-grid { grid-template-columns: 1fr; }
  .room-gallery-curated { grid-template-columns: 1fr; grid-template-rows: repeat(5,240px); }
  .room-gallery-main { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-panel, .opening-card { padding: 26px; }
  .committee-row { grid-template-columns: 1fr; gap: 4px; }
  .map-card, .map-card iframe { min-height: 360px; }
  .footer-cta-inner { min-height: 0; padding: 46px 0; flex-direction: column; align-items: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .lightbox { width: calc(100vw - 18px); height: calc(100vh - 24px); border-radius: 16px; }
  .lightbox-nav { width: 40px; height: 56px; }
  .lightbox figcaption { padding-inline: 55px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* v1.3.0 refinements */
.occasion-no { display: grid !important; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red-soft); color: var(--red-dark); font-size: 13px !important; font-weight: 900; letter-spacing: .08em; }
.map-card-placeholder { position: relative; isolation: isolate; }
.map-card-placeholder > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-card-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,24,24,.88), rgba(28,24,24,.42)); z-index: 1; }
.map-card-overlay { position: relative; z-index: 2; color: white; padding: 42px; max-width: 620px; min-height: 530px; display: flex; flex-direction: column; justify-content: center; }
.map-card-overlay h2 { margin-top: 12px; font-size: clamp(34px,4vw,52px); }
.map-card-overlay p { margin-top: 16px; color: rgba(255,255,255,.72); max-width: 500px; }
.map-card-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
@media (max-width: 1000px) { .map-card-overlay { min-height: 430px; } }
@media (max-width: 700px) { .map-card-overlay { min-height: 360px; padding: 28px; } }

/* v1.3.3 mobile footer refinement */
@media (max-width: 700px) {
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }
  .footer-brand .brand-copy {
    display: block;
  }
  .footer-brand .brand-copy strong {
    display: block;
    line-height: 1.2;
  }
  .footer-about > p {
    margin-top: 0;
  }
}

/* v1.5.1 visual refinement pass */
/* Keep strong hierarchy without letting headings dominate the whole viewport. */
h1 { font-size: clamp(44px, 5.5vw, 76px); }
h2 { font-size: clamp(32px, 3.6vw, 50px); }

.hero-grid { min-height: 620px; }
.hero-copy { padding-top: 72px; padding-bottom: 72px; }
.hero-copy-inner { max-width: 660px; }
.hero h1 { max-width: 650px; font-size: clamp(48px, 5vw, 68px); line-height: .98; }
.hero .hero-tagline { margin-top: 18px; max-width: 590px; color: #fff; font-size: clamp(24px, 2vw, 30px); line-height: 1.18; font-weight: 760; letter-spacing: -.025em; }
.hero .hero-summary { margin-top: 20px; max-width: 590px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.hero-photo { min-height: 540px; }

.page-hero-grid { min-height: 390px; }
.page-hero-copy { padding-top: 60px; padding-bottom: 60px; }
.page-hero-copy h1,
.page-hero-noimage h1 { font-size: clamp(42px, 4.7vw, 62px); line-height: 1; max-width: 780px; }
.page-hero-noimage { padding-top: 70px; padding-bottom: 58px; }
.page-hero-compact { padding-top: 52px; padding-bottom: 46px; }
.page-hero-compact h1 { font-size: clamp(38px, 4vw, 52px); }
.page-hero-compact p { margin-top: 13px; }

/* Our Club: make every facility card visually consistent regardless of source image orientation. */
.club-card-media { aspect-ratio: auto; height: 285px; flex: 0 0 auto; }
#live-music .club-card-media img { object-position: center 28%; }
.facility-card[href*="live-music"] img { object-position: center 30%; }

.membership-price strong { font-size: clamp(68px, 7.5vw, 94px); }
.membership-benefits h2 { font-size: clamp(32px, 3vw, 39px); }

.room-hero { min-height: 560px; }
.room-hero-content { padding-top: 72px; padding-bottom: 58px; max-width: 760px; }
.room-hero-content h1 { font-size: clamp(46px, 5.2vw, 68px); line-height: 1; }
.room-hero-content p { font-size: 18px; }

.map-card,
.map-card iframe { min-height: 470px; }
.map-card-overlay { min-height: 470px; }

/* Footer is information-rich, but it should not become a second full page on a phone. */
.hours-list-compact div { padding-block: 9px; }
.hours-list-compact span { white-space: nowrap; }

@media (max-width: 1000px) {
  .hero-grid { min-height: 0; }
  .hero-copy { padding: 64px 32px; }
  .hero h1 { max-width: 760px; }
  .hero-photo { min-height: 420px; }
  .page-hero-grid { min-height: 0; }
  .page-hero-copy { padding: 54px 0; }
  .club-card-media { height: 260px; }
  .room-hero { min-height: 520px; }
  .map-card, .map-card iframe, .map-card-overlay { min-height: 400px; }
}

@media (max-width: 700px) {
  h1 { font-size: 40px; line-height: 1.02; }
  h2 { font-size: 32px; line-height: 1.06; }
  .hero-copy { padding: 48px 14px 52px; }
  .hero h1 { font-size: 43px; line-height: .98; }
  .hero .hero-tagline { font-size: 23px; line-height: 1.2; }
  .hero .hero-summary { font-size: 16px; line-height: 1.62; }
  .hero-actions { margin-top: 26px; }
  .hero-photo { min-height: 330px; }
  .hero-badge strong { font-size: 19px; }
  .page-hero-copy { padding: 46px 0; }
  .page-hero-copy h1,
  .page-hero-noimage h1 { font-size: 39px; line-height: 1.02; }
  .page-hero-noimage { padding-top: 52px; padding-bottom: 46px; }
  .page-hero-compact { padding-top: 40px; padding-bottom: 36px; }
  .page-hero-compact h1 { font-size: 36px; }
  .section { padding: 62px 0; }
  .section-head { gap: 16px; }
  .club-card-media { height: 225px; }
  .membership-price strong { font-size: 76px; }
  .room-hero { min-height: 500px; }
  .room-hero-content { padding-top: 58px; padding-bottom: 48px; }
  .room-hero-content h1 { font-size: 42px; line-height: 1.02; }
  .room-hero-content p { font-size: 16px; }
  .rate-card strong { font-size: 38px; }
  .map-card, .map-card iframe, .map-card-overlay { min-height: 330px; }
  .map-card-overlay h2 { font-size: 32px; }
  .opening-card h2,
  .contact-panel h2,
  .contact-form h2 { font-size: 32px; }
  .footer-cta h2 { font-size: 32px; }
  .footer-grid { gap: 28px; }
  .site-footer { padding-top: 50px; }
}


/* v1.6.1 Turnstile form protection */
.turnstile-wrap { width: 100%; max-width: 520px; min-height: 65px; overflow: hidden; border-radius: 10px; }
.turnstile-wrap .cf-turnstile { width: 100%; }
@media (max-width: 360px) {
  .contact-form { padding-left: 12px; padding-right: 12px; }
}
