:root {
  --navy: #061a43;
  --navy-light: #0d3475;
  --blue: #0759c7;
  --ice: #e9f6ff;
  --natural: #fffbf0;
  --white: #ffffff;
  --red: #d9191c;
  --red-dark: #a90e13;
  --green: #08733a;
  --gold: #f59a12;
  --text: #10234d;
  --muted: #51617c;
  --light-strand:
    radial-gradient(ellipse 7px 11px at 8% 64%, #ef481f 0 52%, #063c2b 56% 72%, transparent 76%),
    radial-gradient(ellipse 7px 11px at 22% 52%, #f3bd16 0 52%, #063c2b 56% 72%, transparent 76%),
    radial-gradient(ellipse 7px 11px at 37% 58%, #55c950 0 52%, #063c2b 56% 72%, transparent 76%),
    radial-gradient(ellipse 7px 11px at 52% 48%, #ef481f 0 52%, #063c2b 56% 72%, transparent 76%),
    radial-gradient(ellipse 7px 11px at 67% 58%, #f3bd16 0 52%, #063c2b 56% 72%, transparent 76%),
    radial-gradient(ellipse 7px 11px at 82% 52%, #55c950 0 52%, #063c2b 56% 72%, transparent 76%),
    radial-gradient(ellipse 7px 11px at 95% 64%, #ef481f 0 52%, #063c2b 56% 72%, transparent 76%),
    linear-gradient(176deg, transparent 34%, #063c2b 36% 42%, transparent 44%);
  --shadow: 0 18px 50px rgba(2, 26, 68, 0.14);
  --radius: 1.4rem;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--natural);
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--red);
}

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

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

h1,
h2,
h3 {
  font-family: "Fredoka", sans-serif;
  line-height: 1.05;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

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

.narrow-container {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  color: var(--navy);
  background: var(--white);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  color: var(--navy);
  background: var(--natural);
  border-bottom: 1px solid #e5eaf0;
  box-shadow: 0 8px 28px rgba(3, 20, 52, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 158px;
  gap: 2rem;
}

.brand {
  width: 112px;
  min-width: 112px;
  height: 152px;
  background: var(--natural);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  font-size: 0.82rem;
}

.site-header .button {
  box-shadow: 0 8px 18px rgba(132, 8, 13, 0.2);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  gap: 0.6rem;
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(4, 20, 53, 0.18);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 24px rgba(4, 20, 53, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding-inline: 1.1rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.button-red {
  background: linear-gradient(180deg, #ef2929, var(--red-dark));
  border-color: #ff5656;
}

.button-green {
  background: linear-gradient(180deg, #159551, #075f31);
  border-color: #3ec878;
}

.button-light {
  color: var(--red-dark);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(26, 100, 212, 0.65), transparent 28%),
    radial-gradient(circle at 18% 60%, rgba(32, 112, 220, 0.5), transparent 32%),
    linear-gradient(135deg, #020d29 0%, #052a6d 55%, #02163d 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 780px;
  align-items: center;
  padding-block: 90px 110px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: #7dd7ff;
}

.hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: #f52525;
  text-shadow: 0 4px 0 #8f0909, 0 0 20px rgba(255, 255, 255, 0.25);
}

.hero-tagline {
  max-width: 610px;
  margin-bottom: 0.7rem;
  color: var(--white);
  font: 700 clamp(1.25rem, 2.4vw, 1.75rem)/1.2 "Fredoka", sans-serif;
  text-wrap: balance;
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 1.65rem;
  color: #cee3f3;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding: 0;
  gap: 0.65rem 1.4rem;
  color: #dff5ff;
  font-size: 0.88rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li::before {
  margin-right: 0.45rem;
  color: #69e99d;
  content: "✓";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scene {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.hero-illustration {
  position: absolute;
  right: -7%;
  bottom: 0;
  width: min(116%, 680px);
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(0, 5, 22, 0.35));
}

.snow {
  position: absolute;
  color: #d4f2ff;
  font-size: 2rem;
}

.snow-one {
  top: 20%;
  left: 4%;
}

.snow-two {
  top: 43%;
  right: 3%;
  font-size: 1rem;
}

.snow-three {
  bottom: 12%;
  left: 14%;
  font-size: 1.3rem;
}

.snowbank {
  position: absolute;
  right: -3%;
  bottom: -42px;
  left: -3%;
  z-index: 4;
  height: 88px;
  background: var(--natural);
  border-top: 12px solid #c4eaff;
  border-radius: 50% 50% 0 0;
}

.interior-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(24, 130, 78, 0.28), transparent 25%),
    radial-gradient(circle at 12% 80%, rgba(29, 109, 219, 0.42), transparent 30%),
    linear-gradient(135deg, #020d29, #072e6d 66%, #03183d);
}

.interior-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
}

.interior-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 470px;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.interior-hero .eyebrow {
  color: #75eaa6;
}

.interior-hero h1,
.contact-page h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.1rem, 7vw, 6rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.interior-hero p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 0;
  color: #d8eafa;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.interior-hero img {
  width: min(100%, 340px);
  max-height: 320px;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 5, 22, 0.32));
}

.home-pathways {
  padding-block: 100px 130px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.9), transparent 20%),
    var(--ice);
}

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

.pathway-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.65rem;
  overflow: hidden;
  background: var(--natural);
  border: 1px solid rgba(10, 45, 98, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(11, 46, 101, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  box-shadow: 0 18px 42px rgba(11, 46, 101, 0.16);
  transform: translateY(-5px);
}

.pathway-card img {
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

.pathway-card > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pathway-card h3 {
  margin-top: 0.4rem;
  font-size: 1.7rem;
}

.pathway-card p {
  color: var(--muted);
}

.pathway-card strong {
  color: var(--green);
  font-size: 0.9rem;
}

.home-cta,
.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.home-cta {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(24, 135, 77, 0.32), transparent 25%),
    linear-gradient(135deg, #031432, #08295c);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-cta .eyebrow,
.page-cta .eyebrow {
  color: #75eaa6;
}

.home-cta h2,
.page-cta h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.page-cta {
  padding-block: 75px 105px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 90%, rgba(24, 135, 77, 0.3), transparent 28%),
    linear-gradient(135deg, #031432, #08295c 65%, #5d0a13 155%);
}

.gallery-page {
  padding-top: 100px;
}

.why-benefits {
  background: var(--natural);
}

.contact-page {
  padding-top: clamp(5rem, 9vw, 8rem);
}

.benefits,
.process,
.services,
.faq {
  padding-block: 100px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading::after,
.gallery-heading > div::after,
.trust-grid > div::after,
.quote-intro h2::after {
  display: block;
  width: 220px;
  height: 34px;
  margin: 1.1rem auto 0;
  background: var(--light-strand);
  background-repeat: no-repeat;
  content: "";
}

.gallery-heading > div::after,
.trust-grid > div::after,
.quote-intro h2::after {
  margin-inline: 0;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.benefit-card {
  padding: 1.4rem;
  text-align: center;
}

.benefit-card p,
.service-card p,
.split-section > p {
  color: var(--muted);
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(40, 141, 95, 0.28), transparent 24%),
    linear-gradient(135deg, #03122f, #082b61);
}

.process .eyebrow {
  color: #74e9a5;
}

.process .section-heading > p:last-child {
  color: #cce4f8;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: process;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 245px;
  padding: 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.process-card > span {
  display: block;
  margin-bottom: 1.8rem;
  color: #6ee29e;
  font: 700 1rem/1 "Fredoka", sans-serif;
  letter-spacing: 0.12em;
}

.process-card h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.process-card p {
  margin-bottom: 0;
  color: #cfe2f2;
}

.process-card::after {
  position: absolute;
  right: -0.6rem;
  bottom: -3.5rem;
  color: rgba(255, 255, 255, 0.035);
  content: "✦";
  font-size: 9rem;
}

.icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 1.3rem;
  place-items: center;
  color: var(--white);
  border: 6px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(4, 20, 53, 0.18);
  font: 700 2.2rem/1 "Fredoka", sans-serif;
}

.icon-red {
  background: var(--red);
}

.icon-green {
  background: var(--green);
}

.icon-blue {
  background: var(--blue);
}

.icon-gold {
  background: var(--gold);
}

.services {
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.8), transparent 18%),
    var(--ice);
}

.service-card {
  position: relative;
  padding: 1.1rem 1.1rem 1.7rem;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(10, 45, 98, 0.07);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(11, 46, 101, 0.09);
  text-align: center;
}

.service-card::before {
  display: block;
  width: 125px;
  height: 24px;
  margin: -0.3rem auto 0.55rem;
  background: var(--light-strand);
  background-repeat: no-repeat;
  content: "";
}

.service-art {
  display: grid;
  min-height: 200px;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: calc(var(--radius) - 0.35rem);
}

.service-art img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.red-art {
  background: #ffe5e4;
}

.green-art {
  background: #e0f7e8;
}

.blue-art {
  background: #deefff;
}

.gold-art {
  background: #fff0d2;
}

.gallery-section,
.trust-section {
  padding-block: 90px;
}

.split-section,
.trust-grid,
.contact-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.gallery-section {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 9%, rgba(21, 149, 81, 0.2), transparent 24%),
    linear-gradient(145deg, #020d25, #082c5f);
}

.gallery-section .eyebrow {
  color: #75eaa6;
}

.gallery-heading {
  display: grid;
  align-items: end;
  margin-bottom: 2.5rem;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p {
  margin-bottom: 0.45rem;
  color: #c8deef;
  font-size: 1.05rem;
}

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

.gallery-item {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #07172e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  box-shadow: 0 14px 35px rgba(0, 6, 20, 0.28);
}

.gallery-featured {
  grid-column: span 8;
  aspect-ratio: 2 / 1;
}

.gallery-side {
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(1, 8, 24, 0.9));
  content: "";
}

.gallery-item > span {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  z-index: 1;
  color: #cce0ef;
  font-size: 0.8rem;
  line-height: 1.35;
}

.gallery-item strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
  font: 700 1.05rem/1.15 "Fredoka", sans-serif;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.1) brightness(1.06);
  transform: scale(1.035);
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
  gap: 1.3rem;
}

.gallery-cta p {
  margin-bottom: 0;
  color: var(--white);
  font: 700 1.25rem/1.2 "Fredoka", sans-serif;
}

.trust-section {
  background: var(--natural);
}

.story-section {
  position: relative;
  padding-block: 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 255, 255, 0.92), transparent 20%),
    radial-gradient(circle at 92% 86%, rgba(119, 205, 250, 0.22), transparent 24%),
    var(--ice);
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.story-copy {
  max-width: 650px;
}

.story-copy h2 {
  max-width: 620px;
}

.story-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.mission-card {
  position: relative;
  padding: clamp(2rem, 5vw, 3.25rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 154, 18, 0.35) 0 5%, transparent 5.5%),
    radial-gradient(circle at 75% 31%, rgba(217, 25, 28, 0.32) 0 7%, transparent 7.5%),
    radial-gradient(circle at 91% 43%, rgba(8, 115, 58, 0.35) 0 6%, transparent 6.5%),
    linear-gradient(145deg, #031432, #082b61);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 55px rgba(4, 28, 66, 0.22);
}

.mission-card::after {
  display: block;
  width: 220px;
  height: 34px;
  margin-top: 1.6rem;
  background: var(--light-strand);
  background-repeat: no-repeat;
  content: "";
}

.mission-card .eyebrow {
  color: #75eaa6;
}

.mission-card h3 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.mission-card p:last-child {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 0;
  color: #d8eafa;
  font-size: 1.05rem;
}

.mission-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: #ffd55e;
  font-size: 2rem;
  text-shadow: 0 0 18px rgba(255, 213, 94, 0.8);
}

.why-page {
  background: var(--ice);
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.8rem;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 1rem 1.1rem 1rem 3.2rem;
  background: var(--ice);
  border: 1px solid #d6e7f4;
  border-radius: 1rem;
}

.trust-list li::before {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  color: var(--navy);
  font-family: "Fredoka", sans-serif;
}

.trust-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq details {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid #dae3f0;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(4, 20, 53, 0.05);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.contact {
  display: none;
}

.quote {
  padding-block: 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 86%, rgba(24, 135, 77, 0.32), transparent 28%),
    linear-gradient(135deg, #031432, #08295c 62%, #5d0a13 155%);
}

.quote-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.quote-intro {
  position: sticky;
  top: 2rem;
}

.quote .eyebrow {
  color: #73e5a3;
}

.quote-intro h2 {
  margin-bottom: 1.25rem;
}

.quote-intro > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: #cee2f2;
  font-size: 1.08rem;
}

.contact-card {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 1.1rem 1.2rem;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.4rem;
}

.contact-card small,
.contact-card a,
.service-area span {
  display: block;
}

.contact-card small {
  color: #9db7d1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  font: 700 1.45rem/1.2 "Fredoka", sans-serif;
}

.service-area {
  padding: 1.15rem 1.25rem;
  color: #dff6e9;
  border-left: 4px solid #52d98b;
}

.service-area strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.quote-form {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--text);
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 25px 65px rgba(0, 8, 28, 0.35);
}

.jobber-form {
  min-width: 0;
  overflow: hidden;
}

.jobber-form-fallback {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  color: var(--muted);
  border-top: 1px solid #e1e7ef;
  font-size: 0.9rem;
  text-align: center;
}

.jobber-form-fallback a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  gap: 1rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--navy);
  font: 700 clamp(1.5rem, 3vw, 2rem)/1.1 "Fredoka", sans-serif;
}

.form-heading span,
.form-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 135, 77, 0.35), transparent 25%),
    linear-gradient(135deg, #031432, #08295c 62%, #5d0a13 155%);
}

.thank-you-card {
  width: min(100%, 660px);
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 25px 70px rgba(0, 8, 28, 0.4);
  text-align: center;
}

.thank-you-card img {
  width: 120px;
  max-height: 150px;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.thank-you-card h1 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.05em;
}

.thank-you-card p {
  margin: 0 auto 1.8rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

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

.quote-form > label,
.form-grid label,
.quote-form legend {
  color: var(--navy);
  font-weight: 900;
}

.select-field {
  display: block;
  margin-top: 1.35rem;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid #cfd9e6;
  border-radius: 0.75rem;
  font: inherit;
}

.quote-form select {
  cursor: pointer;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  outline: 3px solid rgba(7, 89, 199, 0.15);
}

.quote-form fieldset {
  margin: 1.35rem 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.55rem;
  gap: 0.65rem;
}

.choice {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  gap: 0.45rem;
  color: var(--text);
  background: var(--ice);
  border: 1px solid #d6e7f4;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.choice input {
  accent-color: var(--green);
}

.submit-button {
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
  cursor: pointer;
  font: 900 0.95rem/1 "Nunito", sans-serif;
}

.form-note {
  margin: 0.9rem 0 0;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding-block: 0 2.5rem;
  color: var(--text);
  background: var(--natural);
}

.site-footer::before {
  display: none;
}

.footer-winter-scene {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: #d9f1ff;
  border-top: 1px solid rgba(7, 89, 199, 0.08);
}

.footer-winter-scene::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 14%;
  background: linear-gradient(to bottom, transparent, var(--natural));
  content: "";
  pointer-events: none;
}

.footer-scene-heading {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0.55rem 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 89, 199, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(17, 82, 125, 0.12);
  text-align: center;
  transform: translateX(-50%);
}

.footer-scene-heading span {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-scene-heading strong {
  white-space: nowrap;
  font: 700 clamp(1rem, 2vw, 1.3rem)/1.15 "Fredoka", sans-serif;
  word-spacing: 0.14em;
}

.footer-winter-scene img {
  display: block;
  width: 100%;
  height: auto;
}

/* Click areas follow the social snowmen in the 1200 × 390 illustration. */
.footer-snowman-link {
  position: absolute;
  z-index: 3;
  border-radius: 45%;
  cursor: pointer;
}

.footer-snowman-link--google {
  left: 12.833333%;
  top: 41%;
  width: 11%;
  height: 41%;
}

.footer-snowman-link--instagram {
  left: 28.666667%;
  top: 41%;
  width: 11%;
  height: 41%;
}

.footer-snowman-link--tiktok {
  left: 44.5%;
  top: 41%;
  width: 11%;
  height: 41%;
}

.footer-snowman-link--facebook {
  left: 60.333333%;
  top: 41%;
  width: 11%;
  height: 41%;
}

.footer-snowman-link--yelp {
  left: 76.166667%;
  top: 41%;
  width: 11%;
  height: 41%;
}

.footer-details {
  padding-top: clamp(3.25rem, 5vw, 4.5rem);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.88rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy);
  font-weight: 800;
}

.footer-brand img {
  width: 68px;
  height: 88px;
  object-fit: contain;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a:not(.footer-brand) {
  color: var(--green);
  font-weight: 900;
}

.footer-credit {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-credit span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-credit img {
  width: 150px;
  height: auto;
}

:focus-visible {
  outline: 3px solid #62c9ff;
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .site-header {
    background: var(--natural);
  }

  .nav-shell {
    flex-wrap: wrap;
    padding-block: 1rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-block: 0.8rem 0.25rem;
    overflow-x: auto;
  }

  .nav-shell > .button {
    margin-left: auto;
  }

  .hero-grid {
    padding-top: 70px;
  }

  .benefit-grid,
  .service-grid,
  .process-grid,
  .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-featured {
    grid-column: span 12;
    aspect-ratio: 16 / 8;
  }

  .gallery-side {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 0;
    padding-block: 0.65rem;
    gap: 0.75rem;
  }

  .brand {
    width: 70px;
    min-width: 70px;
    height: 96px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-left: auto;
    padding: 0.65rem 1rem;
    gap: 0.55rem;
    color: var(--navy);
    background: var(--white);
    border: 2px solid rgba(6, 26, 67, 0.14);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(3, 20, 52, 0.1);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
    transition: transform 180ms ease;
  }

  .nav-toggle-icon {
    position: relative;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle-icon::before {
    top: -6px;
  }

  .nav-toggle-icon::after {
    top: 6px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0.4rem 0 0.65rem;
    gap: 0.45rem;
    overflow: visible;
  }

  .main-nav a {
    padding: 0.8rem 0.9rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(6, 26, 67, 0.09);
    border-radius: 0.7rem;
    text-align: center;
  }

  .main-nav a::after {
    right: 0.9rem;
    bottom: 0.45rem;
    left: 0.9rem;
  }

  .nav-ready .main-nav {
    display: none;
  }

  .nav-ready .main-nav.is-open {
    display: grid;
  }

  .nav-shell > .button {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .button-row {
    justify-content: center;
  }

  .hero-scene {
    min-height: 430px;
  }

  .hero-illustration {
    right: 50%;
    width: min(100%, 460px);
    max-height: 460px;
    transform: translateX(50%);
  }

  .benefit-grid,
  .service-grid,
  .process-grid,
  .pathway-grid,
  .interior-hero-grid,
  .story-grid,
  .split-section,
  .trust-grid,
  .contact-inner,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .interior-hero-grid {
    min-height: auto;
    text-align: center;
  }

  .interior-hero p:not(.eyebrow) {
    margin-inline: auto;
  }

  .interior-hero img {
    width: min(70%, 280px);
    justify-self: center;
  }

  .story-copy {
    max-width: none;
    text-align: center;
  }

  .story-copy h2 {
    margin-inline: auto;
  }

  .home-cta,
  .page-cta-inner {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-item,
  .gallery-featured {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }

  .gallery-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .split-section,
  .contact-inner {
    gap: 1rem;
  }

  .quote-intro {
    position: static;
  }

  .contact-inner {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-scene-heading {
    top: 0.55rem;
    padding: 0.35rem 0.75rem;
  }

  .footer-scene-heading span {
    font-size: 0.52rem;
  }

  .footer-scene-heading strong {
    font-size: 0.86rem;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-credit {
    align-items: center;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .button {
    width: 100%;
  }

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

  .form-heading {
    display: block;
  }

  .form-heading span {
    display: block;
    margin-top: 0.45rem;
  }

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

  .benefits,
  .process,
  .services,
  .faq,
  .home-pathways,
  .story-section {
    padding-block: 72px;
  }

  .quote {
    padding-block: 72px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
