/* ============================
   SPICEWOOD COMMUNICATIONS
   Clean, professional, Texas.
   ============================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a56db;
  --blue-dark:  #1342b0;
  --blue-light: #eff4ff;
  --navy:       #0f172a;
  --slate:      #475569;
  --muted:      #94a3b8;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --texas:      #c2410c;

  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* UTILS */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.3); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.logo-mark--sm { width: 28px; height: 28px; font-size: 11px; border-radius: 6px; }

/* HERO */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}

.hero__inner { max-width: 760px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.hero__headline {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 19px;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__partners {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.partners__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.partners__logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.partner-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* FREQ HIGHLIGHT */
.freq {
  color: var(--blue);
  font-style: normal;
  background: var(--blue-light);
  padding: 2px 10px;
  border-radius: 6px;
}

.hero__headline em {
  font-style: italic;
  color: var(--blue);
}

/* HERO PLANE */
.hero { position: relative; overflow: hidden; }
.hero__plane {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 900px) { .hero__plane { display: none; } }

/* RUNWAY STRIP */
.runway-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--blue) 0px, var(--blue) 40px, transparent 40px, transparent 60px);
  opacity: 0.15;
}

/* HERITAGE */
.heritage {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--blue);
}

.heritage__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.heritage__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.heritage__icon { font-size: 28px; }

.heritage__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.heritage__item span {
  font-size: 13px;
  color: #94a3b8;
}

.heritage__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
@media (max-width: 640px) { .heritage__divider { display: none; } }

/* RUNWAY GRAPHIC */
.runway {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  padding: 20px 0;
}
.runway__line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0px, var(--blue) 20px, transparent 20px, transparent 30px);
  opacity: 0.3;
}
.runway__plane { font-size: 32px; animation: taxi 3s ease-in-out infinite alternate; }
@keyframes taxi {
  from { transform: translateX(-8px); }
  to   { transform: translateX(8px); }
}

/* CONTACT AIRPORT NOTE */
.contact__airport-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  background: var(--blue-light);
  border: 1px solid #c7d7fa;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
}

/* FOOTER ADDRESS */
.footer__address {
  color: #64748b;
  font-size: 13px;
  margin-bottom: 4px;
}

/* PAIN */
.pain {
  padding: 96px 0;
  background: var(--white);
}

.pain > .container > .section-label,
.pain > .container > .section-title {
  text-align: center;
}

.pain > .container > .section-title {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pain__card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.pain__card:hover { box-shadow: var(--shadow); }

.pain__icon { font-size: 24px; flex-shrink: 0; }

.pain__card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}

/* HOW */
.how {
  padding: 96px 0;
  background: var(--navy);
  color: white;
}

.how .section-label { color: #93c5fd; }
.how .section-title { color: white; text-align: center; }
.how > .container > .section-label { text-align: center; }
.how > .container > .section-title { margin-bottom: 64px; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.how__step { text-align: center; }

.step__number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #60a5fa;
  margin-bottom: 16px;
}

.how__step h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.how__step p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.65;
}

/* PARTNERS */
.partners {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners > .container > .section-label,
.partners > .container > .section-title {
  text-align: center;
}
.partners > .container > .section-title { margin-bottom: 56px; }

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.partner__card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.partner__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
}

.partner__desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}

.partner__best {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--blue-light);
  border-radius: 6px;
  padding: 8px 12px;
}

/* WHY US */
.why {
  padding: 96px 0;
  background: white;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.why__text p {
  color: var(--slate);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.why__list {
  list-style: none;
  margin-bottom: 36px;
}

.why__list li {
  font-size: 15px;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.why__list li:last-child { border-bottom: none; }

.why__stat-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat {
  padding: 32px;
  background: var(--blue-light);
  border: 1px solid #c7d7fa;
  border-radius: var(--radius);
}

.stat__num {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

/* CONTACT */
.contact {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

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

.contact__text p {
  color: var(--slate);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__detail {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 10px;
  font-weight: 500;
}

.contact__form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: white;
  transition: border-color 0.15s;
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.form__group textarea { resize: vertical; }

.form__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* NAV LINKS */
.nav__links { display: flex; align-items: center; gap: 20px; }
.nav__link { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; }
.nav__link:hover { color: var(--blue); }

/* BOOKING */
.booking {
  padding: 96px 0;
  background: var(--blue);
  text-align: center;
  color: white;
}
.booking .section-label { color: #93c5fd; }
.booking .section-title { color: white; margin-bottom: 16px; }
.booking__sub { color: #bfdbfe; font-size: 17px; max-width: 540px; margin: 0 auto 40px; line-height: 1.65; }
.booking__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.btn--lg { padding: 16px 36px; font-size: 17px; background: white; color: var(--blue); }
.btn--lg:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.booking__note { font-size: 14px; color: #93c5fd; }
.booking__note a { color: white; }

/* FOOTER */
.footer {
  background: var(--navy);
  color: white;
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.footer__tagline {
  color: #94a3b8;
  font-size: 14px;
}

.footer__copy {
  color: #475569;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .pain, .how, .partners, .why, .contact { padding: 64px 0; }
  .contact__form { padding: 28px 24px; }
}

/* ============================
   HERO AUDIT BANNER
   ============================ */
.hero__audit-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 20px;
  background: #fefce8;
  border: 1.5px solid #fbbf24;
  border-radius: 10px;
  font-size: 15px;
  color: #78350f;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(251,191,36,0.2);
}
.hero__audit-banner:hover {
  background: #fef08a;
  border-color: #f59e0b;
  transform: translateY(-1px);
}
.hero__audit-banner strong { color: #92400e; font-weight: 700; }

/* ============================
   CURRENT PROMOTIONS
   ============================ */
:root {
  --gold:      #f59e0b;
  --gold-dark: #b45309;
  --gold-bg:   #fffbeb;
  --gold-bdr:  #fde68a;
}

.promos {
  padding: 96px 0;
  background: var(--gold-bg);
  border-top: 1px solid var(--gold-bdr);
  border-bottom: 1px solid var(--gold-bdr);
}

.promos > .container > .section-label {
  text-align: center;
  color: var(--gold-dark);
}

.promos__title {
  text-align: center;
  margin-bottom: 56px;
}

.promos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.promo__card {
  background: white;
  border: 1.5px solid var(--gold-bdr);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo__card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(245,158,11,0.18); }

.promo__card--hot {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245,158,11,0.2), inset 0 0 0 1px rgba(245,158,11,0.15);
}

.promo__badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: #fef3c7;
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}

.promo__partner {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.promo__offer {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
}
.promo__offer strong { color: var(--navy); }

.promo__fine {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.btn--promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--gold);
  color: #1c0a00;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.18s, transform 0.18s;
  width: fit-content;
}
.btn--promo:hover { background: #f59e0b; transform: translateY(-1px); }

.promos__note {
  text-align: center;
  font-size: 15px;
  color: var(--gold-dark);
  background: white;
  border: 1px solid var(--gold-bdr);
  border-radius: 8px;
  padding: 14px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.promos__note a { color: var(--gold-dark); font-weight: 600; }
.promos__note a:hover { color: var(--navy); }

/* ============================
   NEWSLETTER
   ============================ */
.newsletter {
  padding: 72px 0;
  background: var(--navy);
  border-top: 1px solid #1e293b;
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.newsletter .section-label { color: #93c5fd; }

.newsletter__headline {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.newsletter__sub {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.65;
}

.newsletter__fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.newsletter__fields input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid #334155;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #1e293b;
  color: white;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter__fields input[type="email"]::placeholder { color: #64748b; }
.newsletter__fields input[type="email"]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,0.2); }

.newsletter__disclaimer {
  font-size: 13px;
  color: #475569;
}

/* ============================
   FORM CHECKBOX
   ============================ */
.form__group--check {
  margin-bottom: 24px;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}

.form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form__checkbox-label em {
  font-size: 13px;
  color: var(--muted);
}
