/* ==========================================================================
   Total Athlete 365 — Design System
   Palette: deep navy / warm ivory / champagne gold
   Type: Barlow Condensed (display) + Inter (body)
   ========================================================================== */

:root {
  --navy-900: #081524;
  --navy-800: #0b1f36;
  --navy-700: #12294a;
  --navy-600: #1b3a63;
  --gold-500: #c9a24b;
  --gold-400: #d9b768;
  --gold-300: #e8cf94;
  --ivory: #faf8f3;
  --white: #ffffff;
  --ink: #1c2b3a;
  --slate: #51637a;
  --line: #e4ded2;
  --shadow-sm: 0 1px 3px rgba(8, 21, 36, 0.08);
  --shadow-md: 0 10px 30px -12px rgba(8, 21, 36, 0.25);
  --shadow-lg: 0 24px 60px -24px rgba(8, 21, 36, 0.45);
  --radius: 10px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", -apple-system, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-500); text-decoration: none; }
a:hover { color: var(--navy-600); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--navy-800);
}

h1 { font-size: clamp(2.9rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }

.kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--slate); }

.gold { color: var(--gold-500); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 8px 24px -8px rgba(201, 162, 75, 0.55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(201, 162, 75, 0.65);
  color: var(--navy-900);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(11, 31, 54, 0.35);
}
.btn-outline-dark:hover { background: var(--navy-800); color: var(--white); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(rgba(8, 21, 36, 0.72), rgba(8, 21, 36, 0));
}
.site-header.scrolled {
  background: rgba(8, 21, 36, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img { height: 52px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-400);
  margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transition: right 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav .btn { padding: 12px 26px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  position: absolute;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span { top: 19px; left: 7px; }
.nav-toggle span::before { content: ""; top: -8px; left: 0; }
.nav-toggle span::after { content: ""; top: 8px; left: 0; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.85);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 21, 36, 0.94) 25%, rgba(8, 21, 36, 0.65) 60%, rgba(8, 21, 36, 0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 160px 0 120px;
}
.hero h1 { color: var(--white); margin-bottom: 8px; }
.hero h1 .gold { color: var(--gold-400); }
.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  margin: 26px 0 38px;
  max-width: 640px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.hero + .trustbar, .trustbar {
  background: var(--navy-800);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.trust-item svg { width: 22px; height: 22px; stroke: var(--gold-400); flex-shrink: 0; }

/* ---------- Sections ---------- */

.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.section-dark { background: var(--navy-800); color: rgba(255, 255, 255, 0.88); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-white { background: var(--white); }

.section-head { max-width: 700px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .kicker { justify-content: center; }
.section-head.centered .kicker::before { display: none; }
.section-head p { color: var(--slate); margin-top: 18px; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.75); }

/* ---------- Program cards ---------- */

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.program-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4.1;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--white); }
.program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.program-card:hover img { transform: scale(1.06); }
.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 21, 36, 0) 30%, rgba(8, 21, 36, 0.55) 60%, rgba(8, 21, 36, 0.95));
}
.program-card-body {
  position: relative;
  z-index: 2;
  padding: 26px 24px;
}
.program-card-body h3 { color: var(--white); margin-bottom: 4px; }
.program-card-body p {
  font-size: 0.95rem;
  color: var(--gold-300);
  font-weight: 500;
  margin-bottom: 12px;
}
.program-card-body .card-link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.program-card-body .card-link::after { content: "→"; color: var(--gold-400); transition: transform 0.2s ease; }
.program-card:hover .card-link::after { transform: translateX(4px); }

/* ---------- Pillars (Prepare / Strengthen / Excel) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.pillar:hover { border-color: rgba(217, 183, 104, 0.5); background: rgba(255, 255, 255, 0.07); }
.pillar .num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  display: block;
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { font-size: 0.98rem; color: rgba(255, 255, 255, 0.72); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 28px 26px; color: var(--slate); }

/* ---------- Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold-400);
}
.testimonial-card blockquote { font-size: 0.99rem; color: var(--ink); flex: 1; }
.testimonial-card cite {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonial-card .stars { color: var(--gold-500); font-size: 0.95rem; letter-spacing: 3px; }

/* Dark variant used on home */
.section-dark .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.section-dark .testimonial-card blockquote { color: rgba(255, 255, 255, 0.88); }
.section-dark .testimonial-card cite { color: rgba(255, 255, 255, 0.6); border-color: rgba(255, 255, 255, 0.14); }

/* ---------- Split feature (image + text) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---------- Team ---------- */

.team-member {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.team-member + .team-member { margin-top: 110px; }
.team-member.reverse { grid-template-columns: 1fr 380px; }
.team-member.reverse .team-photo { order: 2; }
.team-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-700);
}
.team-photo img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; object-position: top; }
.team-bio .credential {
  display: inline-block;
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.team-bio h2 { margin-bottom: 6px; }
.team-bio .role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 24px;
}
.team-bio p { color: var(--slate); margin-bottom: 16px; }
.team-bio .pull {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-400);
  padding-left: 20px;
  margin: 26px 0;
  line-height: 1.25;
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); max-width: 720px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 560px; margin: 0 auto 40px; }

/* ---------- Contact / booking ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 26px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-row svg { width: 22px; height: 22px; stroke: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.contact-row .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; }
.contact-row a, .contact-row .value { color: var(--white); font-weight: 600; }
.contact-row a:hover { color: var(--gold-400); }

.booking-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.booking-panel .badge {
  display: inline-block;
  background: rgba(201, 162, 75, 0.14);
  color: #8a6a25;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.booking-embed {
  margin-top: 28px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ---------- Forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.form-field input, .form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: 190px 0 96px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0.22;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 800px; }
.page-hero .lead { color: rgba(255, 255, 255, 0.8); max-width: 640px; margin-top: 22px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.75); }
.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-cta h3 { color: var(--white); font-size: 1.8rem; }
.footer-cta p { color: rgba(255, 255, 255, 0.6); font-size: 0.98rem; }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0;
}
.footer-brand img { height: 64px; margin-bottom: 20px; }
.footer-brand .tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.95rem; }

.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 0.97rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: center; font-size: 0.97rem; margin-bottom: 14px; }
.footer-col .contact-line svg { width: 18px; height: 18px; stroke: var(--gold-400); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .team-member, .team-member.reverse { grid-template-columns: 1fr; gap: 36px; }
  .team-member.reverse .team-photo { order: 0; }
  .team-photo { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 21, 36, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .pillars { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .section { padding: 76px 0; }
  .hero-content { padding: 150px 0 90px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-card { aspect-ratio: 3 / 3.2; }
  .trustbar-inner { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
  .trust-item { justify-content: flex-start; }
  .hero-actions .btn { width: 100%; }
  .booking-panel { padding: 28px 22px; }
}
