/* BEKAL CLUB - Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Default Theme Tokens - Overwritten dynamically by state.js */
  --primary-color: #0f172a;
  --secondary-color: #b45309;
  --accent-color: #0284c7;
  --bg-color: #fafaf9;
  --text-color: #1c1917;
  --card-bg: #ffffff;
  --navbar-bg: rgba(255, 255, 255, 0.97);
  --logo-height: 40px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --spacing-container: 1200px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn var(--transition-normal) forwards;
}

.animate-slide-up {
  animation: slideUp var(--transition-slow) forwards;
}

/* Core Layouts */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.nav-container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}

.nav-top-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-accent {
  color: var(--secondary-color);
}

.site-logo {
  height: var(--logo-height, 40px);
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .nav-links {
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
  }
}

.nav-link {
  color: rgba(28, 25, 23, 0.65);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-fast);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background-color: #d97706; /* Hover shade */
}

/* User Widget */
.user-widget {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.user-badge {
  background-color: rgba(15, 23, 42, 0.06);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--primary-color);
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981; /* Green status dot */
  border-radius: 50%;
}

.logout-btn {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.25);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.logout-btn:hover {
  background-color: rgba(15, 23, 42, 0.06);
  border-color: var(--primary-color);
}

/* Footer Section */
footer {
  background-color: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 2rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo-slot {
  margin-bottom: 1rem;
  display: block;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.footer-logo-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.35rem;
  margin-bottom: 0 !important;
  font-style: italic;
  display: none;
}

body.cms-active .footer-logo-hint {
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-newsletter h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: #d97706;
}

.footer-bottom {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Page Components */
.section {
  padding: 6rem 2rem;
  max-width: var(--spacing-container);
  margin: 0 auto;
}

.section-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 0.75rem auto 0 auto;
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 1.15rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* HERO SECTION (Kerala Tourism Minimalist Model) */
.hero {
  position: relative;
  background: #0f172a;
  color: #ffffff;
  padding: 6rem 5% 5rem 5%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  min-height: 85vh;
  overflow: hidden;
}

@media (max-width: 800px) {
  .hero {
    min-height: 70vh;
    padding: 4rem 1.5rem;
  }
}

.hero-content {
  max-width: 650px;
  z-index: 4;
  animation: slideUp var(--transition-slow) forwards;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-title,
.hero-title em {
  color: #ffffff !important;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Elegant Text Arrow Link to replace bulky buttons */
.kerala-readmore {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color var(--transition-fast), gap var(--transition-fast);
  cursor: pointer;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}

.kerala-readmore:hover {
  border-bottom-color: #ffffff;
  gap: 0.75rem;
}


.btn-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.4);
}

.btn-primary:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
}

.btn-dark:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* CARD / BOX SYSTEM */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-meta {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary-color);
  margin-top: auto;
}

/* Split Section layout (Text / Image side by side) */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 800px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.split-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 450px;
}

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

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.split-content p {
  color: #4b5563;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* Grid Lists (e.g. for Committee, Objectives) */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.profile-card {
  background-color: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
  background-color: #e5e7eb;
  background-image: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-family: var(--font-serif);
}

.profile-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.profile-role {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* GALLERY PAGE MASONRY & FILTER */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid #e5e7eb;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  animation: fadeIn var(--transition-normal);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 20%, rgba(15, 23, 42, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.gallery-tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

/* CONTACT PAGE & FORM */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Homepage "Get in Touch" teaser reuses .contact-container but with two
   equal-width columns instead of the 1fr/1.5fr contact-page split. Uses
   the same 900px collapse breakpoint as .contact-container above.
   NOTE: uses the combined .contact-container.contact-teaser-grid selector
   (higher specificity) so this always wins over the plain .contact-container
   rules above regardless of CSS source order, guaranteeing a single column
   on phones/tablets. */
.contact-container.contact-teaser-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 900px) {
  .contact-container.contact-teaser-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info-card h3 i {
  color: var(--secondary-color);
}

.contact-info-card p {
  color: #4b5563;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-form-container {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Map Mock */
.map-mock {
  width: 100%;
  height: 350px;
  background-color: #cbd5e1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.map-mock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05), rgba(15, 23, 42, 0.15));
}

/* AUTHENTICATION PORTAL PANELS */
.auth-wrapper {
  max-width: 480px;
  margin: 4rem auto;
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  animation: scaleIn var(--transition-normal);
}

.auth-header {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.auth-header h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.auth-body {
  padding: 3rem 2.5rem;
}

@media (max-width: 500px) {
  .auth-body {
    padding: 2rem 1.5rem;
  }
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.auth-footer span {
  color: var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
}

.auth-footer span:hover {
  text-decoration: underline;
}

.alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.alert-success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* MEMBER DIRECTORY */
.members-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.search-bar-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

.select-filter {
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid #d1d5db;
  outline: none;
  background-color: #ffffff;
  cursor: pointer;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.member-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.member-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.member-id {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  background-color: #f3f4f6;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.member-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.badge-life { background-color: #fef3c7; color: #92400e; }
.badge-regular { background-color: #e0f2fe; color: #075985; }
.badge-honorary { background-color: #d1fae5; color: #065f46; }

.member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.member-detail {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.member-detail i {
  width: 14px;
  color: #9ca3af;
}

.privacy-notice {
  font-size: 0.75rem;
  color: #9ca3af;
  font-style: italic;
  margin-top: 0.5rem;
}

/* MEMBER EXCLUSIVE SECTION STYLES */
.member-tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 3rem;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2px;
}

.member-tab {
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.member-tab:hover, .member-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--secondary-color);
}

.portal-welcome {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .portal-welcome {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.portal-welcome h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

/* Events lists inside member portal */
.events-calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.event-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.event-header {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.event-category {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.event-date {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.event-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.event-desc {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.event-rsvp-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
  background-color: #f8fafc;
  margin-top: auto;
}

.rsvp-count {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
}

/* Documents / Reports Download Area */
.docs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doc-item {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.doc-item:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.doc-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.doc-icon {
  font-size: 2rem;
  color: #ef4444; /* PDF Red */
}

.doc-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.doc-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.doc-btn {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.doc-btn:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

/* ADMIN CMS CONTROL SIDEBAR */
.cms-panel-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition-fast);
}

.cms-panel-btn:hover {
  transform: scale(1.1) rotate(15deg);
}

.cms-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: var(--shadow-xl);
  z-index: 99;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e2e8f0;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.cms-sidebar.open {
  transform: translateX(0);
}

@media (max-width: 450px) {
  .cms-sidebar {
    width: 100%;
  }
}

.cms-header {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cms-header h3 {
  color: #ffffff;
  font-family: var(--font-sans);
}

.cms-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.cms-content {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cms-section-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background-color: #f8fafc;
}

.cms-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 0.5rem;
}

/* Theme picker */
.color-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.color-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.color-input-group label {
  font-size: 0.8rem;
  font-weight: 600;
}

.color-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.color-picker {
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

/* Inline Edit Marker for CMS Mode */
[data-cms-editable] {
  position: relative;
  transition: outline var(--transition-fast);
}

body.cms-active [data-cms-editable] {
  outline: 2px dashed var(--secondary-color);
  outline-offset: 4px;
  cursor: pointer;
}

body.cms-active [data-cms-editable]:hover {
  background-color: rgba(180, 83, 9, 0.05);
}

body.cms-active [data-cms-editable]::after {
  content: '✎ Edit';
  position: absolute;
  top: -24px;
  right: 0;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 10;
  font-family: var(--font-sans);
}

body.cms-active [data-cms-editable]:hover::after {
  opacity: 1;
}

/* OTP Modal / Mock Notification Toast */
.otp-toast {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e293b;
  color: #ffffff;
  border: 1px solid var(--secondary-color);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 200;
  max-width: 420px;
  width: calc(100% - 2rem);
  animation: slideUp var(--transition-fast);
}

.otp-toast-header {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
}

.otp-toast-code {
  font-family: monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  background-color: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  letter-spacing: 4px;
  margin: 1rem 0;
}

.otp-toast-close {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  float: right;
}

/* Restaurant Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  animation: fadeIn var(--transition-fast);
}

.modal-container {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: scaleIn var(--transition-fast);
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: white;
}

.modal-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

.table-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.table-seat {
  height: 60px;
  border-radius: var(--radius-sm);
  border: 2px solid #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.table-seat:hover {
  border-color: var(--secondary-color);
}

.table-seat.booked {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}

.table-seat.selected {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.seat-label {
  font-size: 0.65rem;
  font-weight: normal;
}

/* "View More" buttons on Amenities cards (rooms/restaurant/etc.) and on
   Explore Bekal destination cards, opening the shared gallery lightbox.
   Deliberately solid/opaque (not the transparent .btn-secondary style)
   so they stay visible on BOTH the dark amenity-card overlay AND the
   white Explore Bekal card background - no white-on-white or
   white-on-dark contrast failures. !important guards against the
   transparent .btn-secondary base rule winning on specificity ties. */
.amenity-view-more-btn,
.explore-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .85rem;
  padding: .6rem 1.1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 999px;
  border: none !important;
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.35);
}
.amenity-view-more-btn:hover,
.explore-view-more-btn:hover {
  background-color: #d97706 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Gallery / photo lightbox modal (reuses .modal-overlay / .modal-container) */
.gallery-modal-container {
  max-width: 720px;
}
.gallery-modal-subtitle {
  margin: .25rem 0 0;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}
.gallery-modal-body {
  padding: 1.25rem;
}
.gallery-modal-stage {
  position: relative;
  width: 100%;
  background: #0c261c;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.gallery-modal-nav:hover { background: rgba(0,0,0,.7); }
.gallery-modal-prev { left: .75rem; }
.gallery-modal-next { right: .75rem; }
.gallery-modal-counter {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .04em;
}
.gallery-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  max-height: 140px;
  overflow-y: auto;
}
.gallery-modal-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  width: 76px;
  height: 56px;
  flex: 0 0 auto;
  background: none;
}
.gallery-modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-modal-thumb.active { border-color: var(--secondary-color); }
@media (max-width: 560px) {
  .gallery-modal-main-img { height: 260px; }
  .gallery-modal-container { max-width: calc(100% - 1.5rem); }
}

/* Custom Hamburger Icon for Mobile Header */
.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.nav-hamburger:hover {
  opacity: 0.8;
}

/* Responsive Navbar overrides */
@media (max-width: 800px) {
  .nav-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1rem;
    gap: 0.6rem;
  }
  .nav-top-row {
    width: 100%;
    justify-content: space-between;
  }
  .nav-hamburger {
    display: flex;
  }
  .user-widget, .nav-cta {
    order: 2;
  }
  .nav-links {
    display: none !important;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    order: 3;
    text-align: center;
  }
  .nav-links.show {
    display: flex !important;
  }
}

/* Custom Modal Popups overlay styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn var(--transition-fast) forwards;
}

.modal-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: scaleIn var(--transition-fast) forwards;
}

/* Ken Burns Animated background for premium Hero section */
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenBurns 24s infinite ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(15, 23, 42, 0.92) 25%, rgba(15, 23, 42, 0.3) 85%);
  z-index: 2;
}

/* Hero Carousel Controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

@media (max-width: 800px) {
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .hero-arrow.prev { left: 0.75rem; }
  .hero-arrow.next { right: 0.75rem; }
}

.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
}



/* Homepage Tourism feature block */
.tourism-section {
  max-width: 1180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.tourism-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 380px;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.tourism-image-wrap {
  min-height: 380px;
  overflow: hidden;
}

.tourism-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tourism-block:hover .tourism-image {
  transform: scale(1.04);
}

.tourism-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
  color: #fff;
}

.tourism-eyebrow {
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tourism-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.tourism-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Facilities carousel */
.facilities-carousel {
  position: relative;
  padding: 0 3.5rem 2.5rem;
}

.facilities-viewport {
  overflow: hidden;
  padding: 0.5rem 0.25rem 1rem;
}

.facilities-track {
  display: flex;
  align-items: stretch;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-slide {
  flex: 0 0 33.3333%;
  min-width: 0;
  margin: 0 0.75rem;
}

.facility-slide .card-img {
  height: 210px;
}

.carousel-arrow {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.16);
  transition: all 180ms ease;
}

.carousel-arrow:hover:not(:disabled) {
  color: #fff;
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }

.facilities-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 180ms ease;
}

.carousel-dot.active {
  width: 24px;
  background: var(--secondary-color);
}

@media (max-width: 980px) {
  .facility-slide { flex-basis: 50%; }
}

@media (max-width: 650px) {
  .tourism-block { grid-template-columns: 1fr; }
  .tourism-image-wrap, .tourism-image { min-height: 240px; height: 240px; }
  .tourism-content { padding: 2.5rem 2rem; }
  .facilities-carousel { padding-left: 2.75rem; padding-right: 2.75rem; }
  .facility-slide { flex-basis: 100%; margin-left: 0.35rem; margin-right: 0.35rem; }
}


/* Professional About page presentation */
.about-page { max-width: 1180px; }
.about-intro { max-width: 860px; }
.about-history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4.5rem;
  align-items: center;
  margin: 1rem 0 5rem;
}
.about-history-visual { position: relative; min-height: 570px; }
.about-history-visual .split-image { height: 570px; width: 100%; object-fit: cover; border-radius: 1.25rem; box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16); }
.about-history-caption {
  position: absolute;
  right: -1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 0.75rem;
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.25);
}
.about-history-caption span { font-family: var(--font-serif); font-size: 2.1rem; line-height: 1; }
.about-history-caption small { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.about-kicker { display: inline-block; margin-bottom: 0.9rem; color: var(--secondary-color); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.about-history-copy h2 { margin-bottom: 1.75rem; font-size: 2.5rem; }
.about-story-list { display: grid; gap: 1.4rem; }
.about-story-item { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding-bottom: 1.35rem; border-bottom: 1px solid #e7e5e4; }
.about-story-item:last-child { border-bottom: 0; padding-bottom: 0; }
.about-story-number { color: var(--secondary-color); font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; }
.about-story-item h3 { margin-bottom: 0.45rem; font-size: 1.25rem; }
.about-story-item p { color: #57534e; font-size: 0.96rem; line-height: 1.75; }
.about-membership-block {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 0 0 5rem;
  padding: 3rem 3.5rem;
  border-radius: 1rem;
  background: #f7f4ef;
  border: 1px solid #ebe6de;
}
.about-membership-icon { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--primary-color); color: #fbbf24; font-size: 1.4rem; }
.about-membership-block h2 { margin-bottom: 0.75rem; }
.about-membership-block p { max-width: 850px; color: #57534e; line-height: 1.8; }
.about-values-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin-bottom: 5.5rem; }
.about-value-card { min-height: 300px; padding: 3rem; border: 1px solid #e7e5e4; border-radius: 1rem; background: #fff; box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06); }
.about-value-card h2 { margin-bottom: 1rem; font-size: 2rem; }
.about-value-card p { color: #57534e; line-height: 1.8; }
.about-value-card-dark { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.about-value-card-dark .about-kicker { color: #fbbf24; }
.about-value-card-dark p { color: rgba(255,255,255,0.76); }
.about-founders-section { padding-top: 1rem; }
.about-founders-heading { padding-bottom: 2.5rem; }
.about-founders-heading .section-title { font-size: 2.5rem; }
.founder-roster { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem 1.2rem; max-width: 920px; margin: 0 auto; }
.founder-roster-item { display: grid; grid-template-columns: 2.3rem 3rem 1fr; gap: 1rem; align-items: center; padding: 1.15rem 1.25rem; border: 1px solid #e7e5e4; border-radius: 0.8rem; background: #fff; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.founder-roster-item:hover { transform: translateY(-3px); border-color: #d6a15c; box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08); }
.founder-roster-index { color: #a8a29e; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; }
.founder-roster-avatar { width: 3rem; height: 3rem; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #f1e5d5; color: var(--secondary-color); font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; }
.founder-roster-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-roster-info h3 { margin: 0 0 0.22rem; font-size: 1.02rem; }
.founder-roster-info p { margin: 0; color: #78716c; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 800px) {
  .about-history-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-history-visual, .about-history-visual .split-image { min-height: 360px; height: 360px; }
  .about-history-caption { right: 1rem; }
  .about-values-grid, .founder-roster { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-membership-block { grid-template-columns: 1fr; padding: 2rem; }
  .about-value-card { padding: 2rem; }
}


/* Founders heading hierarchy */
.about-founders-heading .section-title { display: block; margin-bottom: 0.6rem; }
.about-founders-subheading {
  display: block;
  margin: 0 auto 1.1rem;
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* Neutral reference-inspired Founder Promoters presentation */
.about-founders-section {
  margin-top: 1rem;
  padding: 4.5rem 3.5rem 4rem;
  border-radius: 1rem;
  background: #0b0d18;
}
.about-founders-heading .section-title { color: #fff; }
.about-founders-heading .section-subtitle { color: #cbd5e1; }
.about-founders-subheading { color: #cbd5e1; }
.founder-roster {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1080px;
}
.founder-roster-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.75rem 0.75rem 1.2rem;
  border: 0;
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.founder-roster-item:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(0,0,0,0.24);
}
.founder-roster-index {
  position: absolute;
  z-index: 1;
  margin: 0.7rem;
  padding: 0.25rem 0.45rem;
  border-radius: 0.2rem;
  background: rgba(255,255,255,0.88);
  color: #64748b;
  font-size: 0.68rem;
}
.founder-roster-avatar {
  width: 100%;
  height: 220px;
  border-radius: 0.12rem;
  background: #e5e7eb;
  color: #64748b;
  font-family: var(--font-serif);
  font-size: 3rem;
}
.founder-roster-info { padding: 1rem 0.5rem 0; text-align: center; }
.founder-roster-info h3 { margin-bottom: 0.35rem; color: #111827; font-size: 1.05rem; }
.founder-roster-info p { color: #9ca3af; font-size: 0.72rem; letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .about-founders-section { padding: 3rem 1.5rem; }
  .founder-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .founder-roster { grid-template-columns: 1fr; }
}


/* Professional Ladies Wing page presentation */
.ladies-wing-page { max-width: 1220px; margin: 0 auto; }
.ladies-wing-hero { max-width: 820px; margin: 0 auto 4.5rem; text-align: center; }
.ladies-wing-eyebrow, .ladies-wing-kicker {
  display: block;
  color: #a16207;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ladies-wing-hero .section-title { margin: 0.7rem 0 0.8rem; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; }
.ladies-wing-rule { display: block; width: 3.5rem; height: 3px; margin: 1.2rem auto 1.35rem; background: #b45309; }
.ladies-wing-hero .section-subtitle { max-width: 640px; margin: 0 auto; font-size: 1.08rem; line-height: 1.8; }
.ladies-wing-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 430px;
  margin: 0 auto 5.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #101827;
  box-shadow: 0 20px 50px rgba(15,23,42,0.14);
}
.ladies-wing-intro-copy { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4.5rem; }
.ladies-wing-intro-copy .ladies-wing-kicker { color: #d6a15c; margin-bottom: 1rem; }
.ladies-wing-intro-copy h2 { margin: 0 0 1.1rem; color: #fff; font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1.1; }
.ladies-wing-intro-copy p { margin: 0 0 1.8rem; color: #d1d5db; line-height: 1.85; }
.ladies-wing-cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.65rem; }
.ladies-wing-cta span { font-size: 1.2rem; transition: transform 160ms ease; }
.ladies-wing-cta:hover span { transform: translateX(3px); }
.ladies-wing-intro-media { position: relative; min-height: 430px; background: #e5e7eb; }
.ladies-wing-image { width: 100%; height: 100%; min-height: 430px; display: block; object-fit: cover; }
.ladies-wing-media-caption { position: absolute; right: 1.25rem; bottom: 1.25rem; padding: 0.55rem 0.8rem; color: #fff; background: rgba(15,23,42,0.78); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.ladies-wing-focus-heading { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.ladies-wing-focus-heading h2 { margin: 0.55rem 0 0; font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 3rem); }
.ladies-focus-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; max-width: 1080px; margin: 0 auto; }
.ladies-focus-item { position: relative; display: grid; grid-template-columns: 2.5rem 1fr auto; gap: 1rem; min-height: 180px; padding: 1.6rem 1.7rem; border: 1px solid #e7e5e4; border-radius: 0.9rem; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,0.05); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.ladies-focus-item:hover { transform: translateY(-4px); border-color: #d6a15c; box-shadow: 0 16px 30px rgba(15,23,42,0.1); }
.ladies-focus-number { color: #a16207; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; }
.ladies-focus-content h3 { margin: 0 0 0.65rem; font-family: var(--font-serif); font-size: 1.35rem; }
.ladies-focus-content p { margin: 0; color: #6b7280; line-height: 1.7; }
.ladies-focus-arrow { color: #a16207; font-size: 1.2rem; }
@media (max-width: 800px) {
  .ladies-wing-intro { grid-template-columns: 1fr; }
  .ladies-wing-intro-copy { padding: 3rem 2rem; }
  .ladies-wing-intro-media, .ladies-wing-image { min-height: 320px; height: 320px; }
}
@media (max-width: 600px) {
  .ladies-wing-hero { margin-bottom: 3rem; }
  .ladies-focus-grid { grid-template-columns: 1fr; }
  .ladies-focus-item { min-height: 0; }
}


/* Professional Affiliated Clubs page presentation */
.affiliated-page { max-width: 1220px; margin: 0 auto; }
.affiliated-hero { max-width: 820px; margin: 0 auto 3.5rem; text-align: center; }
.affiliated-eyebrow { display: block; color: #a16207; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.affiliated-hero .section-title { margin: 0.7rem 0 0.8rem; font-size: clamp(2.35rem, 5vw, 4.2rem); line-height: 1.08; }
.affiliated-rule { display: block; width: 3.5rem; height: 3px; margin: 1.15rem auto 1.35rem; background: #b45309; }
.affiliated-hero .section-subtitle { max-width: 680px; margin: 0 auto; line-height: 1.8; }
.affiliated-intro-panel { max-width: 980px; margin: 0 auto 4.5rem; padding: 2.5rem 3rem; border: 1px solid #e7e5e4; border-left: 4px solid #b45309; border-radius: 0.95rem; background: #fff; box-shadow: 0 12px 30px rgba(15,23,42,0.06); }
.affiliated-intro-panel > p { margin: 0; color: #374151; font-size: 1.08rem; line-height: 1.85; }
.affiliated-instruction { margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid #e7e5e4; }
.affiliated-instruction-label { display: block; margin-bottom: 0.55rem; color: #a16207; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; }
.affiliated-instruction p { margin: 0; color: #6b7280; line-height: 1.75; }
.affiliated-list-heading { max-width: 1080px; margin: 0 auto 1.5rem; }
.affiliated-list-heading h2 { margin: 0.55rem 0 0; font-family: var(--font-serif); font-size: 2.2rem; }
.affiliated-club-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; max-width: 1080px; margin: 0 auto; }
.affiliated-club-card { overflow: hidden; border: 1px solid #e7e5e4; border-radius: 0.9rem; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,0.05); transition: transform 180ms ease, box-shadow 180ms ease; }
.affiliated-club-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(15,23,42,0.1); }
.affiliated-club-image { width: 100%; height: 175px; display: block; object-fit: cover; }
.affiliated-club-image-empty { display: grid; place-items: center; background: #eef0f2; color: #64748b; font-family: var(--font-serif); font-size: 3rem; }
.affiliated-club-body { display: flex; min-height: 250px; flex-direction: column; padding: 1.45rem; }
.affiliated-club-status { color: #a16207; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.affiliated-club-body h3 { margin: 0.65rem 0 0.25rem; font-family: var(--font-serif); font-size: 1.35rem; }
.affiliated-club-location { margin: 0 0 0.9rem; color: #9ca3af; font-size: 0.82rem; font-weight: 700; }
.affiliated-club-description { margin: 0; color: #6b7280; line-height: 1.7; }
.affiliated-club-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1.1rem; border-top: 1px solid #e5e7eb; color: #a16207; font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.affiliated-club-link span { font-size: 1.2rem; }
.affiliated-empty-state { max-width: 760px; margin: 0 auto; padding: 3.5rem 2rem; border: 1px dashed #cbd5e1; border-radius: 1rem; background: #f8fafc; text-align: center; }
.affiliated-empty-icon { display: block; margin-bottom: 0.8rem; color: #a16207; font-size: 2rem; }
.affiliated-empty-state p { max-width: 590px; margin: 0 auto 1.5rem; color: #64748b; line-height: 1.8; }
@media (max-width: 900px) { .affiliated-club-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .affiliated-intro-panel { padding: 2rem 1.35rem; } .affiliated-club-grid { grid-template-columns: 1fr; } }


/* Supplied Affiliated Clubs block model - responsive WordPress integration */
.affiliated-model-page { width: 100%; overflow: hidden; background: #f8f8f8; color: #172033; }
.affiliated-model-hero { background: #0f192c; color: #fff; }
.affiliated-model-hero-inner, .affiliated-model-benefits-inner, .affiliated-model-guidance-inner, .affiliated-model-directory-inner, .affiliated-model-fields { width: min(1400px, calc(100% - 3rem)); margin: 0 auto; }
.affiliated-model-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4rem; min-height: 560px; padding: 5rem 0; }
.affiliated-model-hero-copy { max-width: 760px; }
.affiliated-model-kicker { display: flex; align-items: center; gap: 1rem; color: #dca04b; font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.affiliated-model-kicker > span { width: 3rem; height: 2px; background: #c4770d; }
.affiliated-model-hero h1 { max-width: 780px; margin: 1.4rem 0 0; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1.03; letter-spacing: -.045em; }
.affiliated-model-hero-copy > p { max-width: 680px; margin: 1.6rem 0 0; color: rgba(255,255,255,.75); font-size: 1.08rem; line-height: 1.9; }
.affiliated-model-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.affiliated-model-actions .btn { display: inline-flex; align-items: center; gap: .6rem; }
.affiliated-model-actions .btn span, .affiliated-model-guidance .btn span { font-size: 1.2rem; }
.affiliated-model-outline-btn { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; padding: .85rem 1.35rem; color: #fff; font-size: .88rem; font-weight: 700; text-decoration: none; transition: background .18s ease, border-color .18s ease; }
.affiliated-model-outline-btn:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.affiliated-model-hero-note { max-width: 390px; justify-self: end; border-left: 1px solid #d29136; padding-left: 2rem; }
.affiliated-model-hero-note p { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.9; }
.affiliated-model-hero-note div { display: flex; align-items: center; gap: .7rem; margin-top: 1.7rem; color: #e0a352; font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.affiliated-model-hero-note div span { width: .5rem; height: .5rem; border-radius: 50%; background: #c4770d; }
.affiliated-model-benefits { background: #f8f8f8; }
.affiliated-model-benefits-inner { display: grid; grid-template-columns: .78fr 1.22fr; gap: 5rem; padding: 6rem 0; }
.affiliated-model-eyebrow { display: block; color: #b76c0b; font-size: .7rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.affiliated-model-benefits-intro h2, .affiliated-model-guidance-copy h2, .affiliated-model-directory-heading h2, .affiliated-model-fields h2 { margin: 1rem 0 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -.035em; }
.affiliated-model-benefits-intro p, .affiliated-model-guidance-copy > p { max-width: 560px; margin: 1.3rem 0 0; color: #626a75; font-size: 1rem; line-height: 1.9; }
.affiliated-model-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.affiliated-model-benefit-grid article { min-height: 245px; padding: 1.5rem; border: 1px solid #e8e8e8; border-radius: .85rem; background: #fff; box-shadow: 0 8px 24px rgba(18,28,45,.04); transition: transform .18s ease, box-shadow .18s ease; }
.affiliated-model-benefit-grid article:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(18,28,45,.09); }
.affiliated-model-benefit-grid article > div { display: flex; align-items: center; justify-content: space-between; }
.affiliated-model-benefit-grid b { color: #c4770d; font-size: .85rem; }
.affiliated-model-benefit-mark { color: #b76c0b; font-size: 1.2rem; }
.affiliated-model-benefit-grid h3 { margin: 2.5rem 0 .6rem; font-family: Georgia, serif; font-size: 1.3rem; }
.affiliated-model-benefit-grid p { margin: 0; color: #6b727c; font-size: .88rem; line-height: 1.8; }
.affiliated-model-guidance { background: #f0ede7; }
.affiliated-model-guidance-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; padding: 6rem 0; }
.affiliated-model-guidance .btn { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.8rem; }
.affiliated-model-note-card { position: relative; overflow: hidden; padding: 2.4rem; border: 1px solid #ddd7cc; border-radius: .9rem; background: #fff; box-shadow: 0 12px 36px rgba(57,47,35,.08); }
.affiliated-model-note-icon { display: grid; width: 3rem; height: 3rem; place-items: center; margin-bottom: 1.4rem; border: 1px solid #d9a15b; border-radius: 50%; background: #fff7e9; color: #b76c0b; }
.affiliated-model-note-card h3 { max-width: 390px; margin: .9rem 0 0; font-family: Georgia, serif; font-size: 1.8rem; line-height: 1.2; }
.affiliated-model-note-card p { margin: 1.2rem 0 0; color: #6b727c; line-height: 1.8; }
.affiliated-model-note-card > div:last-child { margin-top: 1.8rem; padding-top: 1.1rem; border-top: 1px solid #eee8df; color: #b76c0b; font-size: .68rem; font-weight: 800; letter-spacing: .17em; }
.affiliated-model-directory { background: #101a2e; color: #fff; }
.affiliated-model-directory-inner { padding: 6rem 0; }
.affiliated-model-directory-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.affiliated-model-directory-heading h2 { max-width: 680px; color: #fff; }
.affiliated-model-directory-heading > p { max-width: 370px; margin: 0; color: rgba(255,255,255,.6); line-height: 1.8; }
.affiliated-model-directory .affiliated-model-eyebrow { color: #dca04b; }
.affiliated-model-directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.affiliated-model-club-card { display: flex; min-height: 320px; flex-direction: column; padding: 1.7rem; border: 1px solid rgba(255,255,255,.15); border-radius: .85rem; background: rgba(255,255,255,.035); transition: transform .18s ease, background .18s ease; }
.affiliated-model-club-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.075); }
.affiliated-model-club-card.affiliated-model-placeholder { opacity: .9; }
.affiliated-model-card-top { display: flex; align-items: center; justify-content: space-between; }
.affiliated-model-card-top b { color: #dca04b; font-family: Georgia, serif; font-size: 2.2rem; }
.affiliated-model-card-top span { color: #dca04b; }
.affiliated-model-card-status { display: block; margin-top: 2.8rem; color: #dca04b; font-size: .67rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.affiliated-model-club-card h3 { margin: .8rem 0 .2rem; font-family: Georgia, serif; font-size: 1.5rem; }
.affiliated-model-club-card > p { margin: 0; color: rgba(255,255,255,.55); font-size: .85rem; }
.affiliated-model-card-description { margin-top: .9rem; color: rgba(255,255,255,.62); font-size: .88rem; line-height: 1.75; }
.affiliated-model-club-card > a { display: inline-flex; align-items: center; gap: .5rem; margin-top: auto; padding-top: 1.5rem; color: #edbd70; font-size: .85rem; font-weight: 800; text-decoration: none; }
.affiliated-model-fields { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; padding-top: 2.5rem; padding-bottom: 5rem; }
.affiliated-model-fields dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2rem; margin: 0; }
.affiliated-model-fields dl div { padding-bottom: 1rem; border-bottom: 1px solid #ededed; }
.affiliated-model-fields dt { color: #172033; font-size: .9rem; font-weight: 800; }
.affiliated-model-fields dd { margin: .25rem 0 0; color: #6b727c; font-size: .86rem; line-height: 1.6; }
@media (max-width: 1000px) { .affiliated-model-hero-inner, .affiliated-model-benefits-inner, .affiliated-model-guidance-inner { grid-template-columns: 1fr; gap: 2.5rem; } .affiliated-model-hero-note { justify-self: start; } .affiliated-model-benefit-grid { grid-template-columns: repeat(3, 1fr); } .affiliated-model-directory-heading { align-items: start; flex-direction: column; } .affiliated-model-fields { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 720px) { .affiliated-model-hero-inner, .affiliated-model-benefits-inner, .affiliated-model-guidance-inner, .affiliated-model-directory-inner, .affiliated-model-fields { width: min(100% - 2rem, 620px); padding-top: 4rem; padding-bottom: 4rem; } .affiliated-model-hero h1 { font-size: clamp(2.6rem, 12vw, 4.3rem); } .affiliated-model-benefit-grid, .affiliated-model-directory-grid { grid-template-columns: 1fr; } .affiliated-model-benefit-grid article { min-height: 0; } .affiliated-model-fields dl { grid-template-columns: 1fr; } .affiliated-model-hero-note { padding-left: 1.25rem; } }
@media (max-width: 420px) { .affiliated-model-actions { align-items: stretch; flex-direction: column; } .affiliated-model-actions .btn, .affiliated-model-outline-btn { justify-content: center; width: 100%; } .affiliated-model-note-card { padding: 1.5rem; } }


/* Shared page continuity layer for About, Ladies Wing, Amenities and Contact */
.continuity-page { background: #f8f8f8; }
.continuity-page-hero { position: relative; }
.continuity-eyebrow { display: block; margin-bottom: .8rem; color: #a16207; font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.continuity-page-hero .section-title { margin-top: .35rem; }
.continuity-page-hero .section-subtitle { max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.85; }
.about-page .continuity-page-hero { max-width: 850px; margin-left: auto; margin-right: auto; }
.amenities-page .continuity-page-hero, .contact-page .continuity-page-hero { max-width: 850px; margin: 0 auto 3.8rem; }
.amenities-page .card-grid { max-width: 1120px; margin: 0 auto; gap: 1.25rem; }
.amenities-page .card { overflow: hidden; border: 1px solid #e7e5e4; border-radius: .9rem; box-shadow: 0 8px 24px rgba(18,28,45,.05); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.amenities-page .card:hover { transform: translateY(-4px); border-color: #d6a15c; box-shadow: 0 16px 32px rgba(18,28,45,.1); }
.amenities-page .card-img { height: 220px; object-fit: cover; }
.amenities-page .card-body { min-height: 170px; padding: 1.5rem; }
.amenities-page .card-title { font-family: var(--font-serif); font-size: 1.45rem; }
.amenities-page .card-text { color: #6b7280; line-height: 1.7; }
.contact-page .contact-container { max-width: 1120px; margin: 0 auto; gap: 1.5rem; }
.contact-page .contact-info { gap: 1rem; }
.contact-page .contact-info-card, .contact-page .contact-form-container { border: 1px solid #e7e5e4; border-radius: .9rem; background: #fff; box-shadow: 0 8px 24px rgba(18,28,45,.05); }
.contact-page .contact-info-card { padding: 1.4rem; }
.contact-page .contact-info-card h3 { color: #172033; font-family: var(--font-serif); font-size: 1.08rem; }
.contact-page .contact-info-card p { color: #6b7280; line-height: 1.7; }
.contact-page .contact-form-container { padding: 2.3rem; }
.contact-page .contact-form-container h3 { margin-bottom: 1.5rem !important; font-family: var(--font-serif); font-size: 2rem !important; }
.contact-page .form-control { border-color: #ddd7cc; border-radius: .55rem; }
.contact-page .form-control:focus { border-color: #b45309; box-shadow: 0 0 0 3px rgba(180,83,9,.12); }
.contact-page .map-mock { max-width: 1120px; margin: 2rem auto 0; overflow: hidden; border: 1px solid #ddd7cc; border-radius: .9rem; background: #f0ede7; }
@media (max-width: 720px) { .amenities-page .card-img { height: 190px; } .contact-page .contact-form-container { padding: 1.5rem; } .continuity-eyebrow { font-size: .64rem; } }


/* Explore Bekal tourism page */
.explore-bekal-page { background: #f8f8f8; color: #172033; }
.explore-bekal-hero { background: #0f192c; color: #fff; }
.explore-bekal-hero-inner { width: min(980px, calc(100% - 3rem)); margin: 0 auto; padding: 6rem 0 5rem; text-align: center; }
.explore-bekal-eyebrow { display: block; color: #dca04b; font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.explore-bekal-hero h1 { max-width: 850px; margin: 1rem auto 0; font-family: Georgia, serif; font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1.05; letter-spacing: -.045em; }
.explore-bekal-rule { display: block; width: 3.5rem; height: 3px; margin: 1.5rem auto 1.3rem; background: #c4770d; }
.explore-bekal-hero p { max-width: 800px; margin: 0 auto; color: rgba(255,255,255,.74); font-size: 1.05rem; line-height: 1.9; }
.explore-bekal-destinations { width: min(1240px, calc(100% - 3rem)); margin: 0 auto; padding: 6rem 0; }
.explore-bekal-section-heading { max-width: 730px; margin-bottom: 2.2rem; }
.explore-bekal-section-heading h2 { margin: .7rem 0 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; letter-spacing: -.035em; }
.explore-bekal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.explore-bekal-card { overflow: hidden; border: 1px solid #e7e5e4; border-radius: .9rem; background: #fff; box-shadow: 0 8px 24px rgba(18,28,45,.05); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.explore-bekal-card:hover { transform: translateY(-4px); border-color: #d6a15c; box-shadow: 0 16px 32px rgba(18,28,45,.1); }
.explore-bekal-card-image { width: 100%; height: 175px; display: block; object-fit: cover; }
.explore-bekal-card-image-empty { display: grid; place-items: center; background: linear-gradient(135deg, #172033, #263b59); color: #edbd70; font-family: Georgia, serif; font-size: 3rem; }
.explore-bekal-card-body { position: relative; padding: 1.4rem 1.5rem 1.7rem; }
.explore-bekal-card-number { color: #b76c0b; font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.explore-bekal-card h3 { margin: .6rem 0 .7rem; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.2; }
.explore-bekal-card p { margin: 0; color: #6b7280; font-size: .9rem; line-height: 1.75; }
.explore-bekal-closing { background: #f0ede7; }
.explore-bekal-closing-inner { width: min(1180px, calc(100% - 3rem)); display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 4rem; margin: 0 auto; padding: 5.5rem 0; }
.explore-bekal-closing h2 { margin: .8rem 0 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -.035em; }
.explore-bekal-closing p { margin: 0; color: #626a75; font-size: 1rem; line-height: 1.9; }
.explore-bekal-cta { display: inline-flex; align-items: center; gap: .65rem; margin-top: 1.7rem; }
.explore-bekal-cta span { font-size: 1.2rem; }
@media (max-width: 900px) { .explore-bekal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .explore-bekal-closing-inner { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 620px) { .explore-bekal-hero-inner, .explore-bekal-destinations, .explore-bekal-closing-inner { width: min(100% - 2rem, 560px); } .explore-bekal-hero-inner { padding: 4rem 0; } .explore-bekal-destinations, .explore-bekal-closing-inner { padding: 4rem 0; } .explore-bekal-grid { grid-template-columns: 1fr; } .explore-bekal-card-image { height: 185px; } .explore-bekal-cta { width: 100%; justify-content: center; } }


/* Affiliated Clubs hero title visibility fix */
.affiliated-model-hero .affiliated-model-hero-copy h1 {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  opacity: 1;
  visibility: visible;
  text-shadow: 0 1px 1px rgba(0,0,0,.12);
}


/* Dark-surface heading visibility fixes for tourism and reciprocal-access pages */
.explore-bekal-hero h1,
.affiliated-model-hero .affiliated-model-hero-copy h1,
.affiliated-model-directory .affiliated-model-club-card h3 {
  color: #ffffff !important;
  opacity: 1;
  visibility: visible;
}


/* Affiliated Clubs redesign: follows the Ladies Wing page model only */
.affiliated-model-page { background: #f8f8f8; color: #172033; }
.affiliated-model-hero { background: transparent; color: #172033; }
.affiliated-model-hero-inner { display: block; width: min(900px, calc(100% - 2rem)); min-height: 0; padding: 5rem 0 3.5rem; text-align: center; }
.affiliated-model-hero-copy { max-width: 820px; margin: 0 auto; }
.affiliated-model-kicker { justify-content: center; color: #a16207; font-size: .7rem; }
.affiliated-model-kicker > span { width: 2.6rem; }
.affiliated-model-hero .affiliated-model-hero-copy h1 { max-width: 820px; margin: .7rem auto 0; color: #172033 !important; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.06; -webkit-text-fill-color: #172033 !important; }
.affiliated-model-hero .affiliated-model-hero-copy > p { max-width: 720px; margin: 1.2rem auto 0; color: #626a75; font-size: 1.05rem; line-height: 1.85; }
.affiliated-model-actions { justify-content: center; margin-top: 1.7rem; }
.affiliated-model-outline-btn { border-color: #cfc8bc; color: #172033; }
.affiliated-model-outline-btn:hover { border-color: #172033; background: #fff; }
.affiliated-model-hero-note { width: min(1080px, calc(100% - 2rem)); max-width: none; margin: 1rem auto 0; padding: 1.4rem 1.6rem; border: 0; border-left: 3px solid #c4770d; border-radius: .85rem; background: #101a2e; text-align: left; }
.affiliated-model-hero-note p { margin: 0; color: rgba(255,255,255,.84); font-size: .95rem; line-height: 1.8; }
.affiliated-model-benefits { background: transparent; }
.affiliated-model-benefits-inner { width: min(1120px, calc(100% - 2rem)); display: block; padding: 3rem 0 5rem; }
.affiliated-model-benefits-intro { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.affiliated-model-benefits-intro h2 { color: #172033; }
.affiliated-model-benefits-intro p { margin-left: auto; margin-right: auto; }
.affiliated-model-benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.affiliated-model-benefit-grid article { min-height: 190px; border: 1px solid #e7e5e4; border-radius: .9rem; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,.05); }
.affiliated-model-benefit-grid article:hover { transform: translateY(-4px); border-color: #d6a15c; box-shadow: 0 16px 30px rgba(15,23,42,.1); }
.affiliated-model-benefit-grid h3 { color: #172033; }
.affiliated-model-guidance { background: #101a2e; }
.affiliated-model-guidance-inner { width: min(1120px, calc(100% - 2rem)); padding: 5rem 0; }
.affiliated-model-guidance-copy h2 { color: #fff; }
.affiliated-model-guidance-copy > p { color: rgba(255,255,255,.78); }
.affiliated-model-note-card { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.affiliated-model-directory { background: #f8f8f8; }
.affiliated-model-directory-inner { width: min(1120px, calc(100% - 2rem)); padding: 5rem 0; }
.affiliated-model-directory-heading h2 { color: #172033; }
.affiliated-model-directory-heading > p { color: #6b7280; }
.affiliated-model-directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.affiliated-model-club-card { min-height: 290px; border: 1px solid #e7e5e4; border-radius: .9rem; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,.05); }
.affiliated-model-club-card:hover { background: #fff; box-shadow: 0 16px 30px rgba(15,23,42,.1); }
.affiliated-model-directory .affiliated-model-club-card h3 { color: #172033 !important; -webkit-text-fill-color: #172033 !important; }
.affiliated-model-club-card > p { color: #6b7280; }
.affiliated-model-card-description { color: #6b7280; }
.affiliated-model-fields { width: min(1120px, calc(100% - 2rem)); padding: 4rem 0 5rem; }
.affiliated-model-fields h2 { color: #172033; }
@media (max-width: 900px) { .affiliated-model-benefit-grid, .affiliated-model-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .affiliated-model-hero-inner { padding-top: 4rem; } .affiliated-model-benefit-grid, .affiliated-model-directory-grid { grid-template-columns: 1fr; } .affiliated-model-actions { flex-direction: column; align-items: stretch; } .affiliated-model-actions .btn, .affiliated-model-outline-btn { justify-content: center; width: 100%; } .affiliated-model-hero-note { padding: 1.2rem; } }


/* Final Affiliated Clubs contrast correction */
.affiliated-model-guidance .affiliated-model-note-card h3,
.affiliated-model-guidance .affiliated-model-note-card p,
.affiliated-model-guidance .affiliated-model-note-card div {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1;
  visibility: visible;
}
.affiliated-model-guidance .affiliated-model-note-card .affiliated-model-eyebrow,
.affiliated-model-guidance .affiliated-model-note-card > div:last-child {
  color: #dca04b !important;
  -webkit-text-fill-color: #dca04b !important;
}


/* Affiliated Clubs follows the Explore Bekal visual model */
.affiliated-model-page { background: #f8f8f8; color: #172033; }
.affiliated-model-hero { background: #0f192c; color: #fff; }
.affiliated-model-hero-inner { display: block; width: min(980px, calc(100% - 3rem)); min-height: 0; margin: 0 auto; padding: 6rem 0 5rem; text-align: center; }
.affiliated-model-hero-copy { max-width: 900px; margin: 0 auto; }
.affiliated-model-kicker { justify-content: center; color: #dca04b; letter-spacing: .2em; }
.affiliated-model-kicker > span { width: 2.6rem; background: #dca04b; }
.affiliated-model-hero .affiliated-model-hero-copy h1 { max-width: 850px; margin: 1rem auto 0; color: #fff !important; font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1.05; -webkit-text-fill-color: #fff !important; }
.affiliated-model-hero .affiliated-model-hero-copy > p { max-width: 800px; margin: 1.2rem auto 0; color: rgba(255,255,255,.74); font-size: 1.05rem; line-height: 1.9; }
.affiliated-model-actions { justify-content: center; margin-top: 1.8rem; }
.affiliated-model-outline-btn { border-color: rgba(255,255,255,.35); color: #fff; }
.affiliated-model-outline-btn:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.affiliated-model-hero-note { width: min(800px, 100%); max-width: none; margin: 2.5rem auto 0; padding: 1.15rem 1.4rem; border: 1px solid rgba(255,255,255,.16); border-left: 3px solid #dca04b; border-radius: .75rem; background: rgba(255,255,255,.045); text-align: left; }
.affiliated-model-hero-note p { color: rgba(255,255,255,.74); }
.affiliated-model-benefits { background: #f8f8f8; }
.affiliated-model-benefits-inner { width: min(1240px, calc(100% - 3rem)); padding: 6rem 0; }
.affiliated-model-benefits-intro { max-width: 800px; margin: 0 auto 2.5rem; text-align: center; }
.affiliated-model-benefits-intro h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.affiliated-model-benefit-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.affiliated-model-benefit-grid article { min-height: 220px; border: 1px solid #e6e1d8; border-radius: .85rem; background: #fff; box-shadow: 0 12px 28px rgba(15,25,44,.06); }
.affiliated-model-benefit-grid article:hover { border-color: #dca04b; box-shadow: 0 18px 34px rgba(15,25,44,.1); }
.affiliated-model-guidance { background: #0f192c; }
.affiliated-model-guidance-inner { width: min(1240px, calc(100% - 3rem)); padding: 6rem 0; }
.affiliated-model-guidance-copy h2 { color: #fff; }
.affiliated-model-guidance-copy > p { color: rgba(255,255,255,.76); }
.affiliated-model-note-card { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.affiliated-model-directory { background: #f8f8f8; }
.affiliated-model-directory-inner { width: min(1240px, calc(100% - 3rem)); padding: 6rem 0; }
.affiliated-model-directory-heading h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.affiliated-model-directory-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.affiliated-model-club-card { min-height: 320px; border-color: #e6e1d8; border-radius: .85rem; background: #fff; box-shadow: 0 12px 28px rgba(15,25,44,.06); }
.affiliated-model-club-card:hover { background: #fff; border-color: #dca04b; box-shadow: 0 18px 34px rgba(15,25,44,.1); }
.affiliated-model-directory .affiliated-model-club-card h3 { color: #172033 !important; -webkit-text-fill-color: #172033 !important; }
.affiliated-model-fields { width: min(1240px, calc(100% - 3rem)); padding: 5rem 0 6rem; }
@media (max-width: 900px) { .affiliated-model-benefit-grid, .affiliated-model-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .affiliated-model-hero-inner, .affiliated-model-benefits-inner, .affiliated-model-guidance-inner, .affiliated-model-directory-inner, .affiliated-model-fields { width: min(100% - 2rem, 560px); padding-top: 4rem; padding-bottom: 4rem; } .affiliated-model-benefit-grid, .affiliated-model-directory-grid { grid-template-columns: 1fr; } .affiliated-model-hero .affiliated-model-hero-copy h1 { font-size: clamp(2.6rem, 12vw, 4.3rem); } .affiliated-model-actions { flex-direction: column; align-items: stretch; } .affiliated-model-actions .btn, .affiliated-model-outline-btn { width: 100%; justify-content: center; } }


/* Complete About Us future and closing sections */
.about-future-section { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 5rem 0; }
.about-future-intro { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.about-future-intro h2 { margin: .7rem 0 1rem; color: #172033; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.08; }
.about-future-intro p { color: #66707d; line-height: 1.85; }
.about-future-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.about-future-card { min-height: 250px; padding: 1.8rem; border: 1px solid #e5e1d8; border-radius: 1rem; background: #fff; box-shadow: 0 12px 28px rgba(15,25,44,.06); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.about-future-card:hover { transform: translateY(-3px); border-color: #dca04b; box-shadow: 0 18px 34px rgba(15,25,44,.1); }
.about-future-number { display: inline-flex; margin-bottom: 1.3rem; color: #b87313; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; }
.about-future-card h3 { margin: 0 0 .8rem; color: #172033; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.2; }
.about-future-card p { margin: 0; color: #65707d; font-size: .96rem; line-height: 1.8; }
.about-looking-ahead { background: #0f192c; color: #fff; }
.about-looking-ahead-inner { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 4rem; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 5.5rem 0; }
.about-looking-ahead .about-kicker { color: #dca04b; }
.about-looking-ahead h2 { margin: .8rem 0 0; color: #fff; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.05; }
.about-looking-ahead p { margin: 0 0 1.4rem; color: rgba(255,255,255,.78); line-height: 1.85; }
.about-looking-ahead strong { display: block; padding-left: 1.2rem; border-left: 3px solid #dca04b; color: #fff; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.55; }
.about-journey-continues { display: inline-block; margin-top: 1.5rem; color: #dca04b; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
@media (max-width: 820px) { .about-looking-ahead-inner { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 620px) { .about-future-section, .about-looking-ahead-inner { width: min(100% - 2rem, 560px); padding-top: 4rem; padding-bottom: 4rem; } .about-future-grid { grid-template-columns: 1fr; } .about-future-card { min-height: 0; } }


/* Supplied Home page content sections */
.home-content-eyebrow, .home-closing-eyebrow { display: inline-block; color: #b87313; font-size: .72rem; font-weight: 700; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.home-discover-section { background: #f8f8f8; }
.home-discover-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: 4rem; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 6rem 0; }
.home-discover-heading h2 { max-width: 650px; margin: .8rem 0 1.2rem; color: #172033; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 1.04; letter-spacing: -.04em; }
.home-discover-heading > p { max-width: 680px; color: #687281; font-size: 1.05rem; line-height: 1.9; }
.home-discover-feature { align-self: end; padding: 2.2rem; border: 1px solid #e4ded2; border-radius: 1rem; background: #fff; box-shadow: 0 16px 32px rgba(15,25,44,.07); }
.home-feature-number { display: block; margin-bottom: 2.5rem; color: #dca04b; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.home-discover-feature h3 { margin: 0 0 1rem; color: #172033; font-family: Georgia, serif; font-size: 2rem; }
.home-discover-feature > p { color: #65707d; line-height: 1.8; }
.home-discover-location { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid #eee9e0; }
.home-discover-location > span { color: #b87313; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.home-discover-location small { color: #697381; line-height: 1.6; }
.home-club-section { background: #fff; }
.home-club-section .home-content-eyebrow { margin-bottom: 1rem; }
.home-club-section .split-content h2 { color: #172033; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.3rem); line-height: 1.06; }
.home-club-section .split-content p { color: #697381; line-height: 1.85; }
.home-life-section { background: #f8f8f8; }
.home-life-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.home-life-card { min-height: 340px; padding: 2.6rem; border: 1px solid #e5e1d8; border-radius: 1rem; background: #fff; box-shadow: 0 12px 28px rgba(15,25,44,.06); }
.home-life-card-dark { border-color: #0f192c; background: #0f192c; }
.home-life-card h2 { max-width: 460px; margin: 1.2rem 0 1rem; color: #172033; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; }
.home-life-card-dark h2 { color: #fff; }
.home-life-card p { max-width: 560px; color: #697381; line-height: 1.85; }
.home-life-card-dark p { color: rgba(255,255,255,.76); }
.home-closing-section { background: #0f192c; color: #fff; text-align: center; }
.home-closing-inner { width: min(880px, calc(100% - 3rem)); margin: 0 auto; padding: 5.5rem 0; }
.home-closing-eyebrow { color: #dca04b; }
.home-closing-inner h2 { margin: .9rem 0 .5rem; color: #fff; font-family: Georgia, serif; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1; }
.home-closing-inner p { margin: 0; color: rgba(255,255,255,.78); font-size: 1.2rem; line-height: 1.7; }
@media (max-width: 820px) { .home-discover-inner { grid-template-columns: 1fr; gap: 2rem; } .home-discover-feature { align-self: start; } }
@media (max-width: 620px) { .home-discover-inner, .home-life-grid, .home-closing-inner { width: min(100% - 2rem, 560px); } .home-discover-inner, .home-life-grid { padding-top: 4rem; padding-bottom: 4rem; } .home-life-grid { grid-template-columns: 1fr; } .home-life-card { min-height: 0; padding: 2rem; } .home-closing-inner { padding: 4rem 0; } }


/* Recreated About Us page: Kerala heritage + contemporary club aesthetic */
.about-recreated-page { background: #f7f4ec; color: #1d2922; }
.about-recreated-hero { min-height: 650px; display: flex; align-items: flex-end; background-position: center; background-size: cover; color: #fff; }
.about-recreated-hero-inner { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 9rem 0 6rem; }
.about-recreated-eyebrow { display: inline-block; color: #b98b47; font-size: .7rem; font-weight: 700; letter-spacing: .2em; line-height: 1.5; text-transform: uppercase; }
.about-recreated-hero h1 { max-width: 850px; margin: 1rem 0 1.3rem; color: #fff !important; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.2rem, 7vw, 7rem); font-weight: 500; letter-spacing: -.055em; line-height: .96; }
.about-recreated-hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.84); font-size: 1.15rem; line-height: 1.75; }
.about-scroll-cue { display: inline-flex; flex-direction: column; gap: .6rem; margin-top: 4rem; color: rgba(255,255,255,.75); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.about-scroll-cue span { color: #d1a25c; font-size: 1.3rem; text-align: center; }
.about-recreated-section { padding: 7rem 0; }
.about-recreated-two-col, .about-membership-grid, .about-culture-inner { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.about-recreated-two-col { display: grid; grid-template-columns: .75fr 1.25fr; gap: 6rem; align-items: center; }
.about-year-panel { display: flex; flex-direction: column; align-items: flex-start; }
.about-year-panel span { color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(7rem, 15vw, 14rem); font-weight: 500; letter-spacing: -.08em; line-height: .8; }
.about-year-panel small { margin-top: 1.8rem; color: #b98b47; font-size: .68rem; font-weight: 700; letter-spacing: .2em; }
.about-recreated-copy { max-width: 720px; }
.about-recreated-copy h2, .about-recreated-narrow h2 { margin: .9rem 0 1.4rem; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.05em; line-height: 1.02; }
.about-recreated-copy p, .about-recreated-narrow p { color: #657267; font-size: 1.04rem; line-height: 1.9; }
.about-recreated-narrow { width: min(900px, calc(100% - 3rem)); margin: 0 auto; }
.about-founder-section { padding: 7rem 0; background: #eee9dd; }
.about-founder-section h2 { color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.about-recreated-lead { max-width: 720px; color: #657267; font-size: 1.05rem; line-height: 1.8; }
.about-founder-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; width: min(980px, calc(100% - 3rem)); margin: 3rem auto 0; border-top: 1px solid #d6d0c2; }
.about-founder-row { display: grid; grid-template-columns: 2.2rem 3.5rem 1fr; gap: 1rem; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid #d6d0c2; }
.about-founder-row > span { color: #b98b47; font-size: .75rem; font-weight: 700; letter-spacing: .1em; }
.about-founder-avatar { display: grid; width: 3.5rem; height: 3.5rem; overflow: hidden; place-items: center; border: 1px solid #cbbd9e; border-radius: 50%; background: #f9f5eb; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.3rem; }
.about-founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-founder-row h3 { margin: 0 0 .25rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.1rem; }
.about-founder-row p { margin: 0; color: #778075; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.about-place-section { background: #fff; }
.about-place-grid { grid-template-columns: 1fr 1fr; }
.about-location-rule { margin-top: 2rem; padding-top: 1.1rem; border-top: 1px solid #ded9cd; color: #b98b47; font-size: .7rem; font-weight: 700; letter-spacing: .15em; }
.about-location-rule span { padding: 0 .5rem; color: #8c938a; }
.about-recreated-image { min-height: 440px; overflow: hidden; border-radius: 1rem 0 1rem 0; background: #d8d8cc; }
.about-recreated-image img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.about-culture-section { padding: 7rem 0; background: #1c3b2b; color: #fff; }
.about-culture-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6rem; align-items: center; }
.about-culture-inner h2 { margin: 1rem 0 0; color: #fff; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 6rem); font-weight: 500; letter-spacing: -.06em; line-height: .95; }
.about-culture-inner > p { color: rgba(255,255,255,.78); font-size: 1.06rem; line-height: 1.9; }
.about-membership-section { background: #f7f4ec; }
.about-membership-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 5rem; align-items: center; }
.about-member-stat { padding: 3rem; border-left: 1px solid #cdbd9f; text-align: center; }
.about-member-stat strong { display: block; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(6rem, 12vw, 11rem); font-weight: 500; letter-spacing: -.08em; line-height: .8; }
.about-member-stat span { display: block; margin-top: 1.5rem; color: #b98b47; font-size: .74rem; font-weight: 700; letter-spacing: .2em; }
.about-vision-section { background: #fff; }
.about-future-recreated-section { padding: 7rem 0; background: #eee9dd; }
.about-future-recreated-section .about-recreated-narrow { margin-bottom: 3rem; }
.about-plan-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.about-plan-card { min-height: 285px; padding: 1.7rem; border-top: 2px solid #b98b47; background: #f8f5ed; }
.about-plan-card > span { color: #b98b47; font-family: Georgia, serif; font-size: 1.5rem; }
.about-plan-card h3 { margin: 2rem 0 .8rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.1; }
.about-plan-card p { margin: 0; color: #667166; font-size: .9rem; line-height: 1.7; }
.about-journey-section { padding: 8rem 0; background: #1c3b2b; color: #fff; text-align: center; }
.about-journey-section h2 { color: #fff; }
.about-journey-section p { max-width: 770px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.78); }
.about-journey-section blockquote { max-width: 820px; margin: 2.5rem auto; color: #e2c18b; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.5rem); font-style: italic; line-height: 1.35; }
.about-journey-final { display: block; color: #fff; font-size: .78rem; letter-spacing: .25em; }
.about-final-cta { min-height: 570px; display: grid; place-items: center; background-position: center; background-size: cover; color: #fff; text-align: center; }
.about-final-cta-inner { width: min(800px, calc(100% - 3rem)); padding: 6rem 0; }
.about-final-cta h2 { margin: 1rem 0 .4rem; color: #fff; font-family: Georgia, serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 500; letter-spacing: -.06em; line-height: .9; }
.about-final-cta p { color: rgba(255,255,255,.84); font-size: 1.2rem; }
.about-final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
.about-final-actions .btn { text-decoration: none; }
@media (max-width: 900px) { .about-recreated-two-col, .about-membership-grid, .about-culture-inner { grid-template-columns: 1fr; gap: 3rem; } .about-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .about-member-stat { border-left: 0; border-top: 1px solid #cdbd9f; } }
@media (max-width: 620px) { .about-recreated-hero-inner, .about-recreated-two-col, .about-membership-grid, .about-culture-inner, .about-recreated-narrow, .about-founder-list, .about-plan-grid { width: min(100% - 2rem, 560px); } .about-recreated-hero { min-height: 590px; } .about-recreated-hero-inner { padding: 7rem 0 4rem; } .about-recreated-section, .about-culture-section, .about-future-recreated-section, .about-journey-section { padding: 4.5rem 0; } .about-founder-list, .about-plan-grid { grid-template-columns: 1fr; } .about-founder-row { grid-template-columns: 1.8rem 3rem 1fr; } .about-founder-avatar { width: 3rem; height: 3rem; } .about-recreated-image, .about-recreated-image img { min-height: 300px; } .about-final-cta { min-height: 500px; } .about-final-actions { flex-direction: column; align-items: stretch; } .about-final-actions .btn { justify-content: center; width: 100%; } }


/* Premium supplied Home page */
.home-premium-page { background: #f7f4ec; color: #1d2922; }
.home-premium-hero { min-height: 760px; display: flex; align-items: flex-end; background-position: center; background-size: cover; color: #fff; }
.home-premium-hero-inner { width: min(1240px, calc(100% - 3rem)); margin: 0 auto; padding: 10rem 0 4rem; }
.home-premium-eyebrow { display: inline-block; color: #b98b47; font-size: .7rem; font-weight: 700; letter-spacing: .2em; line-height: 1.5; text-transform: uppercase; }
.home-premium-hero h1, .home-final-section h2 { max-width: 950px; margin: 1rem 0 1.3rem; color: #fff !important; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.4rem, 8vw, 8rem); font-weight: 500; letter-spacing: -.06em; line-height: .92; }
.home-premium-hero p { max-width: 620px; color: rgba(255,255,255,.85); font-size: 1.15rem; line-height: 1.8; }
.home-premium-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.home-premium-actions .btn { text-decoration: none; }
.home-premium-location { display: block; margin-top: 5rem; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 700; letter-spacing: .18em; }
.home-premium-section { padding: 7rem 0; }
.home-premium-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.home-premium-copy { max-width: 680px; }
.home-premium-copy h2, .home-premium-narrow h2, .home-destinations-inner h2, .home-membership-inner h2 { margin: .9rem 0 1.4rem; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 5.6rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.home-premium-copy p, .home-premium-narrow p, .home-destinations-inner p, .home-membership-inner p { color: #657267; font-size: 1.04rem; line-height: 1.9; }
.home-premium-image { min-height: 480px; overflow: hidden; border-radius: 1rem 0 1rem 0; background: #d8d8cc; }
.home-premium-image img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.home-club-intro { background: #f0eadc; }
.home-highlight-statement { display: block; max-width: 350px; margin-top: 2.5rem; color: #b98b47; font-size: .75rem; letter-spacing: .18em; line-height: 1.5; }
.home-text-link { display: inline-flex; gap: .6rem; align-items: center; margin-top: 2rem; color: #1c3b2b; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.home-text-link span { color: #b98b47; font-size: 1.2rem; transition: transform .2s ease; }
.home-text-link:hover span { transform: translateX(4px); }
.home-experience-section { min-height: 690px; display: flex; align-items: flex-end; padding: 5rem 0; background-position: center; background-size: cover; }
.home-experience-panel { width: min(680px, calc(100% - 3rem)); margin-left: max(1.5rem, calc((100% - 1180px) / 2)); padding: 3.5rem; background: #f6f0e4; color: #1c3b2b; }
.home-experience-panel h2 { margin: .9rem 0 1.2rem; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.05em; line-height: .98; }
.home-experience-panel p { margin: 0; color: #657267; line-height: 1.85; }
.home-relax-section { background: #fff; text-align: center; }
.home-premium-narrow { width: min(900px, calc(100% - 3rem)); margin: 0 auto; }
.home-relax-section .home-premium-narrow { max-width: 900px; }
.home-relax-section p { max-width: 680px; margin-left: auto; margin-right: auto; }
.home-big-statement { display: block; margin: 3rem 0 1rem; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.3rem, 6vw, 6rem); font-weight: 500; letter-spacing: -.06em; line-height: .92; }
.home-glance-section { padding: 4rem 0; background: #1c3b2b; }
.home-glance-grid { display: grid; grid-template-columns: repeat(4, 1fr); width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.home-glance-item { padding: 1rem 2rem; border-right: 1px solid rgba(255,255,255,.18); text-align: center; }
.home-glance-item:last-child { border-right: 0; }
.home-glance-item strong { display: block; color: #f4ecd9; font-family: Georgia, serif; font-size: clamp(2.4rem, 4vw, 4.6rem); font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.home-glance-item span { display: block; margin-top: .8rem; color: #cda56a; font-size: .68rem; font-weight: 700; letter-spacing: .16em; }
.home-facilities-section { background: #f7f4ec; }
.home-premium-narrow h2 { max-width: 820px; }
.home-facilities-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 3rem auto 0; }
.home-facility-item { position: relative; min-height: 320px; overflow: hidden; background: #1c3b2b; }
.home-facility-item img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; opacity: .62; transition: transform .5s ease, opacity .5s ease; }
.home-facility-item:hover img { transform: scale(1.04); opacity: .8; }
.home-facility-item > div { position: absolute; right: 0; bottom: 0; left: 0; padding: 1.2rem; background: linear-gradient(transparent, rgba(12,38,28,.94)); color: #fff; }
.home-facility-item > div > span { color: #d1a25c; font-size: .7rem; font-weight: 700; }
.home-facility-item h3 { margin: .5rem 0 .2rem; color: #fff; font-family: Georgia, serif; font-size: 1.1rem; line-height: 1.05; }
.home-facility-item p { margin: 0; color: rgba(255,255,255,.75); font-size: .78rem; line-height: 1.5; }
.home-centered-action { display: flex; justify-content: center; margin-top: 3rem; }
.home-gallery-section { background: #fff; }
.home-gallery-editorial { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 3rem auto 0; }
.home-gallery-editorial figure { position: relative; height: 390px; margin: 0; overflow: hidden; background: #d8d8cc; }
.home-gallery-editorial figure:nth-child(2) { margin-top: 4rem; }
.home-gallery-editorial img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.home-gallery-editorial figure:hover img { transform: scale(1.04); }
.home-gallery-editorial figcaption { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-shadow: 0 1px 5px rgba(0,0,0,.4); text-transform: uppercase; }
.home-destinations-section { min-height: 680px; display: grid; place-items: center; background-position: center; background-size: cover; color: #fff; }
.home-destinations-inner { width: min(1000px, calc(100% - 3rem)); padding: 7rem 0; text-align: center; }
.home-destinations-inner h2 { max-width: 850px; margin-left: auto; margin-right: auto; color: #fff; }
.home-destinations-inner p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,.84); }
.home-destination-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 2.5rem auto; }
.home-destination-chips span { padding: .7rem 1rem; border: 1px solid rgba(222,190,133,.5); border-radius: 999px; color: #f5e8cf; font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.home-community-section { background: #f0eadc; }
.home-community-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 320px; border-left: 1px solid #cdbd9f; }
.home-community-stat strong { color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(7rem, 15vw, 13rem); font-weight: 500; letter-spacing: -.1em; line-height: .8; }
.home-community-stat span { margin-top: 1.5rem; color: #b98b47; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.home-membership-section { padding: 6rem 0; background: #fff; text-align: center; }
.home-membership-inner { width: min(900px, calc(100% - 3rem)); margin: 0 auto; }
.home-membership-inner p { max-width: 760px; margin: 0 auto 2rem; }
.home-story-section { padding: 7rem 0; background: #f0eadc; }
.home-story-section .home-premium-narrow { text-align: center; }
.home-story-section p { max-width: 720px; margin: 0 auto; color: #657267; font-size: 1.05rem; line-height: 1.9; }
.home-future-section { padding: 7rem 0; background: #1c3b2b; color: #fff; }
.home-future-section .home-premium-narrow { text-align: center; }
.home-future-section h2 { color: #fff; }
.home-future-section p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,.78); }
.home-future-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 2rem; width: min(1000px, calc(100% - 3rem)); margin: 3rem auto; border-top: 1px solid rgba(255,255,255,.2); }
.home-future-list div { display: flex; gap: 1rem; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.home-future-list span { color: #d1a25c; font-family: Georgia, serif; font-size: 1.4rem; }
.home-future-list strong { color: #f4ecd9; font-size: .84rem; line-height: 1.35; }
.home-final-section { min-height: 650px; display: grid; place-items: center; background-position: center; background-size: cover; color: #fff; text-align: center; }
.home-final-inner { width: min(850px, calc(100% - 3rem)); padding: 7rem 0; }
.home-final-section p { color: rgba(255,255,255,.84); font-size: 1.25rem; }
@media (max-width: 1000px) { .home-facilities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .home-future-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .home-premium-two-col { grid-template-columns: 1fr; gap: 3rem; } .home-premium-image, .home-premium-image img { min-height: 350px; } .home-glance-grid { grid-template-columns: repeat(2, 1fr); } .home-glance-item { border-bottom: 1px solid rgba(255,255,255,.18); } .home-glance-item:nth-child(2) { border-right: 0; } .home-facilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .home-gallery-editorial { grid-template-columns: 1fr 1fr; } .home-gallery-editorial figure { height: 300px; } .home-gallery-editorial figure:nth-child(2) { margin-top: 0; } .home-community-stat { border-top: 1px solid #cdbd9f; border-left: 0; } }
@media (max-width: 560px) { .home-premium-hero-inner, .home-premium-two-col, .home-premium-narrow, .home-glance-grid, .home-facilities-grid, .home-gallery-editorial, .home-destinations-inner, .home-membership-inner, .home-future-list, .home-final-inner { width: min(100% - 2rem, 560px); } .home-premium-section { padding: 4.5rem 0; } .home-premium-hero { min-height: 650px; } .home-premium-hero-inner { padding: 8rem 0 3rem; } .home-premium-actions { flex-direction: column; align-items: stretch; } .home-premium-actions .btn { justify-content: center; width: 100%; } .home-premium-location { margin-top: 3rem; } .home-experience-section { min-height: 560px; padding: 2rem 0; } .home-experience-panel { width: min(100% - 2rem, 560px); margin: 0 auto; padding: 2rem; } .home-glance-item { padding: 1.5rem .5rem; } .home-facilities-grid, .home-gallery-editorial, .home-future-list { grid-template-columns: 1fr; } .home-gallery-editorial figure { height: 280px; } .home-destination-chips { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; } .home-destination-chips span { flex: 0 0 auto; } .home-future-list div { padding: 1rem 0; } }


/* Final typography and CTA refinement */
.home-premium-hero-inner { width: min(1180px, calc(100% - 3rem)); padding: 9.25rem 0 3.75rem; }
.home-premium-hero h1 { max-width: 820px; margin: 1.25rem 0 1.5rem; font-size: clamp(3.25rem, 6.2vw, 6rem); line-height: .98; }
.home-premium-hero p { max-width: 650px; margin: 0; font-size: 1.05rem; line-height: 1.65; }
.home-premium-actions { align-items: center; margin-top: 1.75rem; }
.home-premium-actions .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.55rem; border-radius: 999px; line-height: 1; }
.home-premium-location { margin-top: 3.5rem; }
.home-premium-copy h2, .home-premium-narrow h2, .home-destinations-inner h2, .home-membership-inner h2 { font-size: clamp(2.35rem, 4.2vw, 4.35rem); line-height: 1.02; }
.home-experience-panel h2 { font-size: clamp(2.35rem, 4.2vw, 4.25rem); }
.home-final-section h2 { font-size: clamp(3rem, 6.2vw, 6rem); }
.about-recreated-hero-inner { padding: 8rem 0 5rem; }
.about-recreated-hero h1 { font-size: clamp(3rem, 5.8vw, 5.8rem); line-height: .98; }
.about-recreated-copy h2, .about-recreated-narrow h2 { font-size: clamp(2.35rem, 4.2vw, 4.35rem); line-height: 1.02; }
.about-culture-inner h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.about-final-cta h2 { font-size: clamp(3rem, 6.2vw, 6rem); }
.about-final-actions { align-items: center; }
.about-final-actions .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.55rem; border-radius: 999px; line-height: 1; }
@media (max-width: 760px) {
  .home-premium-hero-inner { padding: 8rem 0 3rem; }
  .home-premium-hero h1 { font-size: clamp(2.8rem, 9vw, 4rem); }
  .home-premium-actions, .about-final-actions { justify-content: flex-start; }
  .home-premium-actions .btn, .about-final-actions .btn { width: auto; }
}
@media (max-width: 560px) {
  .home-premium-hero-inner { padding: 7rem 0 2.5rem; }
  .home-premium-hero h1 { margin-top: 1rem; margin-bottom: 1.25rem; font-size: clamp(2.55rem, 11.5vw, 3.35rem); }
  .home-premium-hero p { font-size: .98rem; }
  .home-premium-actions, .about-final-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .home-premium-actions .btn, .about-final-actions .btn { width: 100%; }
  .home-premium-location { margin-top: 2.75rem; }
  .about-recreated-hero-inner { padding: 7rem 0 3.5rem; }
  .about-recreated-hero h1 { font-size: clamp(2.7rem, 11vw, 3.7rem); }
}
/* Shared premium interior pages */
.shared-premium-page { overflow: hidden; background: #f7f4ec; color: #1d2922; }
.shared-premium-hero { min-height: 650px; display: flex; align-items: flex-end; background-color: #1c3b2b; background-position: center; background-size: cover; color: #fff; }
.shared-gallery-hero { background-image: linear-gradient(90deg, rgba(7,30,25,.72), rgba(7,30,25,.25)), url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=1800&q=80'); }
.shared-ladies-hero { background-position: center 35%; }
.shared-explore-hero { background-image: linear-gradient(90deg, rgba(7,30,25,.78), rgba(7,30,25,.3)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1800'); }
.shared-affiliated-hero { background-image: linear-gradient(90deg, rgba(7,30,25,.9), rgba(7,30,25,.55)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=1800'); }
.shared-premium-hero-inner { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 9rem 0 4rem; }
.shared-premium-eyebrow { display: inline-block; color: #c9a15f; font-size: .7rem; font-weight: 700; letter-spacing: .2em; line-height: 1.5; text-transform: uppercase; }
.shared-premium-hero h1 { max-width: 900px; margin: 1.2rem 0 1.4rem; color: #fff !important; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.2rem, 6.5vw, 6.8rem); font-weight: 500; letter-spacing: -.06em; line-height: .96; }
.shared-premium-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.86); font-size: 1.08rem; line-height: 1.75; }
.shared-premium-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2rem; }
.shared-premium-actions .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.55rem; border-radius: 999px; text-decoration: none; }
.shared-premium-actions .btn span, .shared-dark-statement .btn span, .shared-editorial-card a span, .shared-benefit-grid a span { margin-left: .35rem; }
.shared-premium-location { display: block; margin-top: 3.5rem; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 700; letter-spacing: .18em; }
.shared-premium-section { padding: 7rem 0; }
.shared-cream-section { background: #f0eadc; }
.shared-white-section { background: #fff; }
.shared-premium-narrow { width: min(900px, calc(100% - 3rem)); margin: 0 auto; }
.shared-premium-narrow h2, .shared-premium-copy h2, .shared-dark-statement h2 { margin: .9rem 0 1.3rem; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.4rem, 4.5vw, 4.65rem); font-weight: 500; letter-spacing: -.055em; line-height: 1; }
.shared-premium-lead, .shared-premium-copy p, .shared-dark-statement p { color: #657267; font-size: 1.04rem; line-height: 1.9; }
.shared-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 3.5rem auto 0; }
.shared-image-card { position: relative; min-height: 330px; overflow: hidden; background: #1c3b2b; }
.shared-image-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; opacity: .7; transition: transform .5s ease, opacity .5s ease; }
.shared-image-card:hover img { transform: scale(1.05); opacity: .86; }
.shared-image-card-overlay { position: absolute; right: 0; bottom: 0; left: 0; padding: 1.25rem; background: linear-gradient(transparent, rgba(12,38,28,.95)); color: #fff; }
.shared-image-card-overlay > span, .shared-number-grid article > span, .shared-editorial-card > div > span, .shared-benefit-grid article > span { color: #d1a25c; font-family: Georgia, serif; font-size: 1.4rem; }
.shared-image-card-overlay h3, .shared-image-card-overlay p { color: #fff; }
.shared-image-card-overlay h3 { margin: .45rem 0 .35rem; font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.05; }
.shared-image-card-overlay p { margin: 0; color: rgba(255,255,255,.75); font-size: .78rem; line-height: 1.5; }
.shared-dark-statement { padding: 7rem 0; background: #1c3b2b; color: #fff; }
.shared-dark-statement .shared-premium-narrow, .shared-dark-statement .shared-premium-two-col { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.shared-dark-statement h2 { color: #fff; }
.shared-dark-statement p { color: rgba(255,255,255,.78); }
.shared-dark-statement .btn { margin-top: 1.4rem; }
.shared-premium-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.shared-feature-image { min-height: 460px; overflow: hidden; border-radius: 1rem 0 1rem 0; background: #d8d8cc; }
.shared-feature-image img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.shared-feature-image > span { display: block; margin-top: -2rem; position: relative; padding: 0 1.2rem; color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .16em; }
.shared-number-grid, .shared-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 3.5rem auto 0; }
.shared-number-grid article, .shared-benefit-grid article { min-height: 250px; padding: 1.7rem; border-top: 2px solid #b98b47; background: #f7f4ec; }
.shared-number-grid h3, .shared-benefit-grid h3 { margin: 2rem 0 .8rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.08; }
.shared-number-grid p, .shared-benefit-grid p { margin: 0; color: #657267; font-size: .9rem; line-height: 1.7; }
.shared-gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; width: min(1180px, calc(100% - 3rem)); margin: 3rem auto 1.5rem; }
.shared-gallery-filters .filter-btn { padding: .7rem 1.1rem; border: 1px solid #cdbd9f; border-radius: 999px; background: transparent; color: #1c3b2b; cursor: pointer; font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.shared-gallery-filters .filter-btn.active, .shared-gallery-filters .filter-btn:hover { border-color: #1c3b2b; background: #1c3b2b; color: #fff; }
.shared-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.shared-gallery-card { position: relative; height: 350px; margin: 0; overflow: hidden; background: #1c3b2b; }
.shared-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shared-gallery-card:hover img { transform: scale(1.04); }
.shared-gallery-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 1.3rem; background: linear-gradient(transparent, rgba(12,38,28,.95)); color: #fff; }
.shared-gallery-card h3 { margin: .8rem 0 .3rem; color: #fff; font-family: Georgia, serif; font-size: 1.2rem; }
.shared-gallery-card figcaption > span { color: #d1a25c; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.shared-gallery-card figcaption small { margin-right: .35rem; color: rgba(255,255,255,.72); font-size: .68rem; }
.shared-gallery-card .btn-danger { margin-top: .8rem; border: 0; border-radius: 999px; background: #a33b30; color: #fff; font-size: .7rem; padding: .45rem .8rem; }
.shared-cms-add-card { width: min(600px, calc(100% - 3rem)); margin: 3rem auto 0; padding: 2rem; background: #fff; }
.shared-cms-add-card h3 { color: #1c3b2b; font-family: Georgia, serif; }
.shared-cms-add-card form { display: grid; gap: .8rem; }
.shared-cms-add-card input, .shared-cms-add-card select { width: 100%; padding: .8rem; border: 1px solid #d6d0c2; background: #f7f4ec; }
.shared-editorial-card { overflow: hidden; background: #fff; }
.shared-editorial-card img, .shared-editorial-placeholder { width: 100%; height: 240px; object-fit: cover; }
.shared-editorial-placeholder { display: grid; place-items: center; background: #1c3b2b; color: #d1a25c; font-family: Georgia, serif; font-size: 2rem; }
.shared-editorial-card > div:not(.shared-editorial-placeholder) { padding: 1.5rem; }
.shared-editorial-card > div > span { font-size: 1.1rem; }
.shared-editorial-card h3 { margin: .8rem 0 .7rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.4rem; line-height: 1.05; }
.shared-editorial-card p { margin: 0; color: #657267; font-size: .88rem; line-height: 1.7; }
.shared-note-card { width: min(800px, calc(100% - 3rem)); margin: 3rem auto 0; padding: 1.5rem; border: 1px solid rgba(255,255,255,.18); border-left: 3px solid #c9a15f; background: rgba(255,255,255,.05); }
.shared-note-card p { margin: .7rem 0 0; color: rgba(255,255,255,.78); }
.affiliated-directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.affiliated-directory-grid article { min-height: 300px; background: #f7f4ec; }
.affiliated-directory-grid small { display: block; margin-top: .5rem; color: #b98b47; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.affiliated-directory-grid article > div { color: #657267; font-size: .88rem; line-height: 1.7; }
.affiliated-directory-grid a, .shared-empty-card a { display: inline-block; margin-top: 1.2rem; color: #1c3b2b; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.shared-empty-card { background: #f0eadc !important; }
@media (max-width: 1000px) { .shared-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .shared-number-grid, .shared-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .shared-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .affiliated-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .shared-premium-two-col { grid-template-columns: 1fr; gap: 3rem; } .shared-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .shared-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .shared-premium-hero { min-height: 620px; } .shared-premium-hero-inner, .shared-premium-narrow, .shared-dark-statement .shared-premium-narrow, .shared-dark-statement .shared-premium-two-col, .shared-card-grid, .shared-number-grid, .shared-benefit-grid, .shared-gallery-filters, .shared-gallery-grid, .shared-cms-add-card, .shared-note-card { width: min(100% - 2rem, 560px); } .shared-premium-hero-inner { padding: 7rem 0 3rem; } .shared-premium-hero h1 { font-size: clamp(2.7rem, 11vw, 3.7rem); } .shared-premium-hero p { font-size: .98rem; } .shared-premium-actions { flex-direction: column; align-items: stretch; } .shared-premium-actions .btn { width: 100%; } .shared-premium-section, .shared-dark-statement { padding: 4.5rem 0; } .shared-card-grid, .shared-number-grid, .shared-benefit-grid, .shared-gallery-grid, .affiliated-directory-grid { grid-template-columns: 1fr; } .shared-image-card, .shared-image-card img { min-height: 300px; } .shared-gallery-card { height: 300px; } .shared-feature-image, .shared-feature-image img { min-height: 330px; } .shared-gallery-filters { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .4rem; } .shared-gallery-filters .filter-btn { flex: 0 0 auto; } }


/* About Us number refinement and reliable image presentation */
.about-year-panel span { font-size: clamp(4.75rem, 9vw, 8.5rem); line-height: .84; }
.about-member-stat { padding: 2rem; }
.about-member-stat strong { font-size: clamp(4.5rem, 8vw, 7.5rem); line-height: .84; }
.about-recreated-image, .about-recreated-image img { min-height: 390px; }
@media (max-width: 900px) { .about-year-panel span { font-size: clamp(4.5rem, 18vw, 7rem); } .about-member-stat strong { font-size: clamp(4.5rem, 18vw, 7rem); } }
@media (max-width: 620px) { .about-recreated-image, .about-recreated-image img { min-height: 300px; } .about-year-panel span, .about-member-stat strong { font-size: clamp(4.25rem, 23vw, 6.2rem); } }


/* Ladies Wing professional refinement */
.ladies-premium-page { background: #f7f4ec; }
.ladies-premium-page .shared-ladies-hero { min-height: 690px; background-position: center 30%; }
.ladies-premium-page .shared-premium-hero-inner { width: min(1080px, calc(100% - 3rem)); padding-bottom: 5rem; }
.ladies-premium-page .shared-premium-eyebrow { letter-spacing: .24em; }
.ladies-premium-page .shared-premium-hero h1 { max-width: 760px; font-size: clamp(3.4rem, 7vw, 7rem); }
.ladies-premium-page .shared-premium-hero p { max-width: 590px; font-size: 1.1rem; }
.ladies-premium-page .shared-premium-actions { margin-top: 2.3rem; }
.ladies-premium-page .shared-premium-actions .btn-primary { background: #c39a5a; box-shadow: 0 8px 20px rgba(195,154,90,.22); }
.ladies-premium-page .shared-premium-actions .btn-primary:hover { background: #d4af72; }
.ladies-premium-page .shared-premium-section:first-of-type { padding: 8rem 0; background: #f1ebdf; }
.ladies-premium-page .shared-premium-copy { max-width: 650px; }
.ladies-premium-page .shared-premium-copy h2 { max-width: 580px; font-size: clamp(2.7rem, 5vw, 5.1rem); }
.ladies-premium-page .shared-premium-copy p { max-width: 610px; font-size: 1.05rem; line-height: 1.95; }
.ladies-premium-page .shared-feature-image { position: relative; min-height: 510px; border-radius: 8rem 0 8rem 0; box-shadow: 18px 18px 0 #d8c9ad; }
.ladies-premium-page .shared-feature-image::before { position: absolute; top: 1.5rem; left: 1.5rem; z-index: 1; width: 4rem; height: 4rem; border-top: 1px solid #ead5ad; border-left: 1px solid #ead5ad; content: ''; }
.ladies-premium-page .shared-feature-image img { min-height: 510px; filter: saturate(.82) contrast(1.02); }
.ladies-premium-page .shared-feature-image > span { margin-top: -3.3rem; padding: 0 1.6rem; letter-spacing: .2em; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.ladies-premium-page #ladies-focus { padding-top: 8rem; }
.ladies-premium-page #ladies-focus > .shared-premium-narrow { text-align: center; }
.ladies-premium-page #ladies-focus > .shared-premium-narrow h2 { max-width: 700px; margin-right: auto; margin-left: auto; font-size: clamp(2.6rem, 5vw, 5rem); }
.ladies-premium-page .shared-number-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; margin-top: 4rem; }
.ladies-premium-page .shared-number-grid article { position: relative; min-height: 250px; padding: 2rem 2.2rem; border-top: 0; border-left: 3px solid #c39a5a; background: #fbfaf6; box-shadow: 0 10px 28px rgba(31,55,42,.06); transition: transform .25s ease, box-shadow .25s ease; }
.ladies-premium-page .shared-number-grid article::after { position: absolute; right: 1.5rem; bottom: 1.2rem; color: #d8c9ad; content: '↗'; font-family: Georgia, serif; font-size: 1.6rem; }
.ladies-premium-page .shared-number-grid article:hover { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(31,55,42,.12); }
.ladies-premium-page .shared-number-grid article > span { color: #b98b47; font-size: 1rem; letter-spacing: .08em; }
.ladies-premium-page .shared-number-grid h3 { margin: 2.4rem 0 .85rem; font-size: 1.55rem; }
.ladies-premium-page .shared-number-grid p { max-width: 460px; font-size: .94rem; line-height: 1.8; }
@media (max-width: 760px) { .ladies-premium-page .shared-feature-image { box-shadow: 12px 12px 0 #d8c9ad; } .ladies-premium-page .shared-number-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ladies-premium-page .shared-ladies-hero { min-height: 630px; } .ladies-premium-page .shared-premium-hero-inner { width: min(100% - 2rem, 560px); padding-bottom: 3rem; } .ladies-premium-page .shared-premium-hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); } .ladies-premium-page .shared-premium-section:first-of-type, .ladies-premium-page #ladies-focus { padding: 5rem 0; } .ladies-premium-page .shared-feature-image, .ladies-premium-page .shared-feature-image img { min-height: 330px; } .ladies-premium-page .shared-feature-image { border-radius: 4rem 0 4rem 0; box-shadow: 8px 8px 0 #d8c9ad; } .ladies-premium-page .shared-number-grid article { min-height: 0; padding: 1.5rem; } }


/* Ladies Wing contained editorial model */
.ladies-premium-page { padding-bottom: 0; }
.ladies-premium-page .shared-ladies-hero { width: min(1180px, calc(100% - 3rem)); min-height: 610px; margin: 0 auto; border-radius: 0 0 1rem 1rem; background-position: center 32%; }
.ladies-premium-page .shared-ladies-hero .shared-premium-hero-inner { width: min(1080px, calc(100% - 3rem)); padding: 8rem 0 4.5rem; }
.ladies-premium-page .shared-premium-section:first-of-type { padding: 6rem 0; }
.ladies-premium-page .shared-premium-section:first-of-type .shared-premium-two-col { width: min(1080px, calc(100% - 3rem)); grid-template-columns: 1fr 1fr; gap: 4rem; }
.ladies-premium-page .shared-feature-image { min-height: 430px; border-radius: 0 5rem 0 5rem; box-shadow: 14px 14px 0 #d8c9ad; }
.ladies-premium-page .shared-feature-image img { min-height: 430px; }
.ladies-premium-page #ladies-focus { padding: 6rem 0 7rem; }
.ladies-premium-page #ladies-focus .shared-number-grid { width: min(1080px, calc(100% - 3rem)); margin-top: 3rem; }
@media (max-width: 760px) { .ladies-premium-page .shared-ladies-hero { width: min(100% - 2rem, 680px); min-height: 570px; } .ladies-premium-page .shared-premium-section:first-of-type .shared-premium-two-col { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ladies-premium-page .shared-ladies-hero { width: calc(100% - 1.5rem); min-height: 600px; border-radius: 0 0 .75rem .75rem; } .ladies-premium-page .shared-ladies-hero .shared-premium-hero-inner { width: calc(100% - 2rem); padding-top: 7rem; } .ladies-premium-page .shared-premium-section:first-of-type .shared-premium-two-col, .ladies-premium-page #ladies-focus .shared-number-grid { width: calc(100% - 2rem); } .ladies-premium-page .shared-feature-image, .ladies-premium-page .shared-feature-image img { min-height: 320px; } }


/* Home destination carousel and final CTA alignment */
.home-final-section { display: flex; align-items: center; justify-content: center; }
.home-final-inner { width: min(900px, calc(100% - 3rem)); margin: 0 auto; text-align: center; }
.home-final-inner .home-premium-actions { justify-content: center; }
.home-destination-carousel { position: relative; display: flex; align-items: center; gap: .8rem; width: min(1180px, calc(100% - 3rem)); margin: 3rem auto 0; }
.home-destination-track { display: flex; gap: 1rem; width: 100%; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.home-destination-track::-webkit-scrollbar { display: none; }
.home-destination-card { position: relative; flex: 0 0 calc((100% - 2rem) / 3); min-height: 330px; overflow: hidden; background: #1c3b2b; scroll-snap-align: start; }
.home-destination-card img { width: 100%; height: 330px; object-fit: cover; opacity: .78; transition: transform .5s ease, opacity .5s ease; }
.home-destination-card:hover img { transform: scale(1.05); opacity: .94; }
.home-destination-card::after { position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(7,30,25,.94)); content: ''; pointer-events: none; }
.home-destination-card > div { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 1.25rem; text-align: left; }
.home-destination-card > div > span { color: #d1a25c; font-family: Georgia, serif; font-size: 1.1rem; }
.home-destination-card h3 { max-width: 230px; margin: .5rem 0 0; color: #fff; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.05; }
.home-carousel-control { flex: 0 0 2.7rem; width: 2.7rem; height: 2.7rem; border: 1px solid rgba(230,209,170,.65); border-radius: 50%; background: rgba(7,30,25,.5); color: #f6ecd9; cursor: pointer; font-family: Georgia, serif; font-size: 1.8rem; line-height: 1; }
.home-carousel-control:hover { background: #c39a5a; color: #1c3b2b; }
.home-carousel-dots { display: flex; justify-content: center; gap: .45rem; margin: 1.4rem auto 2rem; }
.home-carousel-dot { width: .45rem; height: .45rem; padding: 0; border: 0; border-radius: 50%; background: rgba(239,224,195,.42); cursor: pointer; }
.home-carousel-dot.active { width: 1.35rem; border-radius: 999px; background: #d1a25c; }
@media (max-width: 760px) { .home-destination-card { flex-basis: calc((100% - 1rem) / 2); } }
@media (max-width: 560px) { .home-final-inner { width: calc(100% - 2rem); } .home-destination-carousel { width: calc(100% - 2rem); gap: .45rem; } .home-destination-card { flex-basis: 86%; min-height: 300px; } .home-destination-card img { height: 300px; } .home-carousel-control { flex-basis: 2.2rem; width: 2.2rem; height: 2.2rem; font-size: 1.4rem; } }


/* Final Ladies Wing narrower professional width */
.ladies-premium-page .shared-ladies-hero { width: min(980px, calc(100% - 4rem)); min-height: 560px; margin: 2rem auto 0; border-radius: .2rem; }
.ladies-premium-page .shared-ladies-hero .shared-premium-hero-inner { width: min(820px, calc(100% - 4rem)); padding: 7rem 0 4rem; }
.ladies-premium-page .shared-premium-hero h1 { max-width: 690px; font-size: clamp(3rem, 5.8vw, 5.8rem); }
.ladies-premium-page .shared-premium-hero p { max-width: 560px; font-size: 1rem; line-height: 1.7; }
.ladies-premium-page .shared-premium-section:first-of-type { padding: 5.5rem 0; }
.ladies-premium-page .shared-premium-section:first-of-type .shared-premium-two-col { width: min(980px, calc(100% - 4rem)); grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 3.5rem; }
.ladies-premium-page .shared-premium-copy h2 { max-width: 490px; font-size: clamp(2.4rem, 4.2vw, 4.2rem); }
.ladies-premium-page .shared-premium-copy p { max-width: 520px; font-size: .98rem; line-height: 1.85; }
.ladies-premium-page .shared-feature-image { min-height: 390px; border-radius: .2rem 4rem .2rem 4rem; box-shadow: 10px 10px 0 #d8c9ad; }
.ladies-premium-page .shared-feature-image img { min-height: 390px; }
.ladies-premium-page #ladies-focus { padding: 5.5rem 0 6rem; }
.ladies-premium-page #ladies-focus .shared-premium-narrow { width: min(760px, calc(100% - 4rem)); }
.ladies-premium-page #ladies-focus > .shared-premium-narrow h2 { font-size: clamp(2.35rem, 4.2vw, 4.2rem); }
.ladies-premium-page #ladies-focus .shared-number-grid { width: min(980px, calc(100% - 4rem)); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2.8rem; }
.ladies-premium-page .shared-number-grid article { min-height: 220px; padding: 1.6rem 1.8rem; }
.ladies-premium-page .shared-number-grid h3 { margin-top: 1.8rem; font-size: 1.35rem; }
.ladies-premium-page .shared-number-grid p { font-size: .88rem; line-height: 1.65; }
@media (max-width: 760px) { .ladies-premium-page .shared-ladies-hero { width: min(100% - 2rem, 680px); margin-top: 1rem; } .ladies-premium-page .shared-ladies-hero .shared-premium-hero-inner { width: min(100% - 2rem, 560px); } .ladies-premium-page .shared-premium-section:first-of-type .shared-premium-two-col, .ladies-premium-page #ladies-focus .shared-number-grid, .ladies-premium-page #ladies-focus .shared-premium-narrow { width: min(100% - 2rem, 680px); } }
@media (max-width: 560px) { .ladies-premium-page .shared-ladies-hero { width: calc(100% - 1rem); min-height: 570px; } .ladies-premium-page .shared-ladies-hero .shared-premium-hero-inner { width: calc(100% - 2rem); padding-top: 6.5rem; } .ladies-premium-page .shared-premium-section:first-of-type { padding: 4rem 0; } .ladies-premium-page .shared-premium-section:first-of-type .shared-premium-two-col, .ladies-premium-page #ladies-focus .shared-number-grid { width: calc(100% - 2rem); } .ladies-premium-page .shared-feature-image, .ladies-premium-page .shared-feature-image img { min-height: 300px; } .ladies-premium-page .shared-number-grid article { min-height: 0; padding: 1.4rem; } }


/* Only the Vibrant Community of Leaders block */
.ladies-premium-page > .shared-premium-section.shared-cream-section { width: min(1080px, calc(100% - 4rem)); margin: 2.5rem auto 0; padding: 5.5rem 0; border-radius: .15rem; }
.ladies-premium-page > .shared-premium-section.shared-cream-section .shared-premium-two-col { width: min(900px, calc(100% - 4rem)); grid-template-columns: minmax(0, .95fr) minmax(0, .9fr); gap: 3.2rem; }
.ladies-premium-page > .shared-premium-section.shared-cream-section .shared-premium-copy { max-width: 480px; }
.ladies-premium-page > .shared-premium-section.shared-cream-section .shared-premium-copy h2 { max-width: 430px; font-size: clamp(2.3rem, 4vw, 4rem); }
.ladies-premium-page > .shared-premium-section.shared-cream-section .shared-premium-copy p { max-width: 460px; font-size: .95rem; line-height: 1.8; }
.ladies-premium-page > .shared-premium-section.shared-cream-section .shared-feature-image { min-height: 380px; border-radius: .15rem 3.5rem .15rem 3.5rem; box-shadow: 10px 10px 0 #d8c9ad; }
.ladies-premium-page > .shared-premium-section.shared-cream-section .shared-feature-image img { min-height: 380px; }
@media (max-width: 760px) { .ladies-premium-page > .shared-premium-section.shared-cream-section { width: min(100% - 2rem, 680px); } .ladies-premium-page > .shared-premium-section.shared-cream-section .shared-premium-two-col { width: calc(100% - 2rem); grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ladies-premium-page > .shared-premium-section.shared-cream-section { width: calc(100% - 1rem); margin-top: 1.25rem; padding: 4rem 0; } .ladies-premium-page > .shared-premium-section.shared-cream-section .shared-premium-two-col { width: calc(100% - 1.5rem); } .ladies-premium-page > .shared-premium-section.shared-cream-section .shared-feature-image, .ladies-premium-page > .shared-premium-section.shared-cream-section .shared-feature-image img { min-height: 300px; } }


/* Ladies Wing complete professional redesign */
.ladies-pro-page { overflow: hidden; background: #f7f4ec; color: #1d2922; }
.ladies-pro-hero { width: min(1180px, calc(100% - 3rem)); min-height: 670px; display: flex; align-items: flex-end; margin: 0 auto; background-position: center; background-size: cover; color: #fff; }
.ladies-pro-hero-inner { width: min(1040px, calc(100% - 4rem)); margin: 0 auto; padding: 9rem 0 4.5rem; }
.ladies-pro-eyebrow { display: inline-block; color: #c9a15f; font-size: .68rem; font-weight: 700; letter-spacing: .22em; line-height: 1.5; text-transform: uppercase; }
.ladies-pro-hero h1 { max-width: 780px; margin: 1.2rem 0 1.35rem; color: #fff; font-family: Georgia, serif; font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 500; letter-spacing: -.065em; line-height: .94; }
.ladies-pro-hero p { max-width: 600px; margin: 0; color: rgba(255,255,255,.86); font-size: 1.08rem; line-height: 1.75; }
.ladies-pro-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.ladies-pro-actions .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.55rem; border-radius: 999px; text-decoration: none; }
.ladies-pro-actions .btn-primary { background: #c39a5a; box-shadow: 0 8px 22px rgba(195,154,90,.22); }
.ladies-pro-actions .btn-primary:hover { background: #d4af72; }
.ladies-pro-location { display: block; margin-top: 3.5rem; color: rgba(255,255,255,.7); font-size: .66rem; font-weight: 700; letter-spacing: .2em; }
.ladies-pro-intro { padding: 8rem 0; background: #f0eadc; }
.ladies-pro-intro-inner { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 6rem; align-items: center; width: min(1060px, calc(100% - 3rem)); margin: 0 auto; }
.ladies-pro-copy { max-width: 560px; }
.ladies-pro-copy h2, .ladies-pro-focus-heading h2, .ladies-pro-closing h2 { margin: .9rem 0 1.35rem; color: #1c3b2b; font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 500; letter-spacing: -.06em; line-height: .98; }
.ladies-pro-copy p, .ladies-pro-focus-heading p, .ladies-pro-closing p { color: #657267; font-size: 1.02rem; line-height: 1.9; }
.ladies-pro-text-link { display: inline-flex; gap: .55rem; align-items: center; margin-top: 2rem; color: #1c3b2b; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.ladies-pro-text-link span { color: #b98b47; font-size: 1.15rem; }
.ladies-pro-image-wrap { position: relative; padding-bottom: 2rem; }
.ladies-pro-image-frame { height: 520px; overflow: hidden; border-radius: .15rem 5.5rem .15rem 5.5rem; background: #d8d8cc; box-shadow: 18px 18px 0 #d8c9ad; }
.ladies-pro-image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84); }
.ladies-pro-image-note { position: absolute; right: -1.5rem; bottom: 0; width: 280px; padding: 1.2rem; background: #1c3b2b; color: rgba(255,255,255,.8); font-size: .76rem; line-height: 1.55; }
.ladies-pro-focus { padding: 8rem 0; background: #fff; }
.ladies-pro-focus-heading { width: min(720px, calc(100% - 3rem)); margin: 0 auto; text-align: center; }
.ladies-pro-focus-heading h2 { color: #1c3b2b; }
.ladies-pro-focus-heading p { max-width: 620px; margin: 0 auto; }
.ladies-pro-focus-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; width: min(1060px, calc(100% - 3rem)); margin: 3.5rem auto 0; }
.ladies-pro-focus-card { position: relative; display: grid; grid-template-columns: 2.5rem 1fr 1.5rem; gap: 1rem; min-height: 220px; padding: 1.8rem; border-top: 2px solid #c39a5a; background: #f7f4ec; box-shadow: 0 9px 25px rgba(31,55,42,.06); transition: transform .25s ease, box-shadow .25s ease; }
.ladies-pro-focus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(31,55,42,.12); }
.ladies-pro-number { color: #b98b47; font-family: Georgia, serif; font-size: 1.15rem; }
.ladies-pro-focus-card h3 { margin: 1.9rem 0 .8rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.08; }
.ladies-pro-focus-card p { margin: 0; color: #657267; font-size: .9rem; line-height: 1.75; }
.ladies-pro-card-arrow { color: #b98b47; font-family: Georgia, serif; font-size: 1.35rem; }
.ladies-pro-closing { padding: 7rem 0; background: #1c3b2b; text-align: center; }
.ladies-pro-closing-inner { width: min(780px, calc(100% - 3rem)); margin: 0 auto; }
.ladies-pro-closing h2 { color: #fff; }
.ladies-pro-closing p { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.78); }
.ladies-pro-closing .btn { margin-top: 2rem; }
@media (max-width: 900px) { .ladies-pro-intro-inner { grid-template-columns: 1fr; gap: 3.5rem; } .ladies-pro-copy { max-width: 720px; } .ladies-pro-image-frame { height: 460px; } }
@media (max-width: 700px) { .ladies-pro-focus-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ladies-pro-hero { width: calc(100% - 1rem); min-height: 620px; } .ladies-pro-hero-inner { width: calc(100% - 2rem); padding: 7rem 0 3rem; } .ladies-pro-hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); } .ladies-pro-hero p { font-size: .98rem; } .ladies-pro-actions { flex-direction: column; align-items: stretch; } .ladies-pro-actions .btn { width: 100%; } .ladies-pro-location { margin-top: 2.75rem; } .ladies-pro-intro, .ladies-pro-focus, .ladies-pro-closing { padding: 5rem 0; } .ladies-pro-intro-inner, .ladies-pro-focus-grid, .ladies-pro-focus-heading, .ladies-pro-closing-inner { width: calc(100% - 2rem); } .ladies-pro-image-frame { height: 350px; border-radius: .15rem 3.5rem .15rem 3.5rem; box-shadow: 9px 9px 0 #d8c9ad; } .ladies-pro-image-note { right: .5rem; width: 235px; font-size: .7rem; } .ladies-pro-focus-card { min-height: 0; padding: 1.4rem; } }


/* Marked Ladies Wing hero only: full viewport width */
.ladies-pro-page > .ladies-pro-hero { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }
@media (max-width: 560px) { .ladies-pro-page > .ladies-pro-hero { width: 100%; } }


/* Explore Bekal listing: keep cards compact; full copy lives on the detail view. */
.explore-card-grid .shared-editorial-card { height: 100%; display: flex; flex-direction: column; }
.explore-card-grid .shared-editorial-card > img,
.explore-card-grid .shared-editorial-card > .shared-editorial-placeholder { flex: 0 0 auto; height: clamp(180px, 18vw, 240px); }
.explore-card-grid .shared-editorial-card > div:not(.shared-editorial-placeholder) { flex: 1; display: flex; flex-direction: column; padding: 1.2rem; }
.explore-card-grid .shared-editorial-card h3 { margin-bottom: 1.1rem; }
.explore-card-grid .shared-editorial-card .explore-view-more-btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 1000px) {
  .explore-card-grid .shared-editorial-card > img,
  .explore-card-grid .shared-editorial-card > .shared-editorial-placeholder { height: clamp(180px, 24vw, 220px); }
}
@media (max-width: 560px) {
  .explore-card-grid .shared-editorial-card > img,
  .explore-card-grid .shared-editorial-card > .shared-editorial-placeholder { height: 210px; }
  .explore-card-grid .shared-editorial-card > div:not(.shared-editorial-placeholder) { padding: 1.1rem; }
  .explore-card-grid .shared-editorial-card h3 { font-size: 1.25rem; }
}

/* Full descriptions remain visible on dedicated destination detail pages. */
.detail-content-section .shared-premium-lead { max-width: 780px; }
.detail-premium-hero p { max-width: 760px; }
@media (max-width: 560px) {
  .detail-premium-hero p { font-size: .98rem; line-height: 1.65; }
}

.member-directory-empty { grid-column: 1 / -1; width: 100%; padding: 3rem 1.5rem; border: 1px solid #e5e7eb; border-radius: 1rem; background: #fff; text-align: center; color: #4b5563; }
.member-directory-empty h3 { margin: 0 0 .6rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.6rem; }
.member-directory-empty p { margin: 0; line-height: 1.7; }

/* Responsive safety for the Explore listing grid. */
.explore-card-grid { align-items: stretch; }
.explore-card-grid .shared-editorial-card { min-width: 0; }
.explore-card-grid .explore-view-more-btn { white-space: nowrap; }
@media (max-width: 760px) {
  .explore-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
}
@media (max-width: 480px) {
  .explore-card-grid { grid-template-columns: 1fr; }
}

/* Keep the current card markup clean even if old cached HTML includes a paragraph. */
.explore-card-grid .shared-editorial-card > div > p { display: none; }


/* Affiliated Clubs: attached floral hero image and single-column directory. */
.shared-affiliated-hero { background-image: linear-gradient(90deg, rgba(7,30,25,.82), rgba(7,30,25,.42)), url('assets/affiliated-club-hero.png'); background-position: center; background-size: cover; }
.affiliated-directory-grid { grid-template-columns: minmax(0, 760px); justify-content: start; }
.affiliated-directory-grid article { width: 100%; min-height: 0; }
@media (max-width: 760px) { .affiliated-directory-grid { grid-template-columns: 1fr; } }


/* Logged-in Member Portal announcements. */
.member-announcements { display: grid; gap: .85rem; margin: 1.25rem 0 1.5rem; }
.member-announcement { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid rgba(185,139,71,.35); border-left: 4px solid #b98b47; border-radius: .75rem; background: linear-gradient(135deg, #fffaf0, #f8f3e7); box-shadow: 0 8px 22px rgba(23,48,35,.06); }
.member-announcement-mark { display: grid; flex: 0 0 2rem; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: #173023; color: #fff; font-weight: 800; }
.member-announcement-content { min-width: 0; }
.member-announcement-label { display: block; color: #b98b47; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.member-announcement h3 { margin: .25rem 0 .2rem; color: #173023; font-family: Georgia, serif; font-size: 1.15rem; }
.member-announcement p { margin: 0; color: #4b5563; line-height: 1.65; }
@media (max-width: 560px) { .member-announcement { padding: .9rem; gap: .75rem; } .member-announcement-mark { flex-basis: 1.75rem; width: 1.75rem; height: 1.75rem; } }


/* Homepage hero subheading requested by the client. */
.home-premium-hero .home-premium-eyebrow { color: #fff; }


/* Founder Promoters photo-card grid: reference-inspired structure, Bekal Club palette. */
.about-founder-section .founder-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; width: min(1080px, calc(100% - 3rem)); margin: 3rem auto 0; border-top: 0; }
.about-founder-section .about-founder-card { overflow: hidden; border: 1px solid #d8d0c2; border-radius: .35rem; background: #fffdf8; box-shadow: 0 10px 24px rgba(28,59,43,.07); transition: transform 180ms ease, box-shadow 180ms ease; }
.about-founder-section .about-founder-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(28,59,43,.14); }
.about-founder-section .about-founder-card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #e7dfd1; }
.about-founder-section .about-founder-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-founder-section .about-founder-placeholder { display: grid; width: 100%; height: 100%; place-items: center; align-content: center; gap: .45rem; background: linear-gradient(145deg, #e9dfcf, #cdbb9a); color: #1c3b2b; }
.about-founder-section .about-founder-placeholder span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; opacity: .7; }
.about-founder-section .about-founder-placeholder b { font-family: Georgia, serif; font-size: clamp(3.8rem, 7vw, 6rem); font-weight: 500; }
.about-founder-section .about-founder-number { position: absolute; top: .75rem; left: .75rem; display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: rgba(28,59,43,.88); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; }
.about-founder-section .about-founder-card-info { padding: 1.15rem 1.2rem 1.3rem; text-align: center; }
.about-founder-section .about-founder-card-info h3 { margin: 0 0 .35rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.about-founder-section .about-founder-card-info p { margin: 0; color: #8a765b; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 820px) { .about-founder-section .founder-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100% - 2rem, 620px); } }
@media (max-width: 520px) { .about-founder-section .founder-photo-grid { grid-template-columns: 1fr; width: min(100% - 2rem, 360px); gap: 1rem; } .about-founder-section .about-founder-card-media { aspect-ratio: 4 / 3; } }


/* Imported affiliated-club directory details. */
.affiliated-directory-grid article .affiliated-club-region { margin: .35rem 0 .2rem; color: #8a765b; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.affiliated-directory-grid article .affiliated-club-address { margin: 0 0 .75rem; color: #52605a; font-size: .88rem; line-height: 1.65; white-space: pre-line; }
.affiliated-directory-grid article .affiliated-club-contact { display: block; margin: .2rem 0; color: #52605a; font-size: .82rem; line-height: 1.5; overflow-wrap: anywhere; white-space: pre-line; }
.affiliated-directory-grid article .affiliated-club-website { display: inline-flex; margin-top: .9rem; color: #b36b19; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.affiliated-directory-grid article .affiliated-club-unavailable { display: inline-block; margin-top: .9rem; color: #8a8f88; font-size: .76rem; font-style: italic; }


/* Affiliated directory: compact three-column desktop layout. */
.affiliated-premium-page .affiliated-directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(1180px, calc(100% - 3rem)); justify-content: stretch; align-items: stretch; gap: 1rem; }
.affiliated-premium-page .affiliated-directory-grid article { width: auto; min-height: 0; padding: 1.35rem; }
.affiliated-premium-page .affiliated-directory-grid article h3 { font-size: 1.12rem; line-height: 1.15; }
.affiliated-premium-page .affiliated-directory-grid article .affiliated-club-address { font-size: .8rem; line-height: 1.5; }
@media (max-width: 1000px) { .affiliated-premium-page .affiliated-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100% - 2rem, 760px); } }
@media (max-width: 560px) { .affiliated-premium-page .affiliated-directory-grid { grid-template-columns: 1fr; width: min(100% - 2rem, 560px); } }


/* Final override for active themes with the legacy single-column rule. */
body .affiliated-premium-page .shared-benefit-grid.affiliated-directory-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; width: min(1180px, calc(100% - 3rem)) !important; justify-content: stretch !important; }
@media (max-width: 1000px) { body .affiliated-premium-page .shared-benefit-grid.affiliated-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; width: min(100% - 2rem, 760px) !important; } }
@media (max-width: 560px) { body .affiliated-premium-page .shared-benefit-grid.affiliated-directory-grid { grid-template-columns: 1fr !important; width: min(100% - 2rem, 560px) !important; } }


/* Affiliated-club region filters. */
.affiliated-region-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; width: min(1180px, calc(100% - 3rem)); margin: 2rem auto 0; }
.affiliated-region-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .7rem .9rem; border: 1px solid #d8d0c2; border-radius: 999px; background: #fffdf8; color: #1c3b2b; cursor: pointer; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.affiliated-region-btn span { color: #a07a42; font-size: .68rem; }
.affiliated-region-btn:hover, .affiliated-region-btn.active { border-color: #1c3b2b; background: #1c3b2b; color: #fff; }
.affiliated-region-btn:hover span, .affiliated-region-btn.active span { color: #f1d59d; }
.affiliated-region-select-label, .affiliated-region-select { display: none; }
.affiliated-filter-count { width: min(1180px, calc(100% - 3rem)); margin: 1rem auto 0; color: #7d8178; font-size: .82rem; text-align: center; }
@media (max-width: 760px) { .affiliated-region-filter { justify-content: flex-start; width: min(100% - 2rem, 560px); flex-wrap: nowrap; overflow-x: auto; padding-bottom: .35rem; } .affiliated-region-btn { flex: 0 0 auto; } }
@media (max-width: 560px) { .affiliated-region-filter { display: none; } .affiliated-region-select-label { display: block; width: min(100% - 2rem, 560px); margin: 1.5rem auto .45rem; color: #7d8178; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-align: left; text-transform: uppercase; } .affiliated-region-select { display: block; width: min(100% - 2rem, 560px); margin: 0 auto; padding: .85rem 1rem; border: 1px solid #d8d0c2; border-radius: .25rem; background: #fffdf8; color: #1c3b2b; font-size: .9rem; } .affiliated-filter-count { width: min(100% - 2rem, 560px); text-align: left; } }


/* Polished affiliated directory toolbar. */
.affiliated-directory-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; width: min(1180px, calc(100% - 3rem)); margin: 2rem auto 0; padding: 1rem 1.15rem; border: 1px solid #e3ddd1; border-radius: .35rem; background: #fbfaf6; box-shadow: 0 8px 24px rgba(28,59,43,.06); }
.affiliated-filter-heading { display: flex; flex-direction: column; gap: .3rem; }
.affiliated-filter-heading .shared-premium-eyebrow { margin: 0; }
.affiliated-filter-heading strong { color: #1c3b2b; font-family: Georgia, serif; font-size: 1.1rem; font-weight: 500; }
.affiliated-directory-toolbar .affiliated-region-select-label { display: none; }
.affiliated-directory-toolbar .affiliated-region-select { display: block; min-width: 250px; margin: 0; padding: .8rem 2.6rem .8rem 1rem; border: 1px solid #cfc6b5; border-radius: .2rem; background: #fff; color: #1c3b2b; font-size: .88rem; }
.affiliated-directory-toolbar .affiliated-region-select:focus { outline: 2px solid rgba(185,139,71,.35); outline-offset: 2px; }
@media (max-width: 560px) { .affiliated-directory-toolbar { display: block; width: min(100% - 2rem, 560px); } .affiliated-directory-toolbar .affiliated-region-select-label { display: block; margin: .9rem 0 .45rem; } .affiliated-directory-toolbar .affiliated-region-select { width: 100%; } }

/* WordPress admin affiliated-club ordering controls. */
.bekkal-sortable-affiliated-list { min-height: 40px; }
.bekkal-affiliated-card-heading > span:first-child { display: inline-flex; align-items: center; gap: .45rem; }
.bekkal-drag-handle { display: inline-flex; align-items: center; justify-content: center; width: 1.65rem; height: 1.65rem; border: 1px solid #d7dce2; border-radius: 4px; background: #f5f7fa; color: #6b7280; cursor: grab; font-size: 1rem; letter-spacing: -.18em; line-height: 1; }
.bekkal-drag-handle:active { cursor: grabbing; }
.bekkal-affiliated-sort-placeholder { height: 90px; margin-top: 20px; border: 2px dashed #c7a56b; border-radius: 6px; background: #fffaf0; }

/* Managing Committee */
/* Managing Committee photos: preserve the complete uploaded image without cropping. */
.committee-member-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}
.committee-member-card img {
  display: block;
  width: 100%;
  height: 330px;
  min-height: 330px;
  object-fit: contain;
  object-position: center;
  background: #e7dfd1;
  opacity: 1;
}
.committee-member-card:hover img {
  transform: none;
  opacity: 1;
}
.committee-member-card .shared-image-card-overlay {
  position: static;
  padding: 1.25rem;
  background: #1c3b2b;
}
@media (max-width: 700px) {
  .committee-member-card img {
    height: 270px;
    min-height: 270px;
  }
}

.committee-card-grid { align-items: stretch; }
.committee-member-card { min-height: 360px; }
.committee-member-placeholder { min-height: 360px; display:flex; flex-direction:column; justify-content:center; align-items:center; background:linear-gradient(135deg,#173d32,#285e4d); color:#fff; }
.committee-member-placeholder span { font-size:14px; letter-spacing:.18em; opacity:.7; }
.committee-member-placeholder b { font-size:86px; font-weight:400; line-height:1; margin-top:18px; }
.committee-group + .committee-group { padding-top: 0; }
.home-founder-section .home-founder-grid { margin-top: 36px; }
.home-founder-section .about-founder-card-media { min-height: 230px; }
@media (max-width: 700px) { .committee-member-card { min-height: 300px; } .committee-member-placeholder { min-height: 300px; } }

/* Homepage founder promoters block: keep these rules independent from About page selectors. */
.home-founder-section .home-founder-grid,
.home-founder-section .founder-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; width: min(1080px, calc(100% - 3rem)); margin: 2rem auto 0; }
.home-founder-section .about-founder-card { overflow: hidden; border: 1px solid #d8d0c2; border-radius: .35rem; background: #fffdf8; box-shadow: 0 10px 24px rgba(28,59,43,.07); }
.home-founder-section .about-founder-card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #e7dfd1; }
.home-founder-section .about-founder-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-founder-section .about-founder-placeholder { display: grid; width: 100%; height: 100%; place-items: center; align-content: center; gap: .45rem; background: linear-gradient(145deg, #e9dfcf, #cdbb9a); color: #1c3b2b; }
.home-founder-section .about-founder-placeholder span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; opacity: .7; }
.home-founder-section .about-founder-placeholder b { font-family: Georgia, serif; font-size: clamp(3.8rem, 7vw, 6rem); font-weight: 500; }
.home-founder-section .about-founder-number { position: absolute; top: .75rem; left: .75rem; display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: rgba(28,59,43,.88); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; }
.home-founder-section .about-founder-card-info { padding: 1.15rem 1.2rem 1.3rem; text-align: center; }
.home-founder-section .about-founder-card-info h3 { margin: 0 0 .35rem; color: #1c3b2b; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.home-founder-section .about-founder-card-info p { margin: 0; color: #8a765b; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 820px) { .home-founder-section .home-founder-grid, .home-founder-section .founder-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(100% - 2rem, 620px); } }
@media (max-width: 520px) { .home-founder-section .home-founder-grid, .home-founder-section .founder-photo-grid { grid-template-columns: 1fr; width: min(100% - 2rem, 360px); gap: 1rem; } .home-founder-section .about-founder-card-media { aspect-ratio: 4 / 3; } }

/* Professional header alignment: logo, navigation, and Member Portal stay on one desktop row. */
@media (min-width: 801px) {
  header { background: rgba(255,255,255,.98); }
  .nav-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: nowrap;
    padding: .8rem clamp(1rem, 2.5vw, 2rem);
    min-height: 78px;
  }
  .nav-top-row { grid-column: 1; min-width: 0; }
  .nav-links {
    grid-column: 2;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(.7rem, 1.35vw, 1.45rem);
    min-width: 0;
    white-space: nowrap;
  }
  .nav-link { font-size: clamp(.75rem, .82vw, .9rem); }
  .nav-cta, .user-widget { grid-column: 3; white-space: nowrap; flex-wrap: nowrap; }
  .nav-cta { padding: .62rem 1.05rem; font-size: .82rem; }
  .user-widget { justify-content: flex-end; gap: .65rem; }
  .site-logo { max-height: 64px; max-width: 180px; }
}
@media (min-width: 801px) and (max-width: 1180px) {
  .nav-container { gap: .8rem; }
  .nav-links { gap: .65rem; }
  .nav-link { font-size: .72rem; }
  .nav-cta { padding-left: .8rem; padding-right: .8rem; }
}
@media (max-width: 800px) {
  .nav-container { align-items: center; }
  .nav-top-row { width: 100%; justify-content: space-between; }
  .site-logo { max-height: 58px; }
  .nav-cta, .user-widget { margin: 0 auto; }
}


/* Affiliated Clubs contact spacing */
.affiliated-premium-page .affiliated-directory-grid .affiliated-club-contact {
  line-height: 2;
}


/* Homepage visual refinement: two-image coastal introduction and facility showcase */
.home-intro-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.home-intro-visual-grid .home-premium-image {
  min-height: 0;
  margin: 0;
  background: #d8d8cc;
}

.home-intro-visual-grid .home-premium-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .55s ease;
}

.home-intro-visual-grid .home-premium-image:hover img {
  transform: scale(1.035);
}

.home-intro-image-primary {
  height: 480px;
  border-radius: 1rem 0 1rem 0;
}

.home-intro-image-secondary {
  height: 480px;
  margin-top: 0 !important;
  border-radius: 0 1rem 0 1rem;
}

.home-facilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .56fr);
  gap: 4rem;
  align-items: end;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.home-facilities-heading .home-premium-narrow {
  width: auto;
  margin: 0;
}

.home-facilities-heading > p {
  max-width: 380px;
  margin: 0 0 .35rem;
  color: #657267;
  font-size: .98rem;
  line-height: 1.85;
}

.home-facilities-section .home-facilities-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.2rem;
}

.home-facility-item {
  min-height: 350px;
  border-radius: .9rem;
  box-shadow: 0 16px 30px rgba(28, 59, 43, .08);
  isolation: isolate;
}

.home-facility-item::after {
  position: absolute;
  inset: .5rem;
  z-index: 1;
  border: 1px solid rgba(244, 236, 217, .28);
  border-radius: .55rem;
  content: '';
  pointer-events: none;
}

.home-facility-item img {
  min-height: 350px;
  filter: saturate(.84);
}

.home-facility-item:hover img {
  filter: saturate(1);
}

.home-facility-copy {
  z-index: 2;
  padding: 1.25rem 1.15rem 1.2rem !important;
}

.home-facility-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
  text-align: left;
}

.home-facility-index {
  color: #d1a25c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.home-facility-category {
  color: rgba(255, 255, 255, .68);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.home-facility-item h3 {
  margin-top: .6rem;
  font-size: 1.02rem;
  line-height: 1.12;
}

.home-facility-item p {
  max-width: 24rem;
  margin-top: .65rem;
  font-size: .74rem;
  line-height: 1.55;
}

.home-facility-office {
  outline: 2px solid rgba(185, 139, 71, .6);
  outline-offset: -7px;
}

.home-facility-clickable {
  cursor: pointer;
}

.home-facility-clickable:focus-visible {
  outline: 2px solid #d1a25c;
  outline-offset: 3px;
}

.home-facility-view-more {
  display: inline-block;
  margin-top: .65rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d1a25c;
  cursor: pointer;
  font: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}

.home-facility-clickable:hover .home-facility-view-more,
.home-facility-clickable:focus-visible .home-facility-view-more {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .home-facilities-section .home-facilities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .home-facilities-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-facilities-heading > p {
    max-width: 620px;
    margin: 0;
  }

  .home-facilities-section .home-facilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-intro-visual-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: .75rem;
  }

  .home-intro-image-primary,
  .home-intro-image-secondary {
    height: 340px;
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .home-intro-visual-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .home-intro-image-primary,
  .home-intro-image-secondary {
    height: 300px;
    margin-top: 0 !important;
  }

  .home-facilities-section .home-facilities-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .home-facility-item,
  .home-facility-item img {
    min-height: 300px;
  }
}
