/* ============================================================
   REWRITE — Marketing Website Stylesheet
   Brand: Navy #1a2332 | Gold #c9a84c | Light Gold #f5e6b8
   ============================================================ */

/* --- CSS Reset / Normalize --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  color: #4a5568;
  background: #ffffff;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a2332;
  line-height: 1.25;
  font-weight: 700;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: #c9a84c; }
.text-navy { color: #1a2332; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger children */
.fade-in:nth-child(2) { animation-delay: 0.12s; }
.fade-in:nth-child(3) { animation-delay: 0.24s; }
.fade-in:nth-child(4) { animation-delay: 0.36s; }
.fade-in:nth-child(5) { animation-delay: 0.48s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 35, 50, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo span { color: #c9a84c; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}

.nav-links a:hover { color: #c9a84c; }

/* Nav CTA button */
.nav-cta {
  display: inline-block;
  background: #c9a84c;
  color: #1a2332 !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: #d4b65e;
  transform: translateY(-1px);
}

/* --- Mobile Hamburger (Pure CSS checkbox hack) --- */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after  { top: 7px; }

/* Animate hamburger → X */
.nav-toggle:checked + .nav-toggle-label span { background: transparent; }
.nav-toggle:checked + .nav-toggle-label span::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle:checked + .nav-toggle-label span::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 768px) {
  .nav-toggle-label { display: block; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #1a2332;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 2px solid #c9a84c;
  }

  .nav-toggle:checked ~ .nav-links { max-height: 400px; }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }

  .nav-cta {
    margin: 12px 24px;
    text-align: center;
    width: calc(100% - 48px);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #c9a84c;
  color: #1a2332;
  border-color: #c9a84c;
}

.btn-primary:hover {
  background: #d4b65e;
  border-color: #d4b65e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #c9a84c;
  border-color: #c9a84c;
}

.btn-secondary:hover {
  background: #c9a84c;
  color: #1a2332;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: #1a2332;
  border-color: #ffffff;
}

.btn-white:hover {
  background: #f5e6b8;
  border-color: #f5e6b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #1a2332 0%, #2a3a52 60%, #1a2332 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 24px;
  max-width: 750px;
}

.hero h1 em {
  font-style: normal;
  color: #c9a84c;
}

.hero .hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-quote {
  border-left: 3px solid #c9a84c;
  padding: 20px 24px;
  background: rgba(201,168,76,0.08);
  border-radius: 0 8px 8px 0;
  max-width: 600px;
  font-family: Georgia, serif;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  color: #c9a84c;
}

/* Sub-page hero (shorter) */
.hero-sub-page {
  padding: 70px 0 55px;
}

@media (max-width: 768px) {
  .hero { padding: 70px 0 55px; }
  .hero h1 { font-size: 2.1rem; }
  .hero .hero-sub { font-size: 1.05rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 80px 0;
}

/* Video Section */
.section-video {
  background: #0a1628;
  padding: 0 0 60px;
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-video {
  width: 100%;
  display: block;
  background: #000;
}
.video-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 20px;
  font-style: italic;
}
@media (max-width: 768px) {
  .section-video { padding: 0 0 40px; }
  .video-wrapper { border-radius: 8px; margin: 0 10px; }
}

.section-light { background: #ffffff; }
.section-gray  { background: #f8f9fa; }
.section-navy  { background: #1a2332; color: #ffffff; }
.section-navy h2,
.section-navy h3 { color: #ffffff; }
.section-navy p  { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: #4a5568;
}

.section-navy .section-header p { color: rgba(255,255,255,0.75); }

.section-tagline {
  text-align: center;
  margin-top: 40px;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: #c9a84c;
  font-weight: 600;
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 36px; }
}

/* ============================================================
   GRID SYSTEM
   ============================================================ */
.grid {
  display: grid;
  gap: 28px;
}

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #e8ecf1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 35, 50, 0.1);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Navy card variant */
.card-navy {
  background: #1a2332;
  border-color: rgba(201,168,76,0.2);
}

.card-navy h3 { color: #ffffff; }
.card-navy p  { color: rgba(255,255,255,0.75); }

/* Problem card red accent */
.card-problem {
  border-top: 3px solid #e53e3e;
}

.card-problem .card-icon { color: #e53e3e; }

/* Feature card gold accent */
.card-feature {
  border-top: 3px solid #c9a84c;
}

/* ============================================================
   STEP CARDS (How It Works)
   ============================================================ */
.step-card {
  text-align: center;
  padding: 40px 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #c9a84c;
  color: #1a2332;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 { margin-bottom: 12px; }

/* ============================================================
   BIOMARKER CARDS
   ============================================================ */
.biomarker-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.biomarker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.12);
}

.biomarker-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}

.biomarker-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.biomarker-card p {
  font-size: 0.88rem;
  color: #4a5568;
}

/* ============================================================
   TWO-COLUMN FEATURE BLOCKS
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-section .split-col h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c9a84c;
}

.split-section .split-col ul {
  list-style: none;
}

.split-section .split-col li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.split-section .split-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 700;
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e8ecf1;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #c9a84c;
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-top: 12px;
  color: #1a2332;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.88rem;
  color: #c9a84c;
  font-weight: 600;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 28px;
  border: 2px solid #e8ecf1;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 35, 50, 0.12);
}

/* Highlighted / featured tier */
.pricing-card.featured {
  border-color: #c9a84c;
  transform: scale(1.04);
  box-shadow: 0 16px 50px rgba(201, 168, 76, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c9a84c;
  color: #1a2332;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card .tier-name {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: #1a2332;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
  font-family: Georgia, serif;
}

.pricing-card .price-sub {
  font-size: 0.88rem;
  color: #4a5568;
  margin-bottom: 24px;
}

.pricing-card .features-list {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card .features-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card .features-list li:last-child { border-bottom: none; }

.pricing-card .features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

/* ============================================================
   PULL QUOTE / BLOCKQUOTE
   ============================================================ */
.pull-quote {
  max-width: 700px;
  margin: 48px auto;
  padding: 28px 32px;
  border-left: 4px solid #c9a84c;
  background: rgba(201,168,76,0.05);
  border-radius: 0 8px 8px 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1a2332;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.88rem;
  color: #c9a84c;
  font-weight: 600;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a2332 0%, #2a3a52 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 1.8rem; }
}

/* ============================================================
   BULLET LIST (for-coaches, science, etc.)
   ============================================================ */
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #e53e3e;
  font-weight: 700;
  font-size: 1.1rem;
}

.check-list.green li::before {
  content: '✓';
  color: #c9a84c;
}

/* ============================================================
   FAQ ACCORDION (pure CSS)
   ============================================================ */
.faq-item {
  border-bottom: 1px solid #e8ecf1;
  padding: 0;
}

.faq-item summary {
  padding: 20px 0;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2332;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #c9a84c;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 0 20px;
  color: #4a5568;
  line-height: 1.8;
}

/* ============================================================
   SCIENCE PAGE — Deep Dive Cards
   ============================================================ */
.science-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8ecf1;
  margin-bottom: 28px;
}

.science-card .science-icon {
  font-size: 3rem;
  text-align: center;
}

.science-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .science-card { grid-template-columns: 1fr; text-align: center; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-section {
  max-width: 740px;
  margin: 0 auto;
}

.founder-section p {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #1a2332;
}

.founder-section .highlight {
  font-size: 1.4rem;
  color: #c9a84c;
  font-weight: 600;
  margin: 36px 0;
  text-align: center;
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid #e8ecf1;
}

.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ============================================================
   COACH DASHBOARD FEATURE CARDS
   ============================================================ */
.dashboard-card {
  background: #1a2332;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid rgba(201,168,76,0.2);
}

.dashboard-card .card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a84c;
  margin-bottom: 12px;
  font-weight: 600;
}

.dashboard-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.dashboard-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Inline stat highlight */
.stat-highlight {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: #c9a84c;
  font-weight: 700;
  display: block;
  margin: 8px 0;
}

/* ============================================================
   BUSINESS CASE BOX (coaches page)
   ============================================================ */
.biz-case {
  background: rgba(201,168,76,0.06);
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.biz-case .math {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #1a2332;
  margin-bottom: 12px;
}

.biz-case .result {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #c9a84c;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a2332;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

.footer-col a:hover { color: #c9a84c; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-bottom a:hover { color: #c9a84c; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   MISC / HELPERS
   ============================================================ */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }

.buttons-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .buttons-row { flex-direction: column; align-items: center; }
  .buttons-row .btn { width: 100%; max-width: 340px; }
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e8e8e8;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: #1a2332;
  color: #ffffff;
}

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

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

@media (max-width: 768px) {
  .contact-form {
    padding: 24px 20px;
  }
}

/* Selection styling */
::selection {
  background: #f5e6b8;
  color: #1a2332;
}
