/* Bright Hearth Chimney Solutions — single-page website styles */
:root {
  --navy: #17233b;
  --navy-deep: #0d172a;
  --navy-soft: #243352;
  --ember: #ff6b35;
  --ember-dark: #e64e18;
  --gold: #ffc857;
  --cream: #fff9f2;
  --cream-deep: #f7ecdf;
  --charcoal: #20242c;
  --ink: #20242c;
  --muted: #667085;
  --white: #ffffff;
  --line: #e6ddd4;
  --success: #23683c;
  --danger: #b42318;
  --shadow-sm: 0 12px 30px rgba(23, 35, 59, 0.08);
  --shadow-md: 0 24px 60px rgba(13, 23, 42, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--navy-deep);
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.85rem, 6vw, 5.9rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 4.5vw, 4.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.25rem;
}

address {
  font-style: normal;
}

section,
article[id],
h3[id] {
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.container {
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
}

.section {
  padding: 7.5rem 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--ember-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button:active {
  transform: scale(0.97);
}

.button--small {
  min-height: 44px;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
}

.button--ember {
  color: var(--white);
  background: var(--ember-dark);
  box-shadow: 0 9px 22px rgba(230, 78, 24, 0.22);
}

.button--ember:hover {
  background: #c94012;
  box-shadow: 0 13px 28px rgba(230, 78, 24, 0.28);
}

.button--gold {
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(255, 200, 87, 0.2);
}

.button--gold:hover {
  background: #ffd476;
  box-shadow: 0 16px 32px rgba(255, 200, 87, 0.25);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
}

.button--navy:hover {
  background: var(--navy-soft);
  box-shadow: var(--shadow-sm);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.7);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ember-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--gold);
}

.trust-bar {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.87);
  background: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-bar__inner,
.trust-bar__actions,
.trust-bar p,
.trust-bar a {
  display: flex;
  align-items: center;
}

.trust-bar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 1rem;
}

.trust-bar p {
  gap: 0.55rem;
  margin: 0;
}

.trust-bar__dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 200, 87, 0.13);
}

.trust-bar__actions {
  gap: 1.4rem;
}

.trust-bar a {
  gap: 0.45rem;
  color: var(--white);
}

.trust-bar a:hover {
  color: var(--gold);
}

.trust-bar svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 249, 242, 0.98);
  border-bottom: 1px solid rgba(23, 35, 59, 0.08);
  transition: min-height 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(13, 23, 42, 0.1);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(180px, 255px) 1fr auto;
  align-items: center;
  gap: 1.6rem;
}

.brand {
  display: block;
  min-width: 0;
}

.brand img {
  width: 235px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.35vw, 1.35rem);
}

.desktop-nav a {
  position: relative;
  color: #33415e;
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 35, 59, 0.15);
  background: var(--white);
  border-radius: 50%;
}

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

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

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

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

.mobile-nav {
  position: absolute;
  z-index: 999;
  top: 100%;
  right: 0;
  left: 0;
  padding: 0.5rem 0 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 22px 40px rgba(13, 23, 42, 0.13);
}

.mobile-nav .container {
  display: grid;
}

.mobile-nav a {
  padding: 0.8rem 0;
  color: var(--navy);
  border-bottom: 1px solid rgba(23, 35, 59, 0.08);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 7rem 0 8.5rem;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.26;
}

.hero__glow--one {
  top: -300px;
  left: -260px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.65), transparent 66%);
}

.hero__glow--two {
  right: -230px;
  bottom: -390px;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.35), transparent 67%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
}

.hero h1 {
  max-width: 800px;
  color: var(--white);
}

.hero__lead {
  max-width: 700px;
  margin-bottom: 1.9rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.8rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 600;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.hero__trust svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.hero__visual {
  position: relative;
  padding: 1rem 0 2.5rem;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 240px 240px 36px 36px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(13, 23, 42, 0.35));
  pointer-events: none;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero__note {
  position: absolute;
  bottom: 0;
  left: -3.4rem;
  display: flex;
  min-width: 255px;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.hero__note-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--ember-dark);
  background: rgba(255, 107, 53, 0.11);
  border-radius: 50%;
}

.hero__note svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero__note strong,
.hero__note span,
.hero__availability {
  display: block;
}

.hero__note strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.hero__note div > span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero__availability {
  position: absolute;
  top: 11%;
  right: -1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 800;
}

.hero__availability > span {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.roofline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 72px;
  grid-template-columns: 1fr 100px 1fr;
  align-items: end;
  opacity: 0.14;
}

.roofline span {
  height: 1px;
  background: var(--white);
}

.roofline i {
  position: relative;
  width: 100px;
  height: 48px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  transform: rotate(45deg) translate(9px, 28px);
}

.benefit-strip {
  position: relative;
  z-index: 4;
  margin-top: -3.3rem;
}

.benefit-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.benefit-strip article {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 0.9rem;
  padding: 1.5rem 1.4rem;
  border-right: 1px solid var(--line);
}

.benefit-strip article:last-child {
  border-right: 0;
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: var(--ember-dark);
  background: var(--cream);
  border-radius: 13px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-strip h2 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.benefit-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.about {
  padding-top: 10rem;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.about__visual {
  position: relative;
  padding: 0 0 2.2rem 2rem;
}

.about__visual::before {
  position: absolute;
  z-index: 0;
  top: 2rem;
  bottom: 0;
  left: 0;
  width: 64%;
  content: "";
  background: var(--gold);
  border-radius: 34px 34px 120px 34px;
}

.image-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 38px 38px 140px 38px;
  box-shadow: var(--shadow-md);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__metric {
  position: absolute;
  z-index: 2;
  right: -1.4rem;
  bottom: 0;
  width: 155px;
  padding: 1.1rem;
  color: var(--white);
  background: var(--ember-dark);
  border: 5px solid var(--cream);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.about__metric strong,
.about__metric span {
  display: block;
}

.about__metric strong {
  margin-bottom: 0.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.about__metric span {
  font-size: 0.72rem;
  line-height: 1.35;
}

.about__copy > p:not(.eyebrow) {
  color: #556074;
}

.why {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.why::after {
  position: absolute;
  top: -240px;
  right: -220px;
  width: 600px;
  height: 600px;
  content: "";
  background: radial-gradient(circle, rgba(255, 107, 53, 0.22), transparent 65%);
  border-radius: 50%;
}

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

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--split {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: none;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
}

.section-heading--split h2,
.section-heading--center h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.65) !important;
}

.section-heading--split h2,
.why-card h3 {
  color: var(--white);
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.why__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.why-card {
  position: relative;
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.why-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.why-card > span {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.24);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.why-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 2.8rem;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.why-card h3 {
  margin-bottom: 0.75rem;
}

.why-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 0 1.75rem 1.75rem;
  background: var(--cream);
  border: 1px solid #f0e6dc;
  border-radius: var(--radius-md);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0 -1.75rem 1.25rem;
  background: #e8e1d9;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(13, 23, 42, 0.18));
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card::before {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  content: "";
  background: rgba(255, 200, 87, 0.24);
  border-radius: 50%;
  transition: transform 220ms var(--ease-out);
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.service-card:hover::before {
  transform: scale(1.25);
}

.service-card--featured {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ember-dark);
  border-color: var(--ember-dark);
}

.service-card--featured h3,
.service-card--featured a {
  color: var(--white);
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 1.4rem;
  right: 1.6rem;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(13, 23, 42, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card--featured .service-card__number {
  color: var(--ember-dark);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.25rem;
  place-items: center;
  color: var(--ember-dark);
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(23, 35, 59, 0.08);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card h3 {
  margin-bottom: 0.7rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  min-height: 75px;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 750;
}

.service-card a span {
  color: var(--ember-dark);
}

.services__area-link {
  margin: 2.2rem 0 0;
  text-align: center;
}

.service-details {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.service-details__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.service-details__intro .eyebrow,
.service-details__intro h2 {
  grid-column: 1;
}

.service-details__intro h2 {
  margin-bottom: 0;
  color: var(--white);
}

.service-details__intro > p:last-child {
  grid-row: 1 / span 2;
  grid-column: 2;
  margin-bottom: 0.35rem;
}

.service-details__list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-row > div {
  display: flex;
  gap: 1rem;
}

.detail-row span {
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.detail-row h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.detail-row p {
  margin: 0;
  font-size: 0.93rem;
}

.detail-row p a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.safety {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

.safety::before {
  position: absolute;
  top: -85px;
  left: -85px;
  width: 220px;
  height: 220px;
  content: "";
  border: 42px solid rgba(255, 200, 87, 0.32);
  border-radius: 50%;
}

.safety__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.safety__copy > p:not(.eyebrow) {
  margin-bottom: 1.35rem;
  color: var(--muted);
}

.safety__visual {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0 0 1.6rem;
  background: #ded7cf;
  border: 6px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px 60px 20px 20px;
  box-shadow: var(--shadow-sm);
}

.safety__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.safety__checklist {
  padding: 2.3rem;
  background: var(--white);
  border-radius: 26px 80px 26px 26px;
  box-shadow: var(--shadow-md);
}

.safety__checklist ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.2rem;
  margin: 0 0 1.7rem;
  padding: 0;
  list-style: none;
}

.safety__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0;
  color: #47536a;
  border-bottom: 1px solid #eee7df;
  font-size: 0.88rem;
}

.safety__checklist li span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  color: var(--white);
  background: var(--ember-dark);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.process {
  background: var(--white);
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps::before {
  position: absolute;
  top: 43px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
}

.process__steps li {
  position: relative;
  padding: 0 1.1rem;
  text-align: center;
}

.process__steps li > span {
  position: absolute;
  z-index: 2;
  top: -4px;
  left: calc(50% + 22px);
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--ember-dark);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
}

.process__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  margin: 0 auto 1.5rem;
  place-items: center;
  color: var(--ember-dark);
  background: var(--cream);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.process__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.process__steps h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.process__steps a {
  color: var(--ember-dark);
  font-weight: 700;
}

.service-area {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.service-area h2,
.service-area h3 {
  color: var(--white);
}

.service-area__top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  gap: 3.2rem;
}

.service-area__copy address {
  margin: 1.8rem 0;
  padding-left: 1rem;
  color: var(--white);
  border-left: 3px solid var(--gold);
}

.service-area__copy address strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Grotesk", sans-serif;
}

.service-area__call {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.service-area__call a {
  color: var(--gold);
  font-weight: 750;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 465px;
  background: #e9e2d9;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px 90px 28px 28px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.26);
}

.map-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  content: "Map loads as this section enters view";
  place-items: center;
  color: #667085;
  background: radial-gradient(circle at 70% 20%, rgba(255, 200, 87, 0.42), transparent 25%), linear-gradient(135deg, #f5eee6, #ddd8d3);
  font-size: 0.82rem;
}

.map-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  filter: saturate(0.68) contrast(1.05);
}

.map-card__label {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 800;
}

.map-card__label span {
  width: 8px;
  height: 8px;
  background: var(--ember-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.13);
}

.map-fallback {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.7rem;
  background: var(--white);
}

.neighborhoods {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  margin-top: 3.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.neighborhoods h3,
.neighborhoods p {
  margin-bottom: 0;
}

.neighborhoods p {
  font-size: 0.92rem;
}

.faqs {
  background: var(--cream);
}

.faqs__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.faqs__intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faqs__intro > p:not(.eyebrow) {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid #d8d0c8;
}

.faq-item {
  border-bottom: 1px solid #d8d0c8;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 80px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-item button > span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 35, 59, 0.18);
  border-radius: 50%;
}

.faq-item button > span::before,
.faq-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--ember-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 180ms var(--ease-out);
}

.faq-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 770px;
  padding: 0 3.5rem 1.5rem 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact {
  color: rgba(255, 255, 255, 0.7);
  background: var(--charcoal);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.contact h2 {
  color: var(--white);
}

.contact__details > p:not(.eyebrow) {
  margin-bottom: 2rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact__card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact__card > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.contact__card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.contact__card small,
.contact__card a,
.contact__card strong,
.contact__card address {
  display: block;
}

.contact__card small {
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__card a,
.contact__card strong,
.contact__card address {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact__card a:hover {
  color: var(--gold);
}

.form-card {
  padding: clamp(1.4rem, 4vw, 2.7rem);
  color: var(--ink);
  background: var(--white);
  border-radius: 30px 90px 30px 30px;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.22);
}

.form-card__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.form-card__heading h3,
.form-card__heading p {
  margin: 0;
}

.form-card__heading h3 {
  font-size: 1.8rem;
}

.form-card__heading p {
  color: var(--muted);
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label:not(.consent-label) {
  display: block;
  margin-bottom: 0.42rem;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 700;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fcfaf8;
  border: 1px solid #d9d4cf;
  border-radius: 11px;
  outline: 0;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

.field input:not([type="checkbox"]),
.field select {
  height: 50px;
  padding: 0 0.85rem;
}

.field textarea {
  min-height: 125px;
  padding: 0.75rem 0.85rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--ember-dark);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09);
}

.field-error {
  display: block;
  min-height: 18px;
  padding-top: 0.18rem;
  color: var(--danger);
  font-size: 0.7rem;
  line-height: 1.3;
}

.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: #576173;
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;
  accent-color: var(--ember-dark);
}

.form-status {
  min-height: 25px;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 650;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ember-dark);
}

.final-cta::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.final-cta__shape {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 360px;
  height: 250px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-18deg);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 3rem;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.final-cta p:last-child {
  max-width: 700px;
  margin-bottom: 0;
}

.final-cta__actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  background: var(--navy-deep);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
}

.site-footer__brand img {
  width: min(100%, 320px);
  height: auto;
  margin-bottom: 1.3rem;
  filter: brightness(0) invert(1);
}

.site-footer__wordmark {
  display: inline-flex;
  max-width: 360px;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.site-footer__wordmark span {
  color: var(--gold);
  font-size: 0.8rem;
}

.site-footer__brand p {
  max-width: 390px;
}

.site-footer h2 {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
}

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

.site-footer address,
.site-footer p,
.site-footer a {
  font-size: 0.82rem;
}

.site-footer__phone {
  display: block;
  margin: 0.7rem 0 0.25rem;
  color: var(--white);
  font-size: 1rem !important;
  font-weight: 800;
}

.site-footer__disclaimer {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.site-footer__disclaimer p {
  margin: 0;
  font-size: 0.64rem;
  line-height: 1.65;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: var(--white);
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    grid-template-columns: minmax(180px, 230px) 1fr auto;
    gap: 1rem;
  }

  .desktop-nav {
    gap: 0.8rem;
  }

  .desktop-nav a {
    font-size: 0.73rem;
  }

  .header-call {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 3.5rem;
  }

  .hero__note {
    left: -1.4rem;
  }

  .benefit-strip article {
    padding-inline: 1rem;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 6rem 0;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero__grid,
  .about__grid,
  .safety__grid,
  .service-area__top,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero__image-wrap {
    aspect-ratio: 5 / 4;
    border-radius: 160px 160px 30px 30px;
  }

  .hero__image-wrap img {
    object-position: center 42%;
  }

  .benefit-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-strip article:nth-child(2) {
    border-right: 0;
  }

  .benefit-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about__visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .about__copy {
    max-width: 760px;
  }

  .section-heading--split,
  .service-details__intro,
  .neighborhoods,
  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading--split > p {
    max-width: 720px;
  }

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

  .service-details__intro .eyebrow,
  .service-details__intro h2,
  .service-details__intro > p:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .detail-row {
    gap: 2rem;
  }

  .safety__copy {
    max-width: 720px;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
  }

  .process__steps::before {
    display: none;
  }

  .map-card {
    min-height: 420px;
  }

  .neighborhoods {
    margin-top: 2.5rem;
  }

  .faqs__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faqs__intro {
    position: static;
    max-width: 700px;
  }

  .contact__details {
    max-width: 700px;
  }

  .final-cta__actions {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .container {
    width: min(100% - 1.3rem, 1240px);
  }

  .section {
    padding: 5rem 0;
  }

  .trust-bar__inner {
    justify-content: center;
  }

  .trust-bar p,
  .trust-bar__actions > span {
    display: none;
  }

  .trust-bar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .trust-bar__actions::before {
    content: "Seattle • Open 24/7";
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 195px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 0 7rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    padding-top: 1.5rem;
  }

  .hero__image-wrap {
    aspect-ratio: 4 / 5;
    border-width: 5px;
    border-radius: 120px 120px 24px 24px;
  }

  .hero__note {
    right: 0.7rem;
    bottom: 0;
    left: 0.7rem;
    min-width: 0;
  }

  .hero__availability {
    top: 8%;
    right: -0.3rem;
  }

  .benefit-strip {
    margin-top: -2.2rem;
  }

  .benefit-strip__grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }

  .benefit-strip article {
    min-height: 102px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-strip article:last-child {
    border-bottom: 0;
  }

  .about {
    padding-top: 7rem;
  }

  .about__visual {
    padding: 0 0 1.8rem 1rem;
  }

  .image-panel {
    border-radius: 26px 26px 80px 26px;
  }

  .about__metric {
    right: -0.1rem;
    width: 140px;
  }

  .section-heading {
    margin-bottom: 2.3rem;
  }

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

  .why-card {
    min-height: 245px;
  }

  .service-card {
    min-height: 290px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.65rem 0;
  }

  .safety__checklist {
    padding: 1.25rem;
    border-radius: 18px 55px 18px 18px;
  }

  .safety__checklist ul {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process__steps li {
    max-width: 320px;
    margin-inline: auto;
  }

  .service-area__top {
    gap: 2.2rem;
  }

  .map-card {
    min-height: 360px;
    border-width: 5px;
    border-radius: 20px 55px 20px 20px;
  }

  .map-card iframe {
    min-height: 350px;
  }

  .neighborhoods {
    gap: 0.6rem;
  }

  .faq-item button {
    min-height: 72px;
    font-size: 1rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .form-card {
    border-radius: 20px 55px 20px 20px;
  }

  .form-card__heading {
    display: block;
  }

  .form-card__heading h3 {
    margin-bottom: 0.35rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .final-cta {
    padding: 5rem 0;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 4rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .site-footer__brand img {
    width: 250px;
  }

  .site-footer__bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 64px;
    grid-template-columns: 1fr 1fr;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #dfd8d0;
    box-shadow: 0 -8px 30px rgba(13, 23, 42, 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--navy);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-cta a:first-child {
    color: var(--white);
    background: var(--ember-dark);
  }

  .mobile-cta svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: 170px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__availability {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
