:root {
  color-scheme: only light;
  --navy: #09235f;
  --navy-soft: #0d347f;
  --blue: #1656c7;
  --red: #ed1b24;
  --red-soft: #ff5a5f;
  --ink: #10283a;
  --muted: #617282;
  --paper: #f6f8f9;
  --white: #ffffff;
  --line: #d9e2e8;
  --radius: 16px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .94;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .98;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

p {
  max-width: 68ch;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding: 10px clamp(20px, 5vw, 80px);
  color: var(--white);
  background: rgba(7, 24, 39, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  flex: 0 1 320px;
}

.brand img {
  width: 320px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.site-header nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: .9rem;
  font-weight: 700;
  color: #c7d5df;
}

.site-header nav a,
.site-footer a,
.inline-link {
  transition: color 180ms ease-out;
}

.site-header nav a:hover,
.site-footer a:hover,
.inline-link:hover {
  color: var(--red-soft);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms var(--ease-out), background-color 160ms ease-out, color 160ms ease-out, border-color 160ms ease-out;
}

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

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

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: .9rem;
}

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

.button-red:hover {
  background: #c9121b;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 72px);
  min-height: min(820px, calc(100dvh - 78px));
  padding: clamp(58px, 8vw, 120px) clamp(20px, 7vw, 112px);
  color: var(--white);
  background: var(--navy);
}

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

.hero-location,
.section-label {
  margin-bottom: 20px;
  color: var(--red-soft);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 730px;
}

.hero-lead {
  max-width: 590px;
  margin-top: 28px;
  color: #c9d6df;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: 20px;
  color: #e8f2fa;
  font-size: .94rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.hero-rating:hover { text-decoration-color: currentColor; }
.hero-rating strong { color: var(--white); font-size: 1.13rem; }
.hero-rating .rating-star { color: #ffc44d; font-size: 1.2rem; line-height: 1; }
.rating-count { margin-left: 7px; color: #c9d6df; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #a8bbc8;
  font-size: .82rem;
}

.hero-facts span {
  display: flex;
  flex-direction: column;
}

.hero-facts strong {
  color: var(--white);
  font-size: .93rem;
}

.hero-media {
  position: relative;
  height: 510px;
  overflow: hidden;
  border-radius: 16px 82px 16px 16px;
  background: #dce8f8;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .34);
  pointer-events: none;
}

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

.section {
  padding: clamp(82px, 11vw, 158px) clamp(20px, 7vw, 112px);
}

.section-intro {
  max-width: 840px;
}

.section-intro.narrow {
  max-width: 680px;
}

.section-intro h2 {
  color: var(--navy);
}

.section-label {
  color: var(--red);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(36px, 9vw, 150px);
  background: var(--white);
}

.statement-copy {
  align-self: end;
  color: var(--muted);
  font-size: 1.3rem;
}

.statement-copy p+p {
  margin-top: 20px;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  display: flex;
  flex-direction: column;
  min-height: 255px;
  padding: 24px;
  background: var(--white);
}

.service-item-blue {
  color: var(--white);
  background: var(--blue);
}

.service-item-red {
  color: var(--white);
  background: var(--red);
}

.service-item-dark {
  color: var(--white);
  background: var(--navy-soft);
}

.service-item-light {
  color: var(--navy);
}

.service-mark {
  margin-bottom: auto;
  font-size: .78rem;
  font-weight: 900;
  opacity: .68;
}

.service-item h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}

.service-item p {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  opacity: .82;
}

.vehicle-showcase {
  margin-top: clamp(40px, 5vw, 64px);
}

.vehicle-showcase h3 { color: var(--navy); font-size: clamp(1.65rem, 2.6vw, 2.4rem); }
.vehicle-showcase > p { margin-top: 8px; color: var(--muted); }

.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.vehicle-gallery figure:nth-child(-n+3) { grid-column: span 2; }
.vehicle-gallery figure:nth-child(n+4) { grid-column: span 3; }

.vehicle-gallery figure {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7edf4;
}

.vehicle-gallery figure:nth-child(even) { background: #dce8f8; }
.vehicle-gallery img { width: 100%; height: 180px; padding: 18px 12px 0; object-fit: contain; object-position: center bottom; }
.vehicle-gallery figcaption { padding: 12px 18px 16px; color: var(--navy); font-weight: 800; }
.vehicle-gallery:focus-visible { outline-offset: 6px; }

@media (min-width: 901px) {
  .vehicle-gallery img { height: 240px; }
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .vehicle-gallery img {
    transform-origin: center bottom;
    transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
  }

  .vehicle-gallery figure:hover img { transform: scale(1.13); }
  .vehicle-gallery:has(figure:hover) figure:not(:hover) img { transform: scale(.84); opacity: .66; }
}

.equipment {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(38px, 8vw, 125px);
  align-items: center;
  background: var(--white);
}

.equipment-media {
  min-width: 0;
  min-height: 590px;
}

.equipment-stack {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.equipment-card {
  position: absolute;
  inset: 0 48px 48px 0;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  padding: 24px 24px 0;
  overflow: hidden;
  border-radius: 16px;
  background: #edf3ff;
  opacity: 0;
  transform: translate3d(48px, 48px, 0) scale(.9);
  transition: transform 500ms var(--ease-in-out), opacity 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
  pointer-events: none;
}

.equipment-card[data-stack-position="0"] {
  z-index: 4;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 24px 52px rgba(9, 35, 95, .16);
  pointer-events: auto;
}

.equipment-card[data-stack-position="1"] {
  z-index: 3;
  opacity: .76;
  transform: translate3d(16px, 16px, 0) scale(.965);
  box-shadow: 0 16px 34px rgba(9, 35, 95, .11);
}

.equipment-card[data-stack-position="2"] {
  z-index: 2;
  opacity: .42;
  transform: translate3d(32px, 32px, 0) scale(.93);
}

.equipment-card img {
  width: 100%;
  height: 420px;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.equipment-card figcaption {
  padding: 14px 4px 18px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.equipment-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding-right: 48px;
}

.equipment-counter {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.equipment-buttons {
  display: flex;
  gap: 8px;
}

.equipment-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: color 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.equipment-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equipment-button:active {
  transform: scale(.95);
}

@media (hover: hover) and (pointer: fine) {
  .equipment-button:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
  }
}

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

.equipment-copy h2 {
  margin-bottom: 27px;
}

.equipment-copy p:not(.section-label) {
  color: var(--muted);
}

.equipment-copy p+p {
  margin-top: 18px;
}

.inline-link {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--red);
  font-weight: 900;
}

.work {
  background: var(--paper);
}

.work-heading {
  margin-bottom: 48px;
}

.gallery {
  overflow: hidden;
  border-radius: 16px;
}

.gallery:focus-visible {
  outline-offset: 8px;
}

.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: gallery-drift 34s linear infinite;
}

.gallery:hover .gallery-track,
.gallery:focus-within .gallery-track {
  animation-play-state: paused;
}

.gallery-track figure {
  flex: 0 0 clamp(300px, 38vw, 520px);
  height: 420px;
  overflow: hidden;
  background: var(--navy);
}

.gallery-track .work-portrait {
  flex-basis: clamp(250px, 27vw, 350px);
}

.gallery-track figure:first-child {
  border-radius: 16px 70px 16px 16px;
}

.gallery-track figure:nth-child(3),
.gallery-track figure:last-child {
  border-radius: 16px 16px 16px 70px;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease-out);
}

.gallery-track figure:hover img {
  transform: scale(1.035);
}

.reviews {
  background: var(--white);
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(60px, 7vw, 100px);
}

.reviews .inline-link { margin-top: 20px; }

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 52px;
  margin-top: 38px;
}

.review {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.review-stars { color: #f9d20f; letter-spacing: .12em; font-size: 2rem; }
.review-star-empty { color: var(--muted); }
.review blockquote { margin: 13px 0 18px; max-width: 46ch; font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 650; line-height: 1.4; }
.review figcaption { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .9rem; }
.review figcaption strong { color: var(--navy); }
.review figcaption span { color: var(--muted); }

@keyframes gallery-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.contact {
  padding-top: clamp(64px, 9vw, 110px);
  padding-bottom: clamp(64px, 9vw, 110px);
  color: var(--white);
  background: var(--navy);
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 38px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-panel h2 {
  max-width: 850px;
  color: var(--white);
}

.contact-panel p:not(.section-label) {
  margin-top: 22px;
  color: #c8d6df;
}

.contact-panel .button {
  flex: 0 0 auto;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-top: 30px;
  color: #c8d6df;
}

.contact-details div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-details strong {
  color: var(--red-soft);
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px clamp(20px, 7vw, 112px);
  color: #b3c4cf;
  background: #04111c;
  font-size: .88rem;
}

.site-footer img {
  width: 260px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-footer div {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-footer a {
  color: var(--red-soft);
  font-weight: 800;
}

.mobile-bar {
  display: none;
}

.map-wrap {
  position: relative;
  margin-top: 42px;
  overflow: hidden;
  border-radius: 16px;
  background: #dce8f5;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(.78) contrast(1.02);
}

.map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: .85rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(7, 24, 39, .18);
}

@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }

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

  .hero-media {
    order: -1;
    height: 380px;
  }

  .statement,
  .equipment {
    grid-template-columns: 1fr;
  }

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

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

  .vehicle-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-gallery figure { grid-column: auto; }
  .vehicle-gallery figure:last-child { grid-column: span 2; }

  .gallery-track figure {
    height: 330px;
  }

  .contact-panel {
    align-items: start;
    flex-direction: column;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .review-list { gap: 30px; }

  .contact-details div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .site-header {
    min-height: 68px;
    padding: 8px 17px;
  }

  .brand {
    flex-basis: 190px;
  }

  .brand img {
    width: 190px;
    height: 42px;
  }

  .site-header .button {
    min-height: 38px;
    padding: 9px 13px;
    font-size: .78rem;
  }

  .hero {
    gap: 30px;
    padding: 34px 20px 64px;
  }

  .hero-media {
    height: 280px;
    border-radius: 14px 50px 14px 14px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .hero-facts span:last-child {
    grid-column: span 2;
  }

  .section {
    padding: 76px 20px;
  }

  .reviews { padding-top: 56px; padding-bottom: 56px; }
  .review-list { grid-template-columns: 1fr; gap: 26px; margin-top: 30px; }

  .statement {
    gap: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .service-item {
    min-height: 190px;
  }

  .vehicle-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .vehicle-gallery figure { flex: 0 0 min(74vw, 280px); scroll-snap-align: start; }

  .work-heading {
    margin-bottom: 34px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-grid figure,
  .work-grid figure:last-child {
    min-height: 280px;
    grid-column: auto;
    border-radius: 14px;
  }

  .contact-panel {
    padding-bottom: 44px;
  }

  .contact-panel .button {
    width: 100%;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-details div:first-child {
    grid-column: auto;
  }

  .site-footer {
    display: block;
    padding: 28px 20px 92px;
  }

  .site-footer img {
    width: 240px;
    margin-bottom: 18px;
  }

  .site-footer div {
    justify-content: space-between;
  }

  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 66px;
    padding: 9px 12px;
    background: rgba(4, 17, 28, .98);
    box-shadow: 0 -10px 28px rgba(4, 17, 28, .2);
  }

  .mobile-bar a {
    color: #c8d6df;
    font-size: .76rem;
    font-weight: 800;
  }

  .mobile-bar .mobile-contact {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
  }

  .equipment-media {
    min-height: 420px;
  }

  .equipment-stack {
    min-height: 350px;
  }

  .equipment-card {
    inset: 0 24px 24px 0;
    padding: 18px 18px 0;
  }

  .equipment-card[data-stack-position="1"] {
    transform: translate3d(8px, 8px, 0) scale(.97);
  }

  .equipment-card[data-stack-position="2"] {
    transform: translate3d(16px, 16px, 0) scale(.94);
  }

  .equipment-card img {
    min-height: 0;
    height: 275px;
  }

  .equipment-controls {
    padding-right: 24px;
  }

  .map-wrap iframe {
    height: 270px;
  }

  .map-link {
    right: 12px;
    bottom: 12px;
    font-size: .76rem;
  }
}

@media (min-width: 1200px) {

  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: max(20px, calc((100vw - 1240px) / 2));
    padding-right: max(20px, calc((100vw - 1240px) / 2));
  }
}

/* Frost welcome: one authored moment, dismissed immediately by the visitor. */
body.frost-locked { overflow: hidden; }
.frost-gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; overflow: hidden; color: var(--navy); background: rgba(232, 241, 255, .54); backdrop-filter: blur(12px) saturate(.72) contrast(.94); -webkit-backdrop-filter: blur(12px) saturate(.72) contrast(.94); }
.frost-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: 1; transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out); }
.frost-piece { position: absolute; width: min(96vw, 1180px); max-width: none; user-select: none; mix-blend-mode: screen; opacity: .72; filter: saturate(.82) brightness(1.08); transform-origin: center; transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out); }
.frost-piece-a { top: -43%; left: -26%; transform: rotate(-12deg); }
.frost-piece-b { top: -42%; right: -26%; transform: rotate(82deg); }
.frost-piece-c { right: -28%; bottom: -43%; transform: rotate(174deg); }
.frost-piece-d { bottom: -43%; left: -28%; transform: rotate(266deg); }
.frost-piece-e { top: -20%; left: -18%; width: min(138vw, 1500px); opacity: .42; transform: rotate(38deg); }
.frost-prompt { position: relative; z-index: 1; display: grid; justify-items: center; gap: 16px; max-width: min(90vw, 420px); padding: 28px; text-align: center; transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out); }
.frost-prompt p { color: #f7fbff; font-size: clamp(1.4rem, 3vw, 2.25rem); font-weight: 900; line-height: 1.05; letter-spacing: -.035em; text-wrap: balance; text-shadow: 0 1px 0 rgba(255, 255, 255, .95), 0 0 5px rgba(173, 213, 255, .95), 0 3px 16px rgba(9, 35, 95, .65); -webkit-text-stroke: 1px rgba(190, 224, 255, .68); }
.frost-prompt span { color: var(--navy-soft); font-size: .82rem; }
.frost-enter { min-width: 150px; box-shadow: 0 12px 28px rgba(9, 35, 95, .2); }

@media (max-width: 600px) {
  .frost-piece { width: 132vw; opacity: .7; }
  .frost-piece-a { top: -38%; left: -48%; }
  .frost-piece-b { top: -36%; right: -48%; }
  .frost-piece-c { right: -48%; bottom: -38%; }
  .frost-piece-d { bottom: -38%; left: -48%; }
  .frost-piece-e { top: -13%; left: -19%; width: 155vw; opacity: .46; }
  .frost-prompt { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .frost-gate, .frost-layer, .frost-prompt, .frost-piece { transition-duration: 120ms; }
  .frost-layer { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* Frost sequence: each texture grows in and retracts at the same pace. */
.frost-piece {
  --piece-opacity: .72;
  --piece-transform: rotate(0deg);
  --piece-delay: 0s;
  opacity: 0;
  transform: scale(.84);
  animation: frost-piece-in 1.6s var(--piece-delay) var(--ease-out) both;
}
.frost-piece-a { --piece-opacity: .72; --piece-transform: none; --piece-delay: .05s; }
.frost-piece-b { --piece-opacity: .72; --piece-transform: none; --piece-delay: .16s; }
.frost-piece-c { --piece-opacity: .72; --piece-transform: none; --piece-delay: .27s; }
.frost-piece-d { --piece-opacity: .72; --piece-transform: none; --piece-delay: .38s; }
.frost-piece-e { --piece-opacity: .46; --piece-transform: none; --piece-delay: .5s; }
@keyframes frost-piece-in {
  from { opacity: 0; transform: scale(.84) rotate(0deg); }
  to { opacity: var(--piece-opacity); transform: var(--piece-transform); }
}
@keyframes frost-prompt-in {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.frost-prompt { animation: frost-prompt-in 420ms .72s var(--ease-out) both; }
.frost-enter {
  color: #09235f;
  background: #eef9ff;
  border: 1px solid rgba(255, 255, 255, .96);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .95), 0 0 5px rgba(158, 211, 255, .65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .98), inset 0 -3px 0 rgba(137, 190, 235, .3), 0 0 0 1px rgba(182, 222, 255, .65), 0 12px 28px rgba(9, 35, 95, .24);
}
.frost-enter:hover { color: #061a4b; background: #ffffff; border-color: #ffffff; box-shadow: inset 0 1px 0 #ffffff, inset 0 -3px 0 rgba(137, 190, 235, .38), 0 0 0 2px rgba(182, 222, 255, .72), 0 14px 30px rgba(9, 35, 95, .28); }
.frost-gate { transition: opacity 300ms var(--ease-out); }
.frost-gate.is-clearing { opacity: 0; transition-delay: 1800ms; }

@media (prefers-reduced-motion: reduce) {
  .frost-piece, .frost-prompt { animation: none; opacity: var(--piece-opacity, 1); transform: var(--piece-transform, none); }
  .frost-gate { transition-duration: 120ms; }
  .frost-gate.is-clearing { transition-delay: 0s; }
}

@media (prefers-reduced-motion: reduce) {

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

  .gallery {
    overflow-x: auto;
  }
}

/* Desktop rhythm: preserve the mobile composition and tighten only wide layouts. */
@media (min-width: 901px) {
  .hero {
    min-height: calc(100dvh - 78px);
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5vw, 5.25rem);
  }

  .hero-location {
    margin-bottom: 14px;
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-media {
    height: clamp(410px, calc(100svh - 162px), 590px);
  }

  .hero-facts {
    margin-top: 28px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (min-width: 1200px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: max(20px, calc((100vw - 1120px) / 2));
    padding-right: max(20px, calc((100vw - 1120px) / 2));
  }
}
