:root {
  --blue-950: #061638;
  --blue-900: #09245b;
  --blue-800: #0c2f73;
  --blue-650: #1454ad;
  --blue-500: #2384d8;
  --sky-100: #eaf7ff;
  --red-600: #d93025;
  --red-500: #ee3e32;
  --gold-500: #ffc83d;
  --gold-300: #ffe39b;
  --ink: #152033;
  --muted: #5c6a80;
  --line: #d9e2f1;
  --surface: #ffffff;
  --surface-soft: #f6f9ff;
  --shadow-soft: 0 24px 70px rgba(8, 31, 77, 0.18);
  --shadow-card: 0 18px 44px rgba(8, 31, 77, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(35, 132, 216, 0.12), transparent 30rem),
    var(--surface);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--blue-900);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 241, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(9, 36, 91, 0.12);
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 7px 18px;
  color: var(--surface);
  text-align: center;
  background: linear-gradient(90deg, var(--red-600), var(--blue-650));
}

.top-strip p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.top-strip a {
  color: var(--blue-950);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--gold-500);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1240px);
  min-height: 78px;
  margin-inline: auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__logo {
  display: block;
  width: auto;
  height: 44px;
  flex-shrink: 0;
}

.brand__badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--surface);
  font-weight: 1000;
  letter-spacing: -0.06em;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.35), transparent 34%),
    linear-gradient(145deg, var(--blue-650), var(--blue-950));
  border: 4px solid var(--surface);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(9, 36, 91, 0.24);
}

.brand strong {
  display: block;
  color: var(--blue-950);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand strong span {
  color: var(--red-600);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 850;
  border-radius: 999px;
}

.nav-menu > a:hover,
.nav-item > a:hover {
  background: var(--sky-100);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  min-width: 380px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu a {
  padding: 11px 12px;
  color: var(--blue-900);
  font-weight: 800;
  border-radius: 14px;
}

.mega-menu a:hover {
  color: var(--surface);
  background: var(--blue-650);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--blue-900);
  border: 0;
  border-radius: 14px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--surface);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.86rem 1.25rem;
  font-weight: 950;
  line-height: 1;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 14px 28px rgba(255, 200, 61, 0.3);
}

.btn--secondary {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn--small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background:
    linear-gradient(118deg, rgba(7, 22, 56, 0.92) 0%, rgba(9, 36, 91, 0.92) 42%, rgba(11, 49, 122, 0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(35, 132, 216, 0.52), transparent 24rem),
    var(--blue-900);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  top: -12%;
  right: 12%;
  width: 38rem;
  height: 38rem;
  background: rgba(35, 132, 216, 0.22);
  clip-path: polygon(22% 0, 100% 0, 70% 100%, 0 58%);
}

.hero::after {
  bottom: -16rem;
  left: -8rem;
  width: 34rem;
  height: 34rem;
  background: rgba(238, 62, 50, 0.17);
  border-radius: 50%;
  filter: blur(2px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  height: clamp(420px, 45vw, 500px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-500);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.comfort-club .eyebrow,
.quote-section .eyebrow {
  color: var(--gold-500);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 720px;
}

h2 {
  color: var(--blue-950);
  font-size: clamp(2.15rem, 4.7vw, 4.7rem);
}

h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.26rem;
  line-height: 1.14;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-list li {
  min-height: 86px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
}

.trust-list strong {
  display: block;
  color: var(--surface);
  font-size: 1.2rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__visual img {
  max-height: 320px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.hero__image-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(145deg, rgba(35, 132, 216, 0.34), rgba(6, 22, 56, 0.16)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px 42px 0 42px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.hero__image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.02);
}

.hero__note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  padding: 14px 16px;
  color: var(--blue-950);
  font-weight: 950;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #20c476;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(32, 196, 118, 0.16);
}

.quick-book {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.quick-book__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, auto);
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(217, 226, 241, 0.82);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.quick-book span {
  display: block;
  color: var(--red-600);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.quick-book strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.18rem;
  line-height: 1.2;
}

.quick-book a {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  color: var(--blue-900);
  font-weight: 900;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quick-book a:first-of-type {
  color: var(--surface);
  background: var(--red-600);
  border-color: var(--red-600);
}

.section {
  padding-block: clamp(72px, 9vw, 122px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(217, 226, 241, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(8, 31, 77, 0.08);
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -36px -48px auto;
  width: 150px;
  height: 150px;
  background: rgba(35, 132, 216, 0.12);
  border-radius: 50%;
  z-index: -1;
}

.service-card:hover {
  border-color: rgba(35, 132, 216, 0.42);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  font-size: 1.7rem;
  background: var(--sky-100);
  border-radius: 20px;
}

.service-card p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--red-600);
  font-weight: 950;
}

.service-card a::after {
  content: " →";
}

.split-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 200, 61, 0.18), transparent 22rem),
    var(--surface);
}

.split-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 1.04fr);
  align-items: center;
  gap: 42px;
}

.story-card {
  padding: clamp(30px, 5vw, 52px);
  background: var(--blue-950);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.story-card h2,
.story-card h3 {
  color: var(--surface);
}

.story-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-row span {
  padding: 9px 12px;
  color: var(--surface);
  font-size: 0.88rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.tile-stack {
  display: grid;
  gap: 18px;
}

.image-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  padding: 26px;
  color: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.image-tile span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue-950);
  font-weight: 1000;
  background: var(--surface);
  border-radius: 18px;
}

.image-tile h3 {
  color: var(--surface);
}

.image-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.image-tile--blue {
  background: linear-gradient(135deg, var(--blue-650), var(--blue-900));
}

.image-tile--red {
  margin-left: 34px;
  background: linear-gradient(135deg, var(--red-500), #a91f18);
}

.image-tile--gold {
  margin-left: 68px;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-500), #f89d20);
}

.image-tile--gold h3,
.image-tile--gold p {
  color: var(--blue-950);
}

.process {
  background: var(--surface-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: process;
}

.process-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(8, 31, 77, 0.08);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  color: var(--surface);
  font-size: 1.55rem;
  font-weight: 1000;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4), transparent 32%),
    var(--red-600);
  border-radius: 50%;
}

.process-grid p {
  color: var(--muted);
}

.comfort-club {
  padding-block: clamp(58px, 8vw, 92px);
  color: var(--surface);
  background:
    linear-gradient(118deg, rgba(6, 22, 56, 0.96), rgba(12, 47, 115, 0.94)),
    var(--blue-950);
}

.comfort-club__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr) auto;
  align-items: center;
  gap: 34px;
}

.comfort-club h2 {
  color: var(--surface);
}

.comfort-club p {
  color: rgba(255, 255, 255, 0.78);
}

.comfort-club ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comfort-club li {
  position: relative;
  padding-left: 28px;
  font-weight: 850;
}

.comfort-club li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

.reviews {
  background: var(--surface);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-grid article {
  padding: 28px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.review-grid div {
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
}

.review-grid p {
  color: var(--muted);
}

.faq {
  background: var(--surface-soft);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

summary {
  color: var(--blue-950);
  font-weight: 950;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.quote-section {
  padding-block: clamp(76px, 9vw, 126px);
  color: var(--surface);
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 200, 61, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--blue-900), var(--blue-950));
}

.quote-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

.quote-section h2 {
  color: var(--surface);
}

.quote-section p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-callout {
  display: grid;
  gap: 4px;
  width: min(100%, 420px);
  margin-top: 24px;
  padding: 18px;
  color: var(--blue-950);
  background: var(--gold-500);
  border-radius: 22px;
}

.quote-callout span {
  color: rgba(6, 22, 56, 0.75);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 950;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(35, 132, 216, 0.14);
}

.quote-form__wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-900);
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #071229;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 34px;
  padding-block: 58px;
}

.brand--footer strong,
.brand--footer h2 {
  color: var(--surface);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--surface);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--gold-500);
}

.footer-note {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
}

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

  .nav-menu {
    position: fixed;
    inset: 116px 16px auto;
    display: grid;
    max-height: calc(100vh - 132px);
    padding: 18px;
    overflow: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a,
  .nav-item > a {
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    margin: 4px 0 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero__grid,
  .split-section__grid,
  .quote-section__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero__copy {
    max-width: 760px;
    padding: clamp(36px, 6vw, 60px) clamp(20px, 4vw, 40px);
  }

  .hero__visual {
    height: 340px;
  }

  .quick-book__grid,
  .comfort-club__grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-book__grid > div,
  .comfort-club__grid > div,
  .comfort-club__grid > a,
  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .top-strip {
    flex-direction: column;
    gap: 6px;
  }

  .navbar {
    min-height: 74px;
  }

  .brand__badge {
    width: 48px;
    height: 48px;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .nav-menu {
    inset: 128px 16px auto;
  }

  .hero__grid {
    gap: 0;
  }

  .hero__copy {
    padding: 32px 20px;
  }

  .hero__actions,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image-card,
  .hero__image-card img {
    min-height: 390px;
  }

  .hero__image-card {
    border-radius: 28px 28px 0 28px;
  }

  .hero__note {
    position: static;
    margin-top: 12px;
  }

  .quick-book__grid,
  .service-grid,
  .process-grid,
  .review-grid,
  .quote-form,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .quick-book__grid > div,
  .comfort-club__grid > div,
  .comfort-club__grid > a,
  .site-footer__grid > div:first-child {
    grid-column: auto;
  }

  .image-tile,
  .image-tile--red,
  .image-tile--gold {
    margin-left: 0;
  }

  .image-tile {
    grid-template-columns: 1fr;
  }

  .quote-section__grid {
    grid-template-columns: 1fr;
  }

  .quote-form__wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* HVAC conversion redesign */
:root {
  --mj-navy: #071836;
  --mj-blue: #123d84;
  --mj-mid-blue: #235fa3;
  --mj-yellow: #ffca08;
  --mj-yellow-dark: #f1bd22;
  --mj-red: #e7252e;
  --mj-white: #ffffff;
}

body {
  background: #ffffff;
  font-family:
    "Arial", "Helvetica Neue", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

.site-header {
  background: var(--mj-white);
  border-bottom: 0;
  box-shadow: 0 3px 0 rgba(7, 24, 54, 0.08);
  backdrop-filter: none;
}

.top-strip {
  min-height: 58px;
  color: var(--mj-navy);
  background: var(--mj-yellow);
}

.top-strip p,
.top-strip a {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0;
}

.top-strip a {
  padding: 0;
  color: #075bd8;
  text-decoration: underline;
  background: transparent;
}

.navbar {
  width: min(100% - 48px, 1540px);
}

.navbar--primary {
  min-height: 102px;
  justify-content: center;
  gap: clamp(28px, 5vw, 76px);
}

.navbar--secondary {
  min-height: 68px;
  justify-content: center;
  gap: clamp(26px, 5vw, 72px);
  width: 100%;
  color: var(--mj-white);
  background: var(--mj-navy);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  gap: clamp(12px, 1.7vw, 24px);
}

.nav-menu > a,
.nav-item > a,
.secondary-links a {
  color: #17346f;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  border-radius: 0;
}

.nav-menu > a:hover,
.nav-item > a:hover {
  color: var(--mj-red);
  background: transparent;
}

.mega-menu {
  border-radius: 0;
  border: 4px solid var(--mj-yellow);
}

.secondary-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}

.secondary-links a,
.header-phone {
  color: var(--mj-white);
}

.secondary-links a:nth-child(4) {
  color: var(--mj-yellow);
}

.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #202124;
  background: var(--mj-white);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.review-pill span {
  color: #4285f4;
  font-weight: 900;
}

.review-pill strong {
  font-weight: 900;
}

.review-pill em {
  color: #fbbc04;
  font-style: normal;
  letter-spacing: -0.06em;
}

.header-phone {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mobile-phone,
.mobile-schedule {
  display: none;
}

.btn {
  min-height: 58px;
  padding: 0.95rem 1.9rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 6px solid var(--mj-white);
  border-radius: 999px;
}

.btn--primary {
  color: #17346f;
  background: var(--mj-yellow);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn--small {
  min-height: 58px;
  padding-inline: 1.9rem;
}

.hero {
  position: relative;
  height: clamp(440px, 46vw, 520px);
  color: var(--mj-white);
  background:
    linear-gradient(115deg, rgba(26, 88, 158, 0.6) 0 18%, transparent 18% 100%),
    linear-gradient(130deg, transparent 0 33%, rgba(37, 93, 156, 0.75) 33% 49%, transparent 49% 100%),
    linear-gradient(50deg, transparent 0 52%, rgba(5, 20, 50, 0.55) 52% 64%, transparent 64% 100%),
    #1e438d;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(560px, 1.22fr);
  align-items: stretch;
  width: min(100%, 1920px);
  height: 100%;
  margin-inline: auto;
  padding: 0;
  gap: 0;
}

.hero__copy {
  z-index: 2;
  align-self: center;
  max-width: 720px;
  padding: 42px 0 50px max(42px, calc((100vw - 1540px) / 2 + 48px));
}

.hero-sticker {
  display: grid;
  width: min(100%, 560px);
  margin-bottom: 10px;
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.hero-sticker span,
.hero-sticker strong {
  width: fit-content;
  color: #10265f;
  font-size: clamp(1.6rem, 2.8vw, 3.2rem);
  -webkit-text-stroke: 7px var(--mj-white);
  paint-order: stroke fill;
  text-shadow:
    0 4px 0 var(--mj-white),
    0 -4px 0 var(--mj-white),
    4px 0 0 var(--mj-white),
    -4px 0 0 var(--mj-white);
}

.hero-sticker strong {
  color: var(--mj-red);
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 650px;
  color: var(--mj-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
}

h1 em {
  font-style: italic;
}

.hero__lead,
.trust-list,
.hero__note,
.hero__image-card {
  display: none;
}

.hero__actions {
  margin-top: 14px;
}

.btn--hero {
  min-width: 260px;
  min-height: 76px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  border-width: 5px;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__visual img {
  position: static;
  max-height: 567px;
  max-width: 95%;
  width: auto;
  height: auto;
  object-fit: initial;
  transform: none;
}

.mobile-call-strip {
  display: none;
}

.value-band {
  padding: 16px 0 20px;
  background: var(--mj-white);
}

.value-band__inner {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 7vw, 110px);
  text-align: center;
}

.value-band span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.value-band span:nth-child(1) {
  color: #1e3a85;
}

.value-band span:nth-child(2) {
  color: #3475b5;
}

.value-band span:nth-child(3) {
  color: #56a6d6;
}

.section {
  padding-block: clamp(32px, 4vw, 56px);
}

.services {
  background:
    linear-gradient(180deg, #eef3fb, #ffffff 34%),
    var(--mj-white);
}

.section-heading--center {
  max-width: 940px;
}

.section-heading .eyebrow,
.story-card .eyebrow,
.quote-section .eyebrow,
.comfort-club .eyebrow {
  color: var(--mj-red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

h2 {
  color: var(--mj-navy);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-style: italic;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  color: #39465d;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 200px;
  padding: 0;
  background: var(--mj-white);
  border: 0;
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(7, 24, 54, 0.16);
}

.service-card::before {
  display: none;
}

.service-card__icon {
  width: 100%;
  height: 80px;
  margin: 0;
  color: var(--mj-white);
  font-size: 3.4rem;
  background:
    linear-gradient(135deg, rgba(35, 95, 163, 0.88), rgba(7, 24, 54, 0.92)),
    var(--mj-blue);
  border-radius: 0;
}

.service-card h3 {
  padding: 14px 18px 0;
  color: var(--mj-navy);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-card p {
  padding: 0 18px;
  color: #39465d;
  font-size: 0.88rem;
  font-weight: 700;
}

.service-card a {
  display: block;
  width: auto;
  margin: auto 18px 18px;
  padding: 9px 14px;
  color: #17346f;
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
  background: var(--mj-yellow);
  border: 4px solid var(--mj-white);
  border-radius: 999px;
  box-shadow: 0 0 0 2px var(--mj-yellow);
}

.split-section,
.process {
  background: #eef3fb;
}

.story-card {
  background: var(--mj-navy);
  border-radius: 0;
  border-top: 10px solid var(--mj-yellow);
}

.story-card h2 {
  color: var(--mj-white);
}

.pill-row span {
  color: var(--mj-navy);
  background: var(--mj-yellow);
  border: 0;
}

.image-tile {
  border-radius: 0;
  border-left: 10px solid var(--mj-yellow);
}

.process-grid article,
.review-grid article,
details {
  border-radius: 0;
  border: 4px solid #d9e2f1;
  box-shadow: 0 10px 0 rgba(7, 24, 54, 0.08);
}

.process-grid span {
  background: var(--mj-red);
  border: 5px solid var(--mj-yellow);
}

.comfort-club,
.quote-section {
  background:
    linear-gradient(120deg, rgba(31, 71, 150, 0.38), transparent 45%),
    var(--mj-navy);
}

.comfort-club h2,
.quote-section h2 {
  color: var(--mj-white);
}

.quote-form {
  border-radius: 0;
  border-top: 12px solid var(--mj-yellow);
}

.quote-callout {
  border-radius: 0;
  background: var(--mj-yellow);
}

/* ── Services carousel ─────────────────────────────── */
.services {
  background: #e8edf5;
}

.services .section-heading {
  margin-bottom: 28px;
}

.services-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.services-carousel .carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Service card - dark navy tile */
.services-carousel .service-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 28px 36px;
  background: #1a3a7a;
  border: 3px solid var(--mj-yellow);
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(7,24,54,.22);
}

.services-carousel .service-card__icon {
  width: 90px;
  height: 90px;
  min-height: unset;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 4px solid var(--mj-yellow);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.services-carousel .service-card h3 {
  padding: 0;
  margin: 0 0 10px;
  color: var(--mj-yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.services-carousel .service-card p {
  padding: 0;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Prev / Next buttons */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #d0d8e8;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: #1a3a7a;
  cursor: pointer;
  transition: background 180ms ease;
}

.carousel__btn:hover { background: #b8c4d8; }
.carousel__btn--prev { left: -8px; }
.carousel__btn--next { right: -8px; }

/* Dots */
.carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8c4d8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease;
}

.carousel__dot.is-active { background: #1a3a7a; }

/* Mobile: 1-up */
@media (max-width: 600px) {
  .services-carousel .service-card {
    flex: 0 0 100%;
  }
}

/* Tablet: 2-up */
@media (min-width: 601px) and (max-width: 1060px) {
  .services-carousel .service-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

.site-footer {
  background: var(--mj-navy);
  border-top: 8px solid var(--mj-yellow);
}

.floating-chat {
  position: fixed;
  right: 22px;
  bottom: 76px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--mj-navy);
  font-size: 2.35rem;
  font-weight: 900;
  background: var(--mj-yellow);
  border: 5px solid var(--mj-yellow);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.floating-chat::before {
  content: "💬";
  font-size: 2rem;
}

.floating-chat {
  font-size: 0;
}

.brand--footer {
  width: 220px;
  min-height: 74px;
}

@media (max-width: 1100px) {
  .navbar--primary {
    justify-content: space-between;
  }

  .navbar--secondary {
    display: none;
  }

  .mobile-phone {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #17346f;
    font-size: 1.5rem;
    font-weight: 900;
  }

  .mobile-schedule {
    display: none;
  }

  .nav-toggle {
    display: block;
    background: transparent;
    border-radius: 0;
  }

  .nav-toggle span {
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background: #17346f;
  }

  .nav-menu {
    inset: 110px 16px auto;
    border: 5px solid var(--mj-yellow);
    border-radius: 0;
  }

  .nav-menu.is-open {
    z-index: 500;
  }

  .brand {
    width: min(48vw, 420px);
    min-height: 86px;
  }
}

@media (max-width: 900px) {
  .top-strip {
    min-height: 96px;
    padding: 22px 16px;
  }

  .top-strip p,
  .top-strip a {
    font-size: clamp(1.35rem, 4.6vw, 2rem);
  }

  .top-strip {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 8px;
  }

  .navbar--primary {
    width: 100%;
    min-height: 58px;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand {
    width: auto;
    min-height: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    justify-content: center;
    flex: 1;
  }

  .brand::before,
  .brand::after {
    display: none;
  }

  .brand__logo {
    height: 36px;
  }

  /* Mobile hero - full-bleed image, text overlaid at bottom */
  .hero {
    height: auto;
    overflow: hidden;
  }

  .hero__grid {
    position: relative;
    display: block;
    height: clamp(480px, 130vw, 620px);
    overflow: hidden;
  }

  /* Sahil fills the full hero block */
  .hero__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    padding: 0;
    overflow: hidden;
  }

  .hero__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
    object-fit: cover;
    object-position: center 15%;
    transform: none;
  }

  /* Dark gradient so text is readable */
  .hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,20,60,.92) 0%,
      rgba(10,20,60,.55) 38%,
      rgba(10,20,60,.1) 65%,
      transparent 100%
    );
    pointer-events: none;
  }

  /* Text pinned to the bottom */
  .hero__copy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: none;
    padding: 0 20px 20px;
    background: none;
    border-bottom: 5px solid var(--mj-yellow);
  }

  .hero-sticker {
    width: 100%;
    margin: 0 0 6px;
    transform: rotate(-1.5deg);
  }

  .hero-sticker span,
  .hero-sticker strong {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem);
    -webkit-text-stroke-width: 5px;
    text-shadow:
      0 3px 0 #fff,
      0 -3px 0 #fff,
      3px 0 0 #fff,
      -3px 0 0 #fff;
  }

  .hero-sticker strong {
    font-size: clamp(2.6rem, 10.5vw, 4rem);
  }

  .hero h1 {
    display: block;
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    color: rgba(255,255,255,.9);
    margin: 4px 0 14px;
  }

  .hero__actions {
    display: flex;
  }

  .btn--hero {
    min-width: 0;
    min-height: 52px;
    width: 100%;
    padding: 13px 20px;
    font-size: 1.05rem;
    border-width: 3px;
  }

  .mobile-call-strip {
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 30px 16px 38px;
    color: var(--mj-white);
    text-align: center;
    background: #1e438d;
    border-bottom-right-radius: 28px;
    border-bottom-left-radius: 28px;
  }

  .mobile-call-strip strong {
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(2.2rem, 8vw, 4rem);
    letter-spacing: 0.025em;
  }

  .mobile-call-strip span {
    color: var(--mj-yellow);
    font-size: clamp(1.5rem, 5.8vw, 2.8rem);
    font-weight: 900;
  }

  .value-band {
    padding: 28px 0;
  }

  .value-band__inner {
    flex-direction: column;
    gap: 8px;
  }

  .value-band span {
    font-size: clamp(3.8rem, 13vw, 7rem);
  }

  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .navbar--primary {
    min-height: 56px;
    padding-inline: 14px;
  }

  .mobile-phone {
    width: 32px;
    font-size: 1.35rem;
  }

  .nav-toggle {
    width: 32px;
  }

  .nav-toggle span {
    width: 26px;
  }

  .hero__visual {
    min-height: 535px;
  }

  .hero__visual img {
    width: 142%;
    object-position: 57% 38%;
  }

  .hero__copy {
    padding-inline: 18px;
  }
}

/* ── Sticky Phone Bar ──────────────────────────────── */
.sticky-phone-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  padding: 12px 20px 14px;
  background: #0c2f73;
  border-top: 3px solid var(--mj-yellow);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.28);
}

.sticky-phone-bar__call {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.sticky-phone-bar__icon {
  font-size: 1.3rem;
  line-height: 1;
}

.sticky-phone-bar__call strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  letter-spacing: 0.03em;
  color: var(--mj-yellow);
}

.sticky-phone-bar__sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
}

.sticky-phone-bar__sms {
  color: #fff;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  opacity: 0.9;
}

.sticky-phone-bar__sms:hover {
  text-decoration: underline;
  opacity: 1;
}

body {
  padding-bottom: 56px;
}
