:root {
  --page-bg: #d7d4ce;
  --frame-bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #f2efea;
  --surface-strong: #111111;
  --text: #141414;
  --muted: #6e6c68;
  --line: rgba(20, 20, 20, 0.1);
  --line-strong: rgba(20, 20, 20, 0.16);
  --shadow: 0 30px 70px rgba(20, 20, 20, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --max-width: 1540px;
  --anchor-offset: 110px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #faf8f4 0%, #f4f1ec 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  overflow-x: hidden;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

#home,
#services,
#process,
#coverage,
#contact {
  scroll-margin-top: var(--anchor-offset);
}

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

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

.page-frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-width: none;
  margin: 0;
  padding: 0 42px 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.page-frame::before,
.page-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.page-frame::before {
  width: 78%;
  height: 540px;
  left: 11%;
  top: 84px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  opacity: 0.92;
}

.page-frame::after {
  width: 110%;
  height: 240px;
  left: -5%;
  bottom: -40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #111111;
  color: #f7f5f1;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__eyebrow {
  display: none;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav__links a,
.site-nav__phone {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 1rem;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__phone:hover,
.site-nav__phone:focus-visible {
  color: var(--text);
}

.site-nav__phone {
  display: none;
}

.nav-button {
  padding: 12px 22px !important;
  border-radius: var(--radius-pill);
  background: #111111;
  color: #f7f5f1 !important;
}

.menu-toggle {
  display: none;
  position: relative;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 4px));
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 4px));
}

.hero {
  padding: 42px 0 86px;
}

.hero-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-tag,
.contact-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: #56544f;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1,
.section-copy h2,
.workflow-copy h2,
.contact-copy h2 {
  margin: 20px 0 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero h1 {
  /* max-width: 10ch; */
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero h1 span {
  color: #9a9893;
}

.hero-lead,
.section-copy p,
.service-item p,
.workflow-copy p,
.workflow-step p,
.workflow-note p,
.coverage-card p,
.contact-copy p,
.contact-row p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-lead {
  max-width: 760px;
  margin: 24px auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 236, 0.76));
  box-shadow: 0 18px 34px rgba(20, 20, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-phone:hover,
.hero-phone:focus-visible {
  border-color: rgba(17, 17, 17, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(20, 20, 20, 0.12);
}

.hero-phone__label {
  padding: 0 8px 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-phone__label--mobile {
  display: none;
}

.hero-phone__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 187, 108, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(14, 16, 14, 0.98), rgba(26, 38, 31, 0.96));
  color: #f3f5ef;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.18);
}

.hero-bookings {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
  touch-action: pan-y;
}

.hero-bookings__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.hero-bookings__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-bookings__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-row {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 187, 108, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(14, 16, 14, 0.98), rgba(26, 38, 31, 0.96));
  box-shadow: 0 22px 42px rgba(11, 12, 11, 0.18);
  color: #f3f5ef;
}

.hero-bookings__stage {
  --booking-stack-depth: 24px;
  --booking-stack-step: 12px;
  position: relative;
  min-height: 190px;
  margin-top: 14px;
  padding-bottom: var(--booking-stack-depth);
  overflow-x: clip;
  pointer-events: none;
}

.hero-bookings__stage::before,
.hero-bookings__stage::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: var(--booking-stack-depth);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(61, 187, 108, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(18, 21, 18, 0.9), rgba(24, 31, 27, 0.88));
  pointer-events: none;
  transform-origin: top center;
  transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.56s ease;
}

.hero-bookings__stage::before {
  z-index: 1;
  opacity: 0.62;
  transform: translateY(var(--booking-stack-step)) scale(0.985);
}

.hero-bookings__stage::after {
  z-index: 0;
  opacity: 0.38;
  transform: translateY(var(--booking-stack-depth)) scale(0.968);
}

.hero-bookings__stage.is-animating::before {
  transform: translateY(calc(var(--booking-stack-step) - 3px)) scale(0.988);
}

.hero-bookings__stage.is-animating::after {
  transform: translateY(calc(var(--booking-stack-depth) - 5px)) scale(0.974);
}

.booking-row--overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
}

.booking-row.is-transitionable {
  will-change: opacity, transform;
}

.booking-row.is-pre-enter {
  opacity: 0.3;
  transform: translate3d(0, var(--booking-stack-depth), 0);
}

.booking-row.is-exiting {
  animation: bookingCardExit 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.booking-row.is-entering {
  animation: bookingCardEnter 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bookingCardEnter {
  0% {
    opacity: 0.3;
    transform: translate3d(0, var(--booking-stack-depth), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bookingCardExit {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -34px, 0);
  }
}

@keyframes bookingLaneTextIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.8em, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.booking-row__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.booking-row__lane-group {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

.booking-row__status {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 245, 239, 0.82);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-row__lane {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.18em;
  min-width: 0;
  max-width: 100%;
  margin-top: 12px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.booking-row__lane-waypoint,
.booking-row__lane-connector {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  transform: translate3d(0, 0, 0);
  transform-origin: left bottom;
}

.booking-row__lane-connector {
  color: rgba(243, 245, 239, 0.52);
  font-weight: 500;
}

.booking-row.is-transitionable .booking-row__lane-waypoint,
.booking-row.is-transitionable .booking-row__lane-connector {
  will-change: opacity, transform;
}

.booking-row.is-pre-enter .booking-row__lane-waypoint,
.booking-row.is-pre-enter .booking-row__lane-connector {
  opacity: 0;
  transform: translate3d(0, 0.8em, 0);
}

.booking-row.is-entering .booking-row__lane-waypoint,
.booking-row.is-entering .booking-row__lane-connector {
  animation: bookingLaneTextIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking-row.is-entering .booking-row__lane-waypoint--origin {
  animation-delay: 0.08s;
}

.booking-row.is-entering .booking-row__lane-connector {
  animation-delay: 0.16s;
}

.booking-row.is-entering .booking-row__lane-waypoint--destination {
  animation-delay: 0.24s;
}

.booking-highlight {
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(100, 255, 156, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(43, 124, 78, 0.22), rgba(255, 255, 255, 0.04));
  text-align: right;
}

.booking-highlight__label,
.booking-stat__label {
  display: block;
  color: rgba(243, 245, 239, 0.56);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-highlight__value {
  display: block;
  margin-top: 7px;
  color: #60f59a;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

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

.booking-stat {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.booking-stat__value {
  display: block;
  margin-top: 8px;
  color: #f3f5ef;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-dark,
.button-contrast {
  background: #111111;
  color: #f7f5f1;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.26);
  color: #f7f5f1;
}

.hero-cards {
  display: grid;
  grid-template-columns: 0.88fr 1.18fr 0.88fr;
  gap: 28px;
  align-items: end;
  margin-top: 78px;
}

.hero-card,
.service-item,
.workflow-visual,
.coverage-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-card-angled {
  transform: rotate(-2deg);
}

.hero-card-right {
  transform: rotate(2deg);
}

.hero-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-card-body {
  padding: 22px 22px 24px;
}

.hero-card-body h3,
.service-item h3,
.workflow-step h3,
.coverage-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-card-body p,
.service-item p,
.coverage-card p {
  margin: 12px 0 0;
}

.hero-card-featured {
  position: relative;
  padding: 0;
  transform: none;
  min-height: 520px;
}

.hero-card-link {
  position: relative;
  display: block;
  min-height: 520px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.hero-card-featured .hero-card-link::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 82, 0.58), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(58, 160, 255, 0.5), transparent 34%),
    radial-gradient(circle at 46% 78%, rgba(255, 194, 92, 0.34), transparent 34%),
    radial-gradient(circle at 74% 70%, rgba(48, 216, 190, 0.18), transparent 30%),
    linear-gradient(135deg, #0a0f14 0%, #11263b 48%, #0d1822 100%);
  background-size: 160% 160%;
  transform: scale(1.08);
  animation: heroGradientDrift 16s ease-in-out infinite alternate;
}

.hero-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.16) 0%, rgba(5, 8, 12, 0.5) 100%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 46%);
}

.hero-card-overlay {
  position: absolute;
  top: 50%;
  left: 22px;
  right: 22px;
  z-index: 1;
  padding: 24px;
  background: none;
  border: 0;
  backdrop-filter: none;
  transform: translateY(-50%);
}

.hero-card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-card-overlay h3 {
  margin: 16px 0 0;
  max-width: 11ch;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-shadow: 0 12px 28px rgba(3, 6, 10, 0.35);
}

.hero-card-overlay p {
  max-width: 32ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  text-shadow: 0 8px 22px rgba(3, 6, 10, 0.28);
}

.hero-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.96rem;
  font-weight: 600;
  text-shadow: 0 8px 18px rgba(3, 6, 10, 0.28);
}

.hero-card-cta::after {
  content: ">";
  font-size: 0.9rem;
}

@keyframes heroGradientDrift {
  0% {
    transform: scale(1.08) translate3d(-3%, -2%, 0);
    background-position: 0% 0%;
  }

  50% {
    transform: scale(1.14) translate3d(2%, -1%, 0);
    background-position: 56% 30%;
  }

  100% {
    transform: scale(1.1) translate3d(-1%, 3%, 0);
    background-position: 100% 100%;
  }
}

.section {
  padding: 74px 0 0;
}

.section-copy {
  max-width: 760px;
}

.section-copy-compact {
  max-width: 680px;
}

.section-copy h2,
.workflow-copy h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

.section-copy p,
.workflow-copy > p,
.contact-copy > p {
  margin-top: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-item {
  padding: 26px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: #44413d;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.service-item h3 {
  margin-top: 18px;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  align-items: stretch;
}

.workflow-copy {
  padding-right: 12px;
}

.workflow-steps {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--line);
}

.workflow-step span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.06);
  color: #3c3935;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.workflow-step p {
  margin: 10px 0 0;
}

.workflow-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.workflow-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.workflow-note strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.workflow-note p {
  margin: 10px 0 0;
}

.coverage-shell {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.coverage-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.coverage-card p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: stretch;
  margin-top: 86px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #111111;
  color: #f7f5f1;
}

.contact-copy .contact-tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(247, 245, 241, 0.76);
}

.contact-copy p {
  color: rgba(247, 245, 241, 0.68);
}

.contact-section .hero-actions {
  justify-content: flex-start;
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contact-row + .contact-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row span {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 245, 241, 0.54);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-row a,
.contact-row p {
  margin: 0;
  color: #f7f5f1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.site-footer {
  padding: 24px 0 10px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(8px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #faf8f4 0%, #f2eee8 100%);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.18);
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.contact-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #111111;
}

.contact-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-modal__header {
  max-width: 580px;
}

.contact-modal__header h2 {
  margin: 20px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.contact-modal__header p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-form {
  margin-top: 28px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3e3b37;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(20, 20, 20, 0.34);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 144px;
}

.contact-form__field--full {
  margin-top: 16px;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: 22px;
}

.contact-form__status {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.contact-form__status[data-state="success"] {
  color: #15803d;
}

.contact-form__status[data-state="error"] {
  color: #b42318;
}

.contact-form__submit {
  flex-shrink: 0;
  min-width: 220px;
}

.contact-form__dismiss {
  color: #111111;
  display: none;
}

.contact-form__submit:disabled {
  cursor: progress;
  opacity: 0.75;
}

.site-toast {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 140;
  max-width: min(94vw, 430px);
}

.site-toast[hidden] {
  display: none !important;
}

.site-toast__card {
  position: relative;
  display: grid;
  gap: 0;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0) 34%),
    linear-gradient(135deg, rgba(31, 38, 34, 0.98), rgba(22, 22, 23, 0.98));
  box-shadow: 0 28px 60px rgba(9, 11, 10, 0.32);
  color: #f8faf9;
  opacity: 0;
  transform: translateY(-16px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-toast.is-visible .site-toast__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-toast__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-right: 34px;
}

.site-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3ef06d;
  box-shadow: 0 0 0 10px rgba(62, 240, 109, 0.12);
}

.site-toast__icon svg {
  width: 22px;
  height: 22px;
  fill: #073d1c;
}

.site-toast__message {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.site-toast__close {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.site-toast__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.site-toast__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-toast__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .hero-card-featured .hero-card-link::before {
    animation: none;
    transform: scale(1.08);
  }

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

  .button,
  .menu-toggle span,
  .site-nav,
  .site-nav__eyebrow,
  .site-nav__links a,
  .site-nav__actions,
  .hero-phone,
  .booking-row.is-transitionable {
    transition: none;
  }

  .booking-row.is-entering,
  .booking-row.is-exiting {
    animation: none !important;
  }

  .site-toast__card {
    transition: none;
  }

  .booking-row.is-pre-enter .booking-row__lane-waypoint,
  .booking-row.is-pre-enter .booking-row__lane-connector,
  .booking-row.is-entering .booking-row__lane-waypoint,
  .booking-row.is-entering .booking-row__lane-connector {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1220px) {
  .service-grid,
  .contact-section,
  .workflow {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1080px) {
  .hero-cards,
  .coverage-grid,
  .contact-section,
  .workflow {
    grid-template-columns: 1fr;
  }

  .hero-card-angled,
  .hero-card-right {
    transform: none;
  }

  .workflow-copy {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .page-frame {
    width: 100%;
    margin: 0;
    padding: 0 18px 22px;
  }

  :root {
    --anchor-offset: 80px;
  }

  .site-header {
    flex-wrap: nowrap;
    padding: 18px 0 8px;
    z-index: 110;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 140;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(14px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] {
    background: #111111;
    border-color: #111111;
  }

  .menu-toggle[aria-expanded="true"] span {
    background: #f7f5f1;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 112px 24px 34px;
    background: linear-gradient(180deg, #faf7f1 0%, #efe6d9 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-2%);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav::before,
  .site-nav::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }

  .site-nav::before {
    width: min(70vw, 420px);
    height: min(70vw, 420px);
    left: 50%;
    top: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
    transform: translateX(-50%);
  }

  .site-nav::after {
    width: min(64vw, 320px);
    height: min(64vw, 320px);
    left: 50%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(227, 207, 154, 0.38), rgba(227, 207, 154, 0));
    transform: translateX(-50%);
  }

  .site-nav__eyebrow {
    display: inline-flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.66);
    color: #5d5952;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.32s ease, transform 0.32s ease;
  }

  .site-nav__links {
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .site-nav__links a {
    padding: 0;
    background: transparent;
    color: #111111;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.9rem, 12vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 0.88;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.32s ease, transform 0.32s ease;
  }

  .site-nav__actions {
    position: relative;
    z-index: 1;
    width: min(100%, 340px);
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.32s ease, transform 0.32s ease;
  }

  .site-nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.54);
    color: #4f4b45;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-nav__actions .nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 62px;
    padding: 0 18px !important;
    background: #111111;
    color: #f7f5f1 !important;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 20px 34px rgba(17, 17, 17, 0.16);
  }

  .site-nav.is-open .site-nav__eyebrow,
  .site-nav.is-open .site-nav__links a,
  .site-nav.is-open .site-nav__actions {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open .site-nav__eyebrow {
    transition-delay: 0.04s;
  }

  .site-nav.is-open .site-nav__links a:nth-child(1) {
    transition-delay: 0.08s;
  }

  .site-nav.is-open .site-nav__links a:nth-child(2) {
    transition-delay: 0.12s;
  }

  .site-nav.is-open .site-nav__links a:nth-child(3) {
    transition-delay: 0.16s;
  }

  .site-nav.is-open .site-nav__links a:nth-child(4) {
    transition-delay: 0.2s;
  }

  .site-nav.is-open .site-nav__actions {
    transition-delay: 0.24s;
  }

  .hero-bookings {
    margin-top: 26px;
    padding: 16px;
    border-radius: 24px;
  }

  .hero-bookings__topline {
    flex-direction: column;
    align-items: flex-start;
    padding: 2px 2px 12px;
  }

  .hero-bookings__note {
    max-width: 30ch;
  }

  .hero-bookings__stage {
    --booking-stack-depth: 20px;
    --booking-stack-step: 10px;
    min-height: 228px;
  }

  .booking-row {
    gap: 16px;
    padding: 18px;
  }

  .booking-row__top {
    flex-direction: column;
  }

  .booking-highlight {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .booking-highlight__value {
    font-size: 1.8rem;
  }

  .booking-row__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-stat--equipment {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 34px 0 62px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-phone {
    width: auto;
    max-width: 100%;
    justify-content: space-between;
    padding: 8px;
  }

  .hero-phone__label {
    padding: 0 4px 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-phone__label--desktop {
    display: none;
  }

  .hero-phone__label--mobile {
    display: inline;
  }

  .hero-phone__number {
    padding: 11px 16px;
    font-size: 1rem;
  }

  .hero-cards {
    margin-top: 44px;
    gap: 18px;
  }

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

  .hero-card-featured {
    min-height: 380px;
  }

  .hero-card-link {
    min-height: 380px;
  }

  .hero-card-overlay {
    top: 50%;
    left: 16px;
    right: 16px;
    padding: 20px;
    transform: translateY(-50%);
  }

  .hero-card-overlay h3 {
    max-width: 100%;
    font-size: 2rem;
  }

  .section {
    padding-top: 58px;
  }

  .coverage-shell,
  .contact-section {
    padding: 22px;
  }

  .contact-section {
    margin-top: 62px;
  }

  .contact-section .hero-actions {
    justify-content: center;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .contact-modal {
    padding: 0;
  }

  .contact-modal__dialog {
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding: 22px 18px 18px;
    border-radius: 0;
  }

  .contact-modal__close {
    display: none;
  }

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

  .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-form__dismiss {
    display: inline-flex;
    width: 100%;
  }

  .site-toast {
    right: 12px;
    top: 12px;
    left: 12px;
    max-width: none;
  }

  .site-toast__card {
    gap: 18px;
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

}

@media (max-width: 560px) {
  .hero-phone {
    gap: 8px;
  }

  .hero-phone__number {
    font-size: 0.98rem;
  }

  .hero-bookings {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-bookings__topline {
    gap: 6px;
    padding: 0 0 8px;
  }

  .hero-bookings__eyebrow {
    padding: 6px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-bookings__note {
    display: none;
  }

  .hero-bookings__stage {
    --booking-stack-depth: 16px;
    --booking-stack-step: 8px;
    min-height: 0;
    margin-top: 10px;
  }

  .booking-row {
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
  }

  .booking-row__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .booking-row__status {
    padding: 5px 9px;
    font-size: 0.68rem;
  }

  .booking-row__lane {
    margin-top: 8px;
    font-size: 1.02rem;
    line-height: 1.04;
  }

  .booking-highlight {
    width: auto;
    min-width: 108px;
    padding: 8px 10px;
    border-radius: 16px;
    text-align: right;
  }

  .booking-highlight__label {
    font-size: 0.58rem;
  }

  .booking-highlight__value {
    margin-top: 4px;
    font-size: 1.34rem;
  }

  .booking-row__stats {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-stat {
    padding: 10px 8px;
    border-radius: 14px;
  }

  .booking-stat--equipment {
    display: none;
  }

  .booking-stat__label {
    font-size: 0.6rem;
  }

  .booking-stat__value {
    margin-top: 4px;
    font-size: 0.84rem;
  }
}
