/* ============================================================
   Orange Beach Transmission — styles.css
   Design system: Revolut Guidelines (dark/light band system)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Canvas */
  --canvas-dark: #000000;
  --canvas-light: #ffffff;
  --surface-soft: #f4f4f4;
  --surface-card: #ffffff;
  --surface-deep: #0a0a0a;
  --surface-elevated: #16181a;

  /* Brand */
  --primary: #494fdf;
  --primary-bright: #4f55f1;
  --primary-deep: #3a40c4;
  --on-primary: #ffffff;

  /* Text */
  --ink: #191c1f;
  --body-color: #1f2226;
  --charcoal: #3a3d40;
  --mute: #505a63;
  --ash: #5c5e60;
  --stone: #8d969e;
  --faint: #c9c9cd;
  --on-dark: #ffffff;
  --on-dark-mute: rgba(255,255,255,0.72);

  /* Hairlines */
  --hairline-light: #e2e2e7;
  --hairline-dark: rgba(255,255,255,0.12);
  --hairline-strong: #191c1f;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Spacing */
  --sp-xxs: 4px;
  --sp-xs: 6px;
  --sp-sm: 8px;
  --sp-md: 14px;
  --sp-lg: 16px;
  --sp-xl: 24px;
  --sp-xxl: 32px;
  --sp-xxxl: 48px;
  --sp-block: 80px;
  --sp-section: 12px;
  --sp-band: 12px;

  /* Font */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.24px;
  color: var(--ink);
  background: var(--canvas-light);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

/* ── NAV ── */
.nav {
  background: var(--canvas-dark);
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline-dark);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xxl);
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: var(--on-dark-mute);
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-cta {
  background: var(--canvas-light);
  color: var(--canvas-dark) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-cta:hover { background: var(--faint); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--canvas-dark);
  border-bottom: 1px solid var(--hairline-dark);
  padding: var(--sp-xl);
  z-index: 99;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-lg); }
.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-dark-mute);
  letter-spacing: 0.24px;
}
.nav-mobile-menu a:hover { color: var(--on-dark); }
.nav-mobile-menu .nav-cta { display: inline-block; margin-top: var(--sp-sm); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: var(--canvas-light);
  color: var(--canvas-dark);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--faint); }
.btn-primary:active { background: #e0e0e0; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: var(--canvas-dark);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--surface-elevated); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 27px;
  background: transparent;
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24px;
  border-radius: var(--r-full);
  border: 1px solid var(--on-dark);
  cursor: pointer;
  transition: background 0.18s ease;
  white-space: nowrap;
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.08); }

.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
}
.btn-soft:hover { background: var(--hairline-light); }

/* ── HERO BAND (dark) ── */
.hero-band {
  background: var(--canvas-dark);
  position: relative;
  overflow: hidden;
  padding: var(--sp-band) 0;
}
.hero-band-photo {
  background: var(--canvas-dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-band-photo .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-band-photo .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-band-photo .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-xxl);
}

.hero-h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  max-width: 700px;
  margin-bottom: var(--sp-xl);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.09px;
  color: var(--on-dark-mute);
  max-width: 520px;
  margin-bottom: var(--sp-xxxl);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

/* ── TRUST BAR (dark) ── */
.trust-bar {
  background: var(--surface-elevated);
  padding: 12px 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: var(--sp-xxxl);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--on-dark-mute);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24px;
}
.trust-item svg { flex-shrink: 0; }

/* ── SECTION: light ── */
.section-light {
  background: var(--canvas-light);
  padding: var(--sp-section) 0;
}
.section-soft {
  background: var(--surface-soft);
  padding: var(--sp-section) 0;
}
.section-dark {
  background: var(--canvas-dark);
  padding: var(--sp-section) 0;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
}
.section-label-dark {
  color: var(--on-dark-mute);
}

.section-title-lg {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-xl);
}
.section-title-lg-dark {
  color: var(--on-dark);
}

.section-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: -0.09px;
  color: var(--mute);
  max-width: 560px;
}
.section-body-dark { color: var(--on-dark-mute); }

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-xxxl);
}
.feature-card-light {
  background: var(--surface-card);
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}
.feature-card-dark {
  background: var(--surface-elevated);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}
.feature-card-featured {
  background: var(--primary);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-xl);
  flex-shrink: 0;
}
.feature-card-icon-dark {
  background: rgba(255,255,255,0.08);
}
.feature-card-icon-primary {
  background: rgba(255,255,255,0.2);
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.feature-card-title-dark { color: var(--on-dark); }
.feature-card-title-primary { color: var(--on-primary); }

.feature-card-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.56;
  color: var(--mute);
}
.feature-card-body-dark { color: var(--on-dark-mute); }
.feature-card-body-primary { color: rgba(255,255,255,0.8); }

/* ── SERVICES LIST ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-xxxl);
}
.service-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  display: flex;
  gap: var(--sp-xl);
  align-items: flex-start;
  transition: border-color 0.18s ease;
}
.service-card:hover { border-color: var(--primary); }
.service-card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24px;
  color: var(--primary);
  background: rgba(73,79,223,0.08);
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
}
.service-card-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.56;
  color: var(--mute);
}

/* ── PHOTO BAND ── */
.photo-band {
  background: var(--canvas-dark);
  position: relative;
  overflow: hidden;
  height: 420px;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
}
.photo-band-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
.photo-band-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  max-width: 540px;
  margin-bottom: var(--sp-xl);
}
.photo-band-sub {
  font-size: 16px;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-xxl);
  max-width: 420px;
}

/* ── LEAD FORM ── */
.form-band {
  background: var(--canvas-dark);
  padding: var(--sp-band) 0;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-intro-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}
.form-intro-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-xxl);
}

.form-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}
.form-grid.full { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: var(--on-dark-mute);
}
.form-input, .form-select {
  height: 56px;
  padding: 0 var(--sp-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-md);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.24px;
  transition: border-color 0.18s ease, background 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.09);
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-select option { background: var(--surface-elevated); color: var(--on-dark); }
.form-select.placeholder-shown { color: rgba(255,255,255,0.3); }

.form-submit {
  width: 100%;
  margin-top: var(--sp-lg);
}
.form-note {
  font-size: 12px;
  color: var(--on-dark-mute);
  text-align: center;
  margin-top: var(--sp-sm);
  line-height: 1.5;
}

/* Form status */
#form-status {
  display: none;
  padding: var(--sp-lg);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: var(--sp-md);
}
#form-status.success {
  display: block;
  background: rgba(66,134,25,0.15);
  border: 1px solid rgba(66,134,25,0.3);
  color: #7ec94f;
}
#form-status.error {
  display: block;
  background: rgba(226,59,74,0.15);
  border: 1px solid rgba(226,59,74,0.3);
  color: #f87171;
}

/* ── HOURS / LOCATION BAND ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  margin-top: var(--sp-xxxl);
}
.info-card {
  background: var(--surface-elevated);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
}
.info-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-xl);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-dark);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--on-dark); font-weight: 400; }
.hours-time { color: var(--on-dark-mute); font-weight: 600; letter-spacing: 0.16px; }
.hours-closed { color: var(--stone); }

.address-line {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}
.address-phone {
  font-size: 24px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-lg);
  display: block;
}
.address-phone:hover { color: var(--faint); }

/* ── PROMO BAND ── */
.promo-band {
  background: var(--primary);
  padding: 12px 0;
}
.promo-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.promo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--on-primary);
  letter-spacing: -0.01em;
}
.promo-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ── MAP EMBED ── */
.map-band {
  background: var(--canvas-dark);
  padding: var(--sp-section) 0 0;
}
.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  margin-top: var(--sp-xxxl);
  filter: grayscale(0.3);
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--canvas-dark);
  padding: var(--sp-band) 0;
}
.page-header-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}
.page-header-sub {
  font-size: 18px;
  line-height: 1.56;
  color: var(--on-dark-mute);
  max-width: 560px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: var(--sp-xxxl);
}

/* ── FOOTER ── */
.footer {
  background: var(--canvas-dark);
  border-top: 1px solid var(--hairline-dark);
  padding: 12px 0 var(--sp-xxxl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xxl);
  padding-bottom: var(--sp-block);
  border-bottom: 1px solid var(--hairline-dark);
}
.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--on-dark);
  margin-bottom: var(--sp-sm);
}
.footer-brand-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--on-dark-mute);
  max-width: 240px;
  margin-bottom: var(--sp-xl);
}
.footer-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-dark);
  display: block;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.01em;
}
.footer-phone:hover { color: var(--faint); }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-bottom: var(--sp-lg);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-links a {
  font-size: 14px;
  color: var(--on-dark-mute);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--on-dark); }
.footer-bottom {
  padding-top: var(--sp-xxl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 900px;
}
.footer-copy {
  font-size: 12px;
  color: var(--stone);
}

/* ── SERVICE AREA BAND ── */
.service-area-band {
  background: var(--surface-soft);
  padding: 12px 0;
  border-top: 1px solid var(--hairline-light);
}
.service-area-band .container {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.service-area-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--mute);
}
.service-area-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--canvas-light);
  border: 1px solid var(--hairline-light);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: var(--charcoal);
}

/* ── CALL BAR ── */
.call-bar {
  background: var(--canvas-dark);
  padding: 12px 0;
  border-top: 1px solid var(--hairline-dark);
}
.call-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.call-bar-text { font-size: 20px; font-weight: 700; color: var(--on-dark); }
.call-bar-sub { font-size: 13px; color: var(--on-dark-mute); margin-top: 2px; }

/* ── SCHEMA / HIDDEN ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta.desktop-only { display: none; }
  .nav-hamburger { display: flex; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root {
    --sp-section: 12px;
    --sp-band: 12px;
  }
  .hero-h1 { font-size: 42px; }
  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: var(--sp-xxl); }
  .form-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .promo-band .container { flex-direction: column; align-items: flex-start; }
  .call-bar .container { flex-direction: column; align-items: flex-start; }
  .photo-band { height: 320px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.12s; }
.fade-up-3 { animation-delay: 0.20s; }
.fade-up-4 { animation-delay: 0.28s; }

/* ── FORM SELECT ARROW ── */
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.4);
  pointer-events: none;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-xl { margin-top: var(--sp-xl); }
.mt-xxl { margin-top: var(--sp-xxl); }
.mt-xxxl { margin-top: var(--sp-xxxl); }
.gap-lg { gap: var(--sp-lg); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
