/* ============================================================
   LONGHORN OUTDOOR SERVICES — styles.css
   Brand: Navy #0B2343 · Electric Blue #1E63FF · Cloud #F4F6F8
   Fonts: Montserrat (headlines) · Inter (body)
   ============================================================ */

:root {
  --navy: #0B2343;
  --navy-deep: #071831;
  --blue: #1E63FF;
  --blue-bright: #3D7BFF;
  --white: #FFFFFF;
  --cloud: #F4F6F8;
  --charcoal: #2E3440;
  --muted: #5B6472;
  --line: rgba(11, 35, 67, 0.10);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(11, 35, 67, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 35, 67, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 35, 67, 0.16);
  --font-head: "Montserrat", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .eyebrow { font-family: var(--font-head); }

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--navy);
}

h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 99, 255, 0.35);
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30, 99, 255, 0.45);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 35, 67, 0.25);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.15rem 2.4rem; font-size: 1.02rem; }

/* ---------- Keyboard focus & skip link ---------- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.site-header a:focus-visible,
.hero a:focus-visible,
.cta-band a:focus-visible,
.site-footer a:focus-visible,
.season-panel .btn:focus-visible {
  outline-color: var(--white);
}
.btn:focus-visible { border-radius: 999px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* ---------- Custom cursor (desktop only; Safari falls back to default) ---------- */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='26'%20height='26'%20viewBox='0%200%2026%2026'%3E%3Cpath%20d='M4%202L4%2020.5L9.4%2016.4L12.6%2023L15.6%2021.5L12.4%2015L19%2014.2Z'%20fill='%231E63FF'%20stroke='white'%20stroke-width='1.6'%20stroke-linejoin='round'/%3E%3C/svg%3E") 3 2, auto;
  }
  a, button, [role="button"], select, .btn, .season-tab, .nav-toggle {
    cursor: url("data:image/svg+xml;utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='26'%20height='26'%20viewBox='0%200%2026%2026'%3E%3Cpath%20d='M4%202L4%2020.5L9.4%2016.4L12.6%2023L15.6%2021.5L12.4%2015L19%2014.2Z'%20fill='%231E63FF'%20stroke='white'%20stroke-width='1.6'%20stroke-linejoin='round'/%3E%3C/svg%3E") 3 2, pointer;
  }
}

/* ---------- Office-closed modal ---------- */
.closed-modal[hidden] { display: none; } /* [hidden] must beat the display:flex below */
.closed-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 24, 49, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.closed-modal.open { opacity: 1; }
.closed-card {
  position: relative;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.closed-modal.open .closed-card { transform: none; }
.closed-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  transition: color 0.2s;
}
.closed-close:hover { color: var(--navy); }
.closed-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 99, 255, 0.1);
  color: var(--blue);
}
.closed-icon svg { width: 30px; height: 30px; }
.closed-card h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--navy);
}
.closed-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.8rem auto 1.4rem;
  max-width: 34ch;
}
.closed-card .closed-call { width: 100%; }
.closed-sub {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue) !important;
  margin: 0.7rem auto 0 !important;
}
.closed-dismiss {
  display: inline-block;
  margin-top: 1rem;
  border: none;
  background: none;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closed-dismiss:hover { color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(7, 24, 49, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(7, 24, 49, 0.35);
  padding: 0.7rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-horn { height: 26px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-head);
  font-weight: 900;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.brand-text small {
  font-style: normal;
  font-weight: 800;
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  color: #7EA6FF;
  margin-top: 0.28rem;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 0.8rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.header-phone svg { width: 16px; height: 16px; }
.header-cta .btn { padding: 0.7rem 1.4rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 78% 18%, rgba(30, 99, 255, 0.28), transparent 60%),
    radial-gradient(900px 700px at 8% 90%, rgba(30, 99, 255, 0.12), transparent 55%),
    linear-gradient(175deg, var(--navy-deep) 0%, var(--navy) 55%, #0D2A52 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(8.5rem, 16vh, 12rem) 0 0;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}
.hero-copy { padding-bottom: clamp(3rem, 8vh, 6rem); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(30, 99, 255, 0.16);
  border: 1px solid rgba(61, 123, 255, 0.4);
  color: #A9C4FF;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 .accent {
  display: block;
  background: linear-gradient(92deg, #3D7BFF 10%, #7EA6FF 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.75);
  margin: 1.4rem 0 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-mini-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.hero-mini-note svg { width: 16px; height: 16px; flex: none; color: #7EA6FF; }

.hero-visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(30, 99, 255, 0.35), transparent 65%);
  pointer-events: none;
}
.hero-visual img {
  position: relative;
  width: min(460px, 100%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  position: relative;
  background: rgba(7, 24, 49, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.trust-item span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 10vh, 7.5rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 1rem; }
.bg-cloud { background: var(--cloud); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 99, 255, 0.35);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #7EA6FF);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }

.service-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(30, 99, 255, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.3rem; text-transform: uppercase; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-top: 0.6rem; }
.service-list { margin-top: 0.9rem; display: grid; gap: 0.4rem; }
.service-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
}
.service-list li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-2px);
}
.service-buck {
  margin-top: auto;
  align-self: flex-end;
  width: 180px;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-buck { transform: translateY(0) scale(1.04); }

/* ---------- Seasons ---------- */
.seasons { color: var(--white); background: linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%); position: relative; overflow: hidden; }
.seasons .section-head h2 { color: var(--white); }
.seasons .section-head .lead { color: rgba(255, 255, 255, 0.65); }

.season-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  margin: 0 auto 3rem;
}
.season-tab {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.season-tab.active { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(30, 99, 255, 0.4); }
.season-tab:not(.active):hover { color: var(--white); }

.season-panel {
  display: none;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.season-panel.active { display: grid; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.season-panel h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.season-panel p { color: rgba(255, 255, 255, 0.7); margin-bottom: 1.4rem; }
.season-points { display: grid; gap: 0.7rem; margin-bottom: 1.8rem; }
.season-points li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.season-points li svg { width: 16px; height: 16px; flex: none; color: #4ADE80; transform: translateY(2px); }
.season-visual { display: flex; justify-content: center; }
.season-visual img {
  width: min(340px, 80%);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
}

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(30, 99, 255, 0.9), rgba(30, 99, 255, 0.25));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.5rem; text-transform: uppercase; }
.step-card p { color: var(--muted); font-size: 0.95rem; }
.step-card .step-hint {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
}

/* ---------- Why / features ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.why-card {
  display: flex;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--blue), #0B47D1);
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(30, 99, 255, 0.3);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }

.why-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.why-visual { position: relative; display: flex; justify-content: center; }
.why-visual img { width: min(400px, 90%); filter: drop-shadow(0 24px 44px rgba(11, 35, 67, 0.25)); }

/* ---------- Testimonials ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; color: #F5A623; }
.stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 0.98rem; color: var(--charcoal); flex: 1; }
.quote-who { display: flex; align-items: center; gap: 0.8rem; }
.quote-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue), #0B47D1);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
}
.quote-who strong { display: block; font-size: 0.92rem; color: var(--navy); }
.quote-who span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Big CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(61, 123, 255, 0.4), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 70%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.7); margin: 1rem 0 2rem; max-width: 480px; }
.cta-band .hero-actions { margin-bottom: 0; }
.cta-buck { display: flex; justify-content: center; }
.cta-buck img { width: min(300px, 80%); filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.45)); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  margin-top: clamp(4rem, 8vh, 6rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand .brand-horn { height: 30px; }
.footer-brand .brand-text { font-size: 1.5rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: baseline; font-size: 0.9rem; }
.footer-contact svg { width: 15px; height: 15px; flex: none; transform: translateY(2px); color: #7EA6FF; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Booking page ---------- */
.book-hero {
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(30, 99, 255, 0.25), transparent 60%),
    linear-gradient(170deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: clamp(8rem, 14vh, 10rem) 0 clamp(3rem, 6vh, 4.5rem);
  text-align: center;
}
.book-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.book-hero .lead { color: rgba(255, 255, 255, 0.7); margin: 1rem auto 0; }

.book-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 2;
}
.book-option {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.book-option:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.book-option .why-icon { width: 56px; height: 56px; }
.book-option h3 { text-transform: uppercase; }
.book-option p { color: var(--muted); font-size: 0.92rem; margin: 0.4rem 0 1rem; }

.form-shell {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 3rem);
}
/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-copy { padding-bottom: clamp(3rem, 6vh, 4rem); }
  .why-wrap { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .why-visual img { width: min(300px, 70%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(7, 24, 49, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.45s var(--ease), opacity 0.35s, visibility 0s 0.45s;
    z-index: 105;
  }
  .main-nav.open { transform: translateY(0); visibility: visible; opacity: 1; transition: transform 0.45s var(--ease), opacity 0.35s, visibility 0s; }
  .main-nav a { font-size: 1.3rem; font-family: var(--font-head); font-weight: 800; text-transform: uppercase; }
  .nav-toggle { display: block; }
  .header-phone span { display: none; }
  .header-cta .btn { display: none; }
  .steps-grid, .quotes-grid { grid-template-columns: 1fr; }
  .season-panel { grid-template-columns: 1fr; }
  .season-visual { order: -1; }
  .season-visual img { width: min(240px, 60%); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .hero-actions { justify-content: center; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .book-options { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}
