/* ============================================================
   FRANK'S SOCIAL CLUB — DESIGN SYSTEM
   ============================================================ */

/* 1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* 2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg:         #0D0D0D;
  --color-surface:    #141414;
  --color-surface-2:  #1C1818;
  --color-surface-3:  #201A1A;
  --color-burgundy:   #7A0F1D;
  --color-burgundy-dark: #560B15;
  --color-gold:       #C9A44C;
  --color-gold-dim:   #9E7D38;
  --color-gold-pale:  #E8D5A0;
  --color-cream:      #F0EAD6;
  --color-cream-dim:  #B8B0A0;
  --color-white:      #FFFFFF;

  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'Raleway', 'Helvetica Neue', sans-serif;

  --container-max:    1200px;
  --container-pad:    clamp(1.5rem, 5vw, 4rem);

  --nav-height:       80px;
  --transition-fast:  0.2s ease;
  --transition-med:   0.35s ease;
  --transition-slow:  0.6s ease;

  --radius-sm:        2px;
  --radius-md:        4px;

  --shadow-gold:      0 0 30px rgba(201, 164, 76, 0.15);
  --shadow-card:      0 4px 30px rgba(0, 0, 0, 0.5);
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-cream);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; }
h6 { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }

p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-cream-dim);
  line-height: 1.8;
}

.text-gold       { color: var(--color-gold); }
.text-cream      { color: var(--color-cream); }
.text-center     { text-align: center; }
.text-uppercase  { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-family: var(--font-body); font-weight: 600; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.display-italic {
  font-style: italic;
}

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: 820px;
}

.container--wide {
  max-width: 1400px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mt-xl { margin-top: 4rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

/* 5. ACCESSIBILITY UTILITIES
   ============================================================ */
.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;
}

/* SKIP LINK (ADA)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-gold);
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* 6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 164, 76, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)) drop-shadow(0 1px 3px rgba(0,0,0,0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream-dim);
  padding: 0.5rem 0.75rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--color-gold) !important;
  border: 1px solid var(--color-gold);
  padding: 0.55rem 1.25rem !important;
  transition: background var(--transition-fast), color var(--transition-fast) !important;
  margin-left: 0.75rem;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--color-gold) !important;
  color: #000 !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all var(--transition-med);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--color-cream-dim);
  transition: color var(--transition-fast);
}

.nav-overlay-links a:hover {
  color: var(--color-gold);
}

.nav-overlay-cta {
  margin-top: 2.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold) !important;
  padding: 0.85rem 2.5rem !important;
  font-size: 0.8rem !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition-fast), color var(--transition-fast) !important;
}

.nav-overlay-cta:hover {
  background: var(--color-gold) !important;
  color: #000 !important;
}

/* 7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.55) 0%,
    rgba(13, 13, 13, 0.72) 50%,
    rgba(13, 13, 13, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem var(--container-pad);
  max-width: 860px;
  width: 100%;
}

.hero-logo {
  width: clamp(140px, 20vw, 210px);
  margin: 0 auto 2.5rem;
  filter: none;
}

.hero h1 {
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--color-cream-dim);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (interior pages) */
.page-hero {
  position: relative;
  min-height: clamp(320px, 45vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.6) 0%,
    rgba(13, 13, 13, 0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem var(--container-pad);
}

.page-hero-content h1 {
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* 8. SECTION STYLES
   ============================================================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--color-bg);
}

.section--surface {
  background: var(--color-surface);
}

.section--surface-2 {
  background: var(--color-surface-2);
}

.section--burgundy {
  background: var(--color-burgundy);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.centered {
  text-align: center;
}

/* Gold divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-gold-dim);
  opacity: 0.4;
  margin: 3rem 0;
}

.divider--ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.divider--ornament::before,
.divider--ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gold-dim);
  opacity: 0.4;
}

.divider--ornament .diamond {
  width: 6px;
  height: 6px;
  background: var(--color-gold-dim);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* 9. BUTTON COMPONENTS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: all var(--transition-med);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold);
  color: #000;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(240, 234, 214, 0.4);
  color: var(--color-cream);
}

.btn-secondary:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: #000;
}

.btn-burgundy {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-cream);
}

.btn-burgundy:hover {
  background: var(--color-burgundy-dark);
  border-color: var(--color-burgundy-dark);
}

.btn-gold-fill {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
}

.btn-gold-fill:hover {
  background: var(--color-gold-pale);
  border-color: var(--color-gold-pale);
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* 10. CARD COMPONENTS
   ============================================================ */

/* Membership Card */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.membership-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 164, 76, 0.15);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-med);
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold-dim);
  opacity: 0.4;
  transition: opacity var(--transition-med);
}

.membership-card:hover {
  border-color: rgba(201, 164, 76, 0.45);
  box-shadow: 0 0 24px rgba(201, 164, 76, 0.14), 0 0 48px rgba(201, 164, 76, 0.07);
}

.membership-card--featured:hover {
  box-shadow: 0 0 30px rgba(201, 164, 76, 0.2), 0 0 60px rgba(201, 164, 76, 0.1);
}

.membership-card--featured {
  border-color: rgba(201, 164, 76, 0.4);
  background: var(--color-surface-2);
}

.membership-card--featured::before {
  opacity: 0.8;
}

.membership-card-tier {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.membership-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-top: 0.25rem;
}

.membership-card .tagline {
  font-style: italic;
  color: var(--color-cream-dim);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5;
}

.membership-card-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.membership-card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--color-cream-dim);
  line-height: 1.5;
}

.membership-card-benefits li::before {
  content: '—';
  color: var(--color-gold-dim);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* Event Card */
.event-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
}

.event-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card-img {
  transform: scale(1.05);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.1) 60%);
}

.event-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.event-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.event-card-content p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* Booking Type Card */
.booking-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.booking-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 164, 76, 0.12);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.booking-card:hover {
  border-color: rgba(201, 164, 76, 0.35);
  background: var(--color-surface-2);
}

.booking-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.booking-card h4 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.booking-card p {
  font-size: 0.85rem;
}

/* Cocktail / F&B Card */
.fb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fb-card {
  background: var(--color-surface);
  border: 1px solid rgba(201, 164, 76, 0.1);
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--color-gold-dim);
  transition: box-shadow var(--transition-med);
}

.fb-card:hover {
  box-shadow: var(--shadow-gold);
}

.fb-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.fb-card p {
  font-size: 0.88rem;
}

/* Process Step */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.process-step-number {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-gold);
}

.process-step h4 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.process-step p {
  font-size: 0.85rem;
}

/* Philosophy Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pillar-rule {
  width: 1px;
  height: 48px;
  background: var(--color-gold-dim);
  opacity: 0.6;
}

.pillar h3 {
  font-size: 1.5rem;
  font-style: italic;
}

.pillar p {
  font-size: 0.9rem;
  max-width: 240px;
}

/* 11. GALLERY
   ============================================================ */
.gallery-grid {
  columns: 3;
  column-gap: 0.75rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 164, 76, 0);
  transition: background var(--transition-med);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.gallery-item:hover::after {
  background: rgba(201, 164, 76, 0.06);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201, 164, 76, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-cream);
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-close:hover { color: var(--color-gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-cream);
  font-size: 2rem;
  padding: 1rem;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--color-gold); }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-cream-dim);
}

/* 12. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(201, 164, 76, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(201, 164, 76, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: transform var(--transition-med);
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 0 1.75rem;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.85;
}

/* 13. FORMS
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-surface);
  border: 1px solid rgba(201, 164, 76, 0.2);
  color: var(--color-cream);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184, 176, 160, 0.45);
}

.form-group select option {
  background: var(--color-surface);
  color: var(--color-cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Membership Tier Radio Tiles */
.tier-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.tier-tile input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tier-tile label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(201, 164, 76, 0.2);
  background: var(--color-surface);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cream-dim) !important;
}

.tier-tile label span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-cream);
}

.tier-tile input[type="radio"]:checked + label {
  border-color: var(--color-gold);
  background: rgba(201, 164, 76, 0.08);
  color: var(--color-gold) !important;
}

.tier-tile input[type="radio"]:checked + label span {
  color: var(--color-gold);
}

/* 14. CTA STRIP
   ============================================================ */
.cta-strip {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  text-align: center;
  background: var(--color-surface-2);
  border-top: 1px solid rgba(201, 164, 76, 0.15);
  border-bottom: 1px solid rgba(201, 164, 76, 0.15);
}

.cta-strip h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

.cta-strip p {
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* 15. EXPERIENCE SECTION (homepage)
   ============================================================ */
.experience-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  background: var(--color-bg);
}

.experience-text {
  max-width: 640px;
  margin: 0 auto;
}

.experience-text .large-copy {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--color-cream);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.experience-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-cream-dim);
}

/* Two-column split */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.split-section-text {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: var(--color-surface);
}

.split-section-img {
  overflow: hidden;
}

.split-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image grid */
.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.image-grid-3 figure {
  overflow: hidden;
  aspect-ratio: 3/4;
}

.image-grid-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-grid-3 figure:hover img {
  transform: scale(1.05);
}

.image-grid-3 figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  padding: 0.5rem 0 0;
}

/* 16. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(201, 164, 76, 0.2);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  max-width: 280px;
}

.footer-links h6 {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links ul a {
  font-size: 0.85rem;
  color: var(--color-cream-dim);
  transition: color var(--transition-fast);
}

.footer-links ul a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 76, 0.12);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(184, 176, 160, 0.45);
  letter-spacing: 0.08em;
}

/* 17. ANIMATIONS (scroll-based, no jacking)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger delay for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* 18. FOCUS STATES (ADA)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* 19. MEDIA QUERIES
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .membership-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
  .fb-cards { grid-template-columns: repeat(2, 1fr); }
  .booking-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section-img { min-height: 300px; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 2; }
  .event-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .image-grid-3 { grid-template-columns: 1fr 1fr; }
  .image-grid-3 figure:last-child { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 40px; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tier-tiles { grid-template-columns: 1fr; }
  .booking-types { grid-template-columns: 1fr; }
  .fb-cards { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .gallery-grid { columns: 1; }

  .image-grid-3 { grid-template-columns: 1fr; }
  .image-grid-3 figure:last-child { display: block; }
  .image-grid-3 figure:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
  .btn { padding: 0.8rem 1.6rem; font-size: 0.68rem; }
  .membership-cards { max-width: 100%; }
  .cta-strip { padding: 3rem 0; }
}
