/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
::selection { background: rgba(55,90,129,0.2); color: #375a81; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ========== FONTS ========== */
@font-face {
  font-family: 'Modny';
  src: url('../fonts/modny_regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

/* ========== VARIABLES ========== */
:root {
  --navy: #375a81;
  --navy-dark: #2d4a6f;
  --gold: #e4c354;
  --gold-dark: #d4b340;
  --gold-text: #b48339;
  --cream: #fdfae3;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --white: #ffffff;
  --font-display: 'Modny', 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.05);
  --transition: 0.3s ease;
}

/* ========== TYPOGRAPHY ========== */
.font-display { font-family: var(--font-display); }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.leading-tight { line-height: 1.1; }
.leading-relaxed { line-height: 1.75; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.container-faq { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: stretch; height: 80px;
}
.header-content {
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.logo-link { flex-shrink: 0; }
.logo-img { width: 200px; height: 50px; object-fit: contain; object-position: left; }
.desktop-nav { display: flex; align-items: center; gap: 1.75rem; }
.desktop-nav a {
  font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--navy); font-weight: 500; transition: color var(--transition);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold-text); }
.desktop-nav a.active { font-weight: 600; }
.header-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; padding: 0 2rem; white-space: nowrap;
  transition: background var(--transition);
}
.header-cta:hover { background: var(--gold-dark); }
.mobile-toggle {
  display: none; padding: 0.5rem; color: var(--navy);
}
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-nav {
  display: none; padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.75rem 1rem; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy);
  border-radius: 6px; transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--gray-50); }
.mobile-nav a.active { color: var(--gold-text); background: var(--cream); font-weight: 600; }
.mobile-nav .mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.5rem; background: var(--gold); color: var(--navy);
  font-size: 0.875rem; font-weight: 700; padding: 0.75rem 1.25rem;
  border-radius: 6px; transition: background var(--transition);
}
.mobile-nav .mobile-cta:hover { background: var(--gold-dark); }

@media (max-width: 1023px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative; overflow: hidden;
  height: 500px; display: flex; align-items: center;
}
.hero--tall { height: 600px; }
.hero--short { height: 400px; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(55,90,129,0.72), rgba(55,90,129,0.52), rgba(55,90,129,0.25));
}
.hero-content {
  position: relative; z-index: 10; width: 100%;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.hero-inner { max-width: 56rem; }
.hero-label {
  display: inline-block; font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; color: #e4c354; font-weight: 600; margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 300; color: #fff;
  font-size: 2.25rem; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1rem; color: rgba(255,255,255,0.9); font-weight: 300;
  line-height: 1.75; max-width: 36rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

@media (min-width: 768px) {
  .hero { height: 600px; }
  .hero--tall { height: 700px; }
  .hero--short { height: 500px; }
  .hero h1 { font-size: 3.2rem; }
  .hero p { font-size: 1.125rem; }
}
@media (min-width: 1280px) {
  .hero h1 { font-size: 3.75rem; }
}

/* ========== SECTION STYLES ========== */
.section { padding: 2.5rem 0; }
@media (min-width: 768px) { .section { padding: 3.5rem 0; } }
.section--navy { background: var(--navy); color: #fff; }
.section--cream { background: var(--cream); }
.section--cream-light { background: rgba(253,250,227,0.6); }
.section--gray { background: var(--gray-50); }
.section--white { background: #fff; }

.section-label {
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-text);
}
.section-label--light { color: #e4c354; }
.section-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: 1.875rem; line-height: 1.1; color: var(--navy); margin-top: 1rem;
}
.section-title--white { color: #fff; }
.section-title--large { font-size: 1.875rem; }
@media (min-width: 768px) {
  .section-title, .section-title--large { font-size: 3rem; }
}
.section-subtitle {
  color: var(--gray-500); margin-top: 1.5rem; max-width: 42rem;
  margin-left: auto; margin-right: auto; line-height: 1.75;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; padding: 0.75rem 1.5rem;
  border-radius: 6px; transition: all var(--transition);
}
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--gold-text { background: var(--gold-text); color: #fff; }
.btn--gold-text:hover { background: #9a7030; }
.btn--outline { background: transparent; color: var(--navy); border: 1px solid rgba(55,90,129,0.2); }
.btn--outline:hover { background: var(--gray-50); }
.btn--white-ghost { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn--white-ghost:hover { background: rgba(255,255,255,0.2); }
.btn--white { background: #fff; color: var(--navy); border: 1px solid rgba(55,90,129,0.2); }
.btn--white:hover { background: var(--gray-50); }
.btn--lg { padding: 1rem 2rem; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; }
.text-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--navy); font-weight: 600; font-size: 0.875rem;
  transition: color var(--transition);
}
.text-link:hover { color: var(--gold-text); }
.text-link svg { width: 16px; height: 16px; }

/* ========== STATS BAR ========== */
.stats-bar { background: var(--navy); color: #fff; padding: 1.25rem 0; }
.stats-bar--padded { padding: 2rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 300;
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label { font-size: 0.75rem; margin-top: 0.5rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }

/* ========== GRIDS ========== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-split { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-split { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ========== CARDS ========== */
.card {
  background: #fff; padding: 2rem; border-radius: 6px;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); }
.card--cream { background: var(--cream); box-shadow: none; }
.card--cream:hover { box-shadow: var(--shadow-sm); }
.card--glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border-radius: 8px; }
.card--bordered-navy { border: 2px solid var(--navy); border-radius: 8px; overflow: hidden; }
.card--bordered-gold { border: 2px solid var(--gold-text); border-radius: 8px; overflow: hidden; }
.card-body { padding: 2rem; }

/* ========== PROGRAM CARDS ========== */
.program-card-img {
  position: relative; padding-top: 56.25%; /* 16:9 */ background: var(--gray-200);
  overflow: hidden;
}
.program-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.program-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.75rem; font-weight: 600; padding: 0.375rem 0.75rem;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
}
.program-badge--navy { background: var(--navy); }
.program-badge--gold { background: var(--gold-text); }

/* ========== ICON CONTAINERS ========== */
.icon-sm { width: 32px; height: 32px; flex-shrink: 0; }
.icon-md { width: 40px; height: 40px; flex-shrink: 0; }
.icon-lg { width: 48px; height: 48px; flex-shrink: 0; }
.icon-xl { width: 64px; height: 64px; flex-shrink: 0; }
.icon-2xl { width: 80px; height: 80px; flex-shrink: 0; }

/* ========== PROPERTY GALLERY ========== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--gray-200);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item--large img { aspect-ratio: 1/1; }
.gallery-item:not(.gallery-item--large) img { aspect-ratio: 4/3; }

/* Property Showcase Grid */
.property-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.property-card {
  position: relative; overflow: hidden; border-radius: 6px;
}
.property-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.7s ease;
}
.property-card:hover img { transform: scale(1.05); }
.property-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, transparent);
}
.property-location {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.875rem; font-weight: 500;
}
.property-location svg { width: 16px; height: 16px; }

/* Two-image lifestyle grid */
.lifestyle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.lifestyle-img {
  position: relative; border-radius: 6px; overflow: hidden;
  background: var(--gray-200); aspect-ratio: 3/4;
}
.lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-img:nth-child(2) { margin-top: 2rem; }

/* ========== FAQ ACCORDION ========== */
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 6px;
  background: rgba(249,250,251,0.5); margin-bottom: 1rem;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; text-align: left; gap: 1rem;
  font-weight: 600; color: var(--navy); font-size: 1rem;
  cursor: pointer; background: none; border: none;
}
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-text);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.5rem;
  color: var(--gray-600); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ========== CONTACT FORM ========== */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700); margin-bottom: 0.5rem;
}
.form-input-wrap { position: relative; }
.form-input-wrap svg {
  position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--gray-400);
}
.form-input-wrap--textarea svg { top: 0.75rem; transform: none; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--gray-200); border-radius: 6px;
  background: var(--gray-50); font-size: 0.875rem;
  transition: all var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(55,90,129,0.15);
}
.form-select { appearance: none; }
.form-textarea { resize: none; min-height: 120px; }

/* ========== TESTIMONIALS ========== */
.testimonial {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px);
  padding: 2rem; border-radius: 8px;
}
.testimonial p { color: rgba(255,255,255,0.9); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-name { font-weight: 600; color: #ebd06c; }
.testimonial-location { color: rgba(255,255,255,0.7); }
.testimonial-program { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

/* ========== PROCESS STEPS ========== */
.step-card { text-align: center; }
.step-num {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 300;
  color: var(--gold-text); margin-bottom: 0.5rem;
}
.step-divider { width: 2rem; height: 2px; background: var(--gold-text); margin: 0 auto 1rem; }
.step-title { font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.step-desc { font-size: 0.875rem; color: var(--gray-500); }

/* ========== EXPERIENCE STEPS ========== */
.exp-step-num {
  background: var(--cream); padding: 2rem; text-align: center;
  border-radius: 6px; margin-bottom: 1.5rem;
}
.exp-step-num span {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold-text);
}

/* ========== PARTNERSHIP COMPARISON ========== */
.compare-header {
  padding: 2.5rem; border-radius: 8px 8px 0 0; color: #fff;
}
.compare-header--navy { background: var(--navy); }
.compare-header--gold { background: var(--gold-text); }
.compare-body {
  padding: 2.5rem; background: #fff; border-radius: 0 0 8px 8px;
}
.compare-body--navy { border: 2px solid var(--navy); border-top: none; }
.compare-body--gold { border: 2px solid var(--gold-text); border-top: none; }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.check-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.check-list--navy svg { color: var(--navy); }
.check-list--gold svg { color: var(--gold-text); }
.check-list span { color: var(--gray-600); }

.compare-quote {
  padding: 1.25rem; border-radius: 6px; margin-bottom: 1.5rem;
}
.compare-quote--navy { background: rgba(55,90,129,0.05); }
.compare-quote--gold { background: rgba(180,131,57,0.05); }
.compare-quote p { color: var(--gray-600); font-style: italic; }
.compare-quote .quote-author { font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }

/* ========== QUALIFICATIONS ========== */
.qual-card { background: #fff; padding: 2.5rem; border-radius: 6px; box-shadow: var(--shadow-sm); }
.qual-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
  color: var(--navy); margin-bottom: 1.5rem;
}
.qual-note {
  margin-top: 2rem; padding: 1.5rem; background: #fff;
  border-left: 4px solid var(--gold-text); border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-sm);
}

/* ========== BORDER CALLOUT ========== */
.callout-border {
  background: #fff; padding: 1.5rem; border-left: 4px solid var(--gold-text); border-radius: 0 6px 6px 0;
}

/* ========== CONTACT INFO SIDEBAR ========== */
.contact-info-box { background: var(--cream); padding: 2.5rem; border-radius: 6px; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.why-partner-box { background: var(--navy); padding: 2.5rem; border-radius: 6px; color: #fff; }
.why-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.why-list svg { width: 16px; height: 16px; color: #e4c354; flex-shrink: 0; }
.why-list span { opacity: 0.9; }

/* ========== SUCCESS MESSAGE ========== */
.success-msg { text-align: center; padding: 4rem 0; }
.success-msg svg { width: 64px; height: 64px; color: var(--gold-text); margin: 0 auto 1.5rem; }

/* ========== FOOTER ========== */
.site-footer { background: var(--navy); color: #fff; }
.footer-inner { padding: 4rem 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { width: 180px; height: 46px; object-fit: contain; object-position: left; margin-bottom: 1.5rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.75; opacity: 0.9; }
.footer-heading {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; opacity: 0.85; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; opacity: 0.85; margin-bottom: 0.75rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-item a { transition: opacity var(--transition); }
.footer-contact-item a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: center; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; opacity: 0.6; }

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.15s; }
.animate-on-scroll.delay-3 { transition-delay: 0.2s; }
.animate-on-scroll.delay-4 { transition-delay: 0.25s; }
.animate-on-scroll.delay-5 { transition-delay: 0.3s; }

/* ========== BULLET DOT ========== */
.bullet-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.bullet-dot--navy { background: var(--navy); }
.bullet-dot--gold { background: var(--gold-text); }

/* ========== MISC ========== */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.hidden-md-down { display: none; }
@media (min-width: 768px) { .hidden-md-down { display: inline; } }

/* Member benefits list on guest experience */
.member-benefit-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.member-benefit-dot {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 300;
  color: var(--gold-text); line-height: 1;
}
