@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Premium HSL Color Palette (Soho House meets Augusta National) */
  /* Base Charcoal Scale — visible contrast between layers */
  --bg-primary: #222725;         /* Base dark charcoal */
  --bg-secondary: #2b3030;       /* Section fill — noticeably lighter than primary */
  --bg-card: #333b38;            /* Card surface — clear contrast against both bg layers */
  --bg-card-hover: #3e4845;      /* Card hover — perceptibly lighter */
  --bg-featured: #0d1610;        /* Deep green-black for Prestige featured card */

  /* Brand Green Scale — reserved for Prestige & waitlist banners only */
  --bg-green-card: #142017;      /* Rich forest green */
  --bg-green-hover: #1b2b20;     /* Forest green hover */
  --bg-green-featured: #0d1610;  /* Deep green-black */

  --accent-gold: #c5a059;        /* Warm antique gold */
  --accent-gold-hover: #b48e47;  /* Gold hover */
  --accent-gold-glow: rgba(197, 160, 89, 0.25);
  --accent-gold-light: rgba(197, 160, 89, 0.12);

  --accent-green: #2b4937;
  --accent-green-bright: #44775d;

  --accent-red: #ff4a4a;
  --accent-red-hover: #ff8888;
  --accent-red-bg: rgba(120, 20, 20, 0.25);

  --text-primary: #ebf2ee;
  --text-secondary: #d2ded7;      /* Brightened for higher contrast and readability */
  --text-muted: #9fb3a7;          /* Brightened for higher contrast and readability */

  --border-color: rgba(197, 160, 89, 0.18);
  --border-light: rgba(235, 242, 238, 0.07);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing & Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2vw + 0.2rem, 2rem);
}

p {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
}

cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 0.75rem;
}

hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow p.lead-text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 6rem 0;
  position: relative;
}

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

/* ==========================================================================
   Visual Break Sections — Full-bleed image breaks & stat bands
   ========================================================================== */

/* Full-bleed image break */
.section-break {
  position: relative;
  padding: 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.section-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 16, 15, 0.88) 0%,
    rgba(13, 16, 15, 0.68) 50%,
    rgba(13, 16, 15, 0.82) 100%
  );
  z-index: 1;
}

.section-break-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* Quote variant */
.break-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.break-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-primary);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  max-width: 820px;
  border: none;
  padding: 0;
  margin: 0;
}

.break-quote cite {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.break-divider {
  width: 48px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.55;
}

/* Stat grid (used inside both image breaks and stat bands) */
.break-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 4px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.break-stats.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.break-stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(197, 160, 89, 0.14);
}

.break-stat-item:last-child {
  border-right: none;
}

.break-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.5rem;
}

.break-stat-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-secondary);
  display: block;
}

.break-stat-sub {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  display: block;
  font-style: italic;
}

/* Pure dark stat band (no image) */
.stat-band {
  background-color: var(--bg-featured);
  border-top: 1px solid rgba(197, 160, 89, 0.10);
  border-bottom: 1px solid rgba(197, 160, 89, 0.10);
}

.stat-band .break-stats {
  border-color: rgba(197, 160, 89, 0.10);
  border-radius: 0;
  max-width: 100%;
}

.stat-band .break-stat-item {
  padding: 3.5rem 2rem;
  border-right-color: rgba(197, 160, 89, 0.10);
}

@media (max-width: 900px) {
  .break-stats.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-break {
    background-attachment: scroll;
    min-height: 0;
  }

  .break-stats,
  .break-stats.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .break-stat-item {
    padding: 2rem 1.2rem;
  }

  .stat-band .break-stat-item {
    padding: 2.5rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .break-stats,
  .break-stats.cols-4 {
    grid-template-columns: 1fr;
  }

  .break-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.14);
  }

  .break-stat-item:last-child {
    border-bottom: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.btn-secondary {
  background-color: rgba(197, 160, 89, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(197, 160, 89, 0.05);
}

/* Global Nav Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(28, 30, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.logo-text span {
  color: var(--accent-gold);
}

.logo-img {
  height: 28px;
  width: auto;
  margin-right: 10px;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  opacity: 1;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(28, 30, 29, 0.45) 0%,
    rgba(28, 30, 29, 0.62) 50%,
    rgba(28, 30, 29, 0.82) 100%
  );
  z-index: 1;
}

/* Background image overrides for pages */
.hero-home {
  background-image: linear-gradient(rgba(28, 30, 29, 0.4), rgba(28, 30, 29, 0.80)), url('../images/hero_golf_course.png');
}
.hero-membership {
  background-image: linear-gradient(rgba(28, 30, 29, 0.50), rgba(28, 30, 29, 0.88)), url('../images/hero_membership.png');
  display: block;
  height: auto;
  min-height: unset;
  padding-top: 11rem;
  padding-bottom: 5rem;
}
.hero-courses {
  background-image: linear-gradient(rgba(28, 30, 29, 0.50), rgba(28, 30, 29, 0.88)), url('../images/hero_courses.jpg');
  display: block;
  height: auto;
  min-height: unset;
  padding-top: 11rem;
  padding-bottom: 5rem;
}
.hero-about {
  background-image: linear-gradient(rgba(28, 30, 29, 0.50), rgba(28, 30, 29, 0.88)), url('../images/hero_about.jpg');
  display: block;
  height: auto;
  min-height: unset;
  padding-top: 11rem;
  padding-bottom: 5rem;
}

/* Tighten top padding of sections immediately following subpage heroes */
.hero-membership + section,
.hero-courses + section,
.hero-about + section {
  padding-top: 5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Grids and Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header span {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
}

/* Step concept row */
.step-card {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.card-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.card-label + h2 {
  margin-bottom: 1.5rem;
}

.quote-container {
  margin-top: 5rem;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

.step-card h3 {
  margin-bottom: 1rem;
}

/* Tier cards */
.tier-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(197, 160, 89, 0.3);
}

/* Highlight Prestige */
.tier-card.featured {
  border: 1px solid var(--accent-gold);
  background-color: var(--bg-featured); /* Darker, high contrast */
  box-shadow: 0 10px 40px -15px rgba(197, 160, 89, 0.15);
}

.tier-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.tier-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.tier-pitch {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  min-height: 5.1rem;
}

.tier-savings {
  font-size: 0.82rem;
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  opacity: 0.85;
  min-height: 2.7rem;
}

.tier-price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.tier-price .amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-primary);
}

.tier-price .period {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tier-features {
  list-style: none;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.tier-features svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  margin-top: 2px;
}

.tier-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Why Golfport Value Props */
.prop-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.prop-item:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.5);
}

.prop-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.step-num-badge {
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.prop-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
}

.prop-text h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.prop-text p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Course teaser & partner logos */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.logo-placeholder {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.logo-placeholder:hover {
  border-color: rgba(197, 160, 89, 0.4);
  color: var(--accent-gold);
  transform: scale(1.02);
}

/* Waitlist Banner / Full Width Callout */
.waitlist-banner {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.waitlist-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-banner h2 {
  margin-bottom: 1rem;
}

.waitlist-banner p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.form-inline {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 1rem;
}

.form-group {
  flex-grow: 1;
}

.form-input {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.form-select {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
  border-radius: 4px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c5a059'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1rem;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* Custom Dropdown Styles for Smooth Animations */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.custom-select-container.open .custom-select-trigger {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.custom-select-trigger .arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23c5a059'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.custom-select-container.open .custom-select-trigger .arrow {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 250px;
  overflow-y: auto;
}

.custom-select-container.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 0.95rem;
}

.custom-option:hover {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--accent-gold);
}

.custom-option.selected {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.custom-option.disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  background-color: transparent;
  opacity: 0.6;
}

.form-fineprint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem !important;
}

/* Membership Page Detail Sections */
.tier-detail-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-light);
}

.tier-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tier-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  background: linear-gradient(45deg, var(--bg-primary), var(--bg-card));
}

.tier-detail-info h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.tier-detail-info .price-tag {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  display: block;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.spec-cell h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.spec-cell p {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 400;
}

.value-pitch-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.value-pitch-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
  color: var(--accent-gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjusted dynamically by JS anyway */
}

/* B2B Course Page Table */
.table-wrapper {
  overflow-x: auto;
  margin: 4rem 0;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

th {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  background-color: rgba(24, 26, 25, 0.4);
}

tr:last-child td {
  border-bottom: none;
}

td {
  font-weight: 300;
}

td strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Form Styles */
.form-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 4rem;
  box-shadow: var(--shadow-premium);
  border-radius: 4px;
}

.info-card-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.form-textarea {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  min-height: 150px;
  resize: vertical;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Timeline/Milestones */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  height: 100%;
  width: 1px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -3rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  transition: var(--transition-smooth);
}

.timeline-item:hover::before {
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

/* Standalone Waitlist Page specific */
.waitlist-standalone-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  background-image: linear-gradient(rgba(28, 30, 29, 0.7), rgba(28, 30, 29, 0.95)), url('../images/hero_waitlist_bg.png');
  background-size: cover;
  background-position: center;
}

.waitlist-standalone-box {
  width: 100%;
  max-width: 600px;
  background-color: rgba(20, 31, 23, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  padding: 4rem;
  box-shadow: var(--shadow-premium);
  text-align: center;
  border-radius: 4px;
}

.waitlist-standalone-box .logo-text {
  justify-content: center;
  margin-bottom: 2rem;
}

.waitlist-standalone-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.waitlist-standalone-box p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.waitlist-standalone-box button[type="submit"] {
  width: 100%;
  margin-top: 1.5rem;
}

.waitlist-standalone-box .form-group {
  text-align: left;
}

/* Footer styling */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links-col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

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

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-socials a:hover {
  color: var(--accent-gold);
}

/* Animation utilities */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Inline success/error message overlays */
.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(34, 63, 47, 0.4);
  border: 1px solid var(--accent-green-bright);
  color: var(--text-primary);
}

.form-message.error {
  display: block;
  background-color: var(--accent-red-bg);
  border: 1px solid var(--accent-red);
  color: var(--accent-red-hover);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  
  .grid-3, .grid-2, .pricing-grid, .tier-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .form-inline {
    flex-direction: column;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    z-index: 1050;
    transition: var(--transition-smooth);
    padding: 2rem;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .waitlist-banner {
    padding: 3rem 1.5rem;
  }
  
  .form-box, .waitlist-standalone-box {
    padding: 2.5rem 1.5rem;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .tier-card.featured {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   Clean Code Cleanup - Standardized Utility & Layout Classes
   ========================================================================== */

.pull-quote {
  font-size: 1.5rem;
  color: var(--accent-gold);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  text-align: center;
  border: none;
  padding: 0;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

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

.grid-2.align-start {
  align-items: flex-start;
}

.nav-links .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.founder-headshot-container {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-premium);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #727177; /* matches photo background edge */
}

.founder-headshot-img {
  position: absolute;
  width: 100%;
  height: auto;
  top: -40px;
  left: 0;
  transform: scale(1.0);
  transform-origin: center top;
  display: block;
}

.founder-title {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.footer-brand .tagline {
  margin-top: 1rem;
  color: var(--text-secondary);
}

.footer-brand .location {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.waitlist-back-btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.waitlist-back-btn:hover {
  color: var(--accent-gold);
}

.waitlist-back-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

#prestige-tier h2 {
  color: var(--accent-gold);
}

@media (min-width: 769px) {
  .tier-detail-grid.reverse > div:first-child {
    order: 2;
  }
  .tier-detail-grid.reverse > div:last-child {
    order: 1;
  }
}

.note-text {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.protection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.protection-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.protection-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.info-card-box h3.subheading {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.info-card-box blockquote,
.info-card-box p {
  font-size: 1rem;
}

.info-card-box blockquote:not(:last-child),
.info-card-box p:not(:last-child) {
  margin-bottom: 2rem;
}

.form-box h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.8rem;
}

.form-box p.form-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.form-box button[type="submit"] {
  width: 100%;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Green Accent — Purposeful: Prestige featured card + waitlist banners only
   ========================================================================== */

/* Prestige featured tier card */
.card-green-featured {
  background-color: var(--bg-green-featured) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 10px 40px -15px rgba(197, 160, 89, 0.25) !important;
}

.card-green-featured:hover {
  background-color: var(--bg-green-hover) !important;
}

/* Waitlist CTA banners — green accent retained */
.waitlist-banner.card-green {
  background-color: var(--bg-green-card) !important;
  border-color: var(--border-color) !important;
}

.waitlist-banner.card-green:hover {
  background-color: var(--bg-green-hover) !important;
  border-color: rgba(197, 160, 89, 0.4) !important;
}

/* Timeline card style */
.timeline-content {
  padding: 1.5rem 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-premium);
}

/* Current milestone highlight on timeline */
.timeline-content.active-milestone {
  background-color: var(--bg-green-card);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.08);
}

.timeline-content.active-milestone:hover {
  background-color: var(--bg-green-hover);
}

/* Disclaimer Callout Box */
.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: var(--max-width-narrow);
  margin: 3.5rem auto 0;
  padding: 1.5rem 2rem;
  background-color: rgba(197, 160, 89, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 4px;
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  margin-top: 2px;
}

.disclaimer-icon svg {
  width: 100%;
  height: 100%;
}

.disclaimer-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.disclaimer-text strong {
  color: var(--accent-gold);
  font-weight: 500;
}

@media (max-width: 768px) {
  .disclaimer-box {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    margin-top: 2.5rem;
  }
  .disclaimer-icon {
    margin-top: 0;
  }
}

/* ==========================================================================
   Success Modal
   ========================================================================== */

/* Prevent scrolling when modal is active */
body.modal-open {
  overflow: hidden;
}

.golfport-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(28, 30, 29, 0); /* starts invisible */
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.golfport-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(28, 30, 29, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.golfport-modal-container {
  background-color: var(--bg-green-card);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  padding: 3.5rem 3rem 3rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(197, 160, 89, 0.08);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.golfport-modal-overlay.active .golfport-modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.golfport-modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.golfport-modal-close-btn:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.golfport-modal-close-btn svg {
  width: 20px;
  height: 20px;
}

.golfport-modal-icon {
  width: 64px;
  height: 64px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(197, 160, 89, 0.08);
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.05);
}

.golfport-modal-icon svg {
  width: 32px;
  height: 32px;
}

.golfport-modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.golfport-modal-message {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 380px;
}

.golfport-modal-action-btn {
  width: 100%;
}

@media (max-width: 576px) {
  .golfport-modal-container {
    padding: 3rem 1.5rem 2rem;
  }
  .golfport-modal-title {
    font-size: 1.8rem;
  }
  .golfport-modal-message {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
}

/* CTO Placeholder Avatar styling */
.cto-placeholder-avatar {
  width: 100%;
  height: 100%;
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.cto-placeholder-avatar svg {
  width: 75%;
  height: 75%;
  max-width: 240px;
  max-height: 240px;
}

/* Is Golfport Right for You - Grid & Card Layout */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.fit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
}

.fit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.fit-card.fit-yes {
  border-color: rgba(68, 119, 93, 0.35);
}

.fit-card.fit-no {
  border-color: rgba(255, 74, 74, 0.25);
}

.fit-card h3 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.fit-card.fit-yes h3 {
  color: var(--text-primary);
}

.fit-card.fit-no h3 {
  color: var(--text-primary);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.fit-list li svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.fit-yes .fit-list li svg {
  stroke: var(--accent-gold);
}

.fit-no .fit-list li svg {
  stroke: var(--accent-red);
}

@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fit-card {
    padding: 2rem 1.5rem;
  }
}


