@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --black: #080808;
  --ink: #111;
  --white: #f4f4f1;
  --paper: #e8e8e3;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(10, 10, 10, 0.16);
  --muted: #a8a8a3;
  --pad: clamp(22px, 5vw, 78px);
  --display: "Space Grotesk", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

.date-picker-button {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #bdbdb7;
  color: #171717;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-calendar {
  margin: 18px 0 28px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid #c9c9c3;
  background: #fff;
}

.calendar-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 14px;
}

.calendar-head strong {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.calendar-head button {
  height: 38px;
  border: 1px solid #d3d3ce;
  background: transparent;
  cursor: pointer;
}

.calendar-notice {
  margin-bottom: 14px;
  padding: 11px 13px;
  color: #8c2020;
  background: #f7dddd;
  font-size: 11px;
  font-weight: 700;
}

.calendar-week,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-week span {
  padding: 7px 0;
  color: #888;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  aspect-ratio: 1;
  min-height: 38px;
  border: 1px solid #e2e2dd;
  background: #f8f8f5;
  cursor: pointer;
}

.calendar-day.empty {
  visibility: hidden;
}

.calendar-day:disabled {
  color: #aaa;
  cursor: default;
}

.calendar-day.blocked {
  border-color: #e3b4b4;
  color: #a62c2c;
  background: #f8dddd;
  text-decoration: line-through;
}

.calendar-day.selected {
  color: #fff;
  background: #111;
}

.calendar-legend {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 14px 0 0;
  color: #777;
  font-size: 9px;
}

.calendar-legend i {
  width: 12px;
  height: 12px;
  background: #f8dddd;
  border: 1px solid #e3b4b4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.success-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
}

.brand {
  width: 158px;
  height: 32px;
  display: block;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  transition: opacity 180ms ease;
}

.main-nav a:hover {
  opacity: 0.55;
}

.nav-portal {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 15px;
}

.nav-portal span {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: white;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/hero.jpg") center 46% / cover no-repeat;
  transform: scale(1.035);
  animation: heroZoom 14s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  padding: 180px var(--pad) clamp(72px, 10vh, 116px);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font: 500 clamp(60px, 10vw, 142px) / 0.82 var(--display);
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span,
.booking-intro h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.hero-lead {
  max-width: 550px;
  margin: 36px 0 0;
  color: #d0d0cb;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button-light:hover {
  background: #fff;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform 180ms ease;
}

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

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-index div {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.scroll-mark {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  width: 1px;
  height: 110px;
  background: rgba(255, 255, 255, 0.22);
}

.scroll-mark span {
  display: block;
  width: 1px;
  height: 30px;
  background: white;
  animation: scrollLine 2.3s ease-in-out infinite;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 {
  animation-delay: 120ms;
}

.hero-lead {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 320ms;
}

.section-pad {
  padding: clamp(88px, 12vw, 170px) var(--pad);
}

.statement {
  background: var(--black);
}

.display-copy {
  max-width: 1220px;
  margin: 0;
  font: 500 clamp(39px, 6.6vw, 94px) / 1.02 var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.display-copy span {
  color: #62625f;
}

.statement-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.statement-meta > p {
  grid-column: 2;
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mini-stats {
  grid-column: 2;
  display: flex;
  gap: 44px;
  color: #8c8c88;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-stats span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mini-stats b {
  color: var(--white);
  font: 600 24px var(--display);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--dark-line);
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font: 600 clamp(54px, 8vw, 110px) / 0.88 var(--display);
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 320px;
  margin: 0;
  color: #666;
  font-size: 14px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 165px;
  border-bottom: 1px solid var(--dark-line);
  transition: padding 250ms ease, background-color 250ms ease;
}

.service-card:hover {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.55);
}

.service-number {
  color: #888;
  font: 500 11px var(--display);
}

.service-card h3 {
  margin: 0 0 9px;
  font: 500 clamp(25px, 3vw, 42px) var(--display);
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 640px;
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.6;
}

.service-arrow {
  font-size: 25px;
}

.pricing-note {
  display: grid;
  grid-template-columns: 90px minmax(0, 640px);
  gap: 26px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-line);
}

.pricing-note span {
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pricing-note p {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(44px, 9vw, 140px);
  align-items: center;
  min-height: 720px;
  background: #101010;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  max-height: 620px;
  display: block;
  object-fit: cover;
  object-position: 50% 44%;
  filter: grayscale(1) contrast(1.06);
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 20px;
  color: var(--black);
  background: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 720px;
}

.about-copy .about-intro {
  margin: 45px 0 26px;
  color: var(--white);
  font: 500 clamp(21px, 2.1vw, 31px) / 1.35 var(--display);
  letter-spacing: -0.025em;
}

.about-copy > p:not(.eyebrow):not(.about-intro) {
  max-width: 570px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-copy > p:last-of-type {
  margin-bottom: 36px;
}

.dark-link {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
  color: var(--white);
  background: #080808;
}

.booking-intro {
  position: sticky;
  top: 60px;
}

.booking-intro h2 {
  margin: 0;
  font: 500 clamp(48px, 5.7vw, 82px) / 0.95 var(--display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.booking-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.booking-steps {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #858581;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropoff-location {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.dropoff-location span,
.success-location span {
  color: #777;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dropoff-location strong {
  font: 500 21px/1.3 var(--display);
  letter-spacing: -0.02em;
}

.dropoff-location small {
  color: #888;
  font-size: 10px;
}

.booking-steps span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-steps b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #3f3f3d;
  border-radius: 50%;
  color: var(--white);
}

.booking-form {
  padding: clamp(25px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
}

.form-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dark-line);
  color: #666;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.field > span,
.engine-choice legend {
  color: #444;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid #a8a8a3;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 105px;
  resize: vertical;
  padding-top: 8px;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--black);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8d8d88;
}

.engine-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.engine-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.engine-choice label {
  cursor: pointer;
}

.engine-choice input {
  position: absolute;
  opacity: 0;
}

.engine-choice span {
  min-height: 53px;
  display: grid;
  place-items: center;
  border: 1px solid #afafa9;
  font: 700 14px var(--display);
  transition: all 180ms ease;
}

.engine-choice input:checked + span {
  color: white;
  background: var(--black);
  border-color: var(--black);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 25px;
  color: #555;
  font-size: 10px;
  line-height: 1.5;
}

.rush-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 4px 0 24px;
  padding: 18px;
  border: 1px solid #aaa9a4;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.rush-option:hover {
  border-color: var(--black);
}

.rush-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rush-box {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #888;
  color: transparent;
  background: transparent;
  font-size: 12px;
  transition: 180ms ease;
}

.rush-option input:checked + .rush-box {
  border-color: var(--black);
  color: white;
  background: var(--black);
}

.rush-copy {
  display: grid;
  gap: 5px;
}

.rush-copy b {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rush-copy small {
  max-width: 460px;
  color: #686863;
  font-size: 9px;
  line-height: 1.5;
}

.rush-option > strong {
  white-space: nowrap;
  font: 700 17px var(--display);
}

.consent input {
  margin: 2px 0 0;
  accent-color: #111;
}

.submit-button {
  width: 100%;
  justify-content: space-between;
  color: white;
  background: var(--black);
}

.submit-button b {
  font-size: 20px;
}

.form-note {
  margin: 14px 0 0;
  color: #73736e;
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 46px var(--pad);
  color: var(--black);
  background: var(--white);
}

.contact-strip p {
  margin: 0;
  font: 500 clamp(23px, 3vw, 42px) var(--display);
  letter-spacing: -0.04em;
}

.contact-strip a {
  display: flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

footer {
  padding: 85px var(--pad) 32px;
  background: #050505;
}

.footer-brand {
  display: block;
  margin-bottom: 80px;
  font: 600 clamp(45px, 10vw, 150px) / 0.85 var(--display);
  letter-spacing: -0.075em;
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 35px 0 60px;
  border-top: 1px solid var(--line);
}

.footer-meta > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-meta span {
  margin-bottom: 10px;
  color: #666;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-meta a,
.footer-meta p {
  margin: 0;
  color: #b7b7b2;
  font-size: 13px;
}

.footer-meta .footer-portal {
  width: fit-content;
  margin-top: 7px;
  padding-top: 9px;
  border-top: 1px solid #292929;
  color: #62625e;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #585854;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.success-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.success-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-card {
  position: relative;
  width: min(610px, 100%);
  padding: clamp(34px, 6vw, 66px);
  color: var(--black);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition: opacity 420ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.success-overlay.show .success-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.success-x {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  color: #777;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.success-check {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 25px;
  transform: scale(0.4) rotate(-20deg);
  transition: transform 600ms 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.success-overlay.show .success-check {
  transform: scale(1) rotate(0);
}

.success-card h2 {
  max-width: 500px;
  margin: 0;
  font: 600 clamp(30px, 5vw, 50px)/1.02 var(--display);
  letter-spacing: -0.05em;
}

.success-card > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0;
  color: #5d5d59;
  font-size: 14px;
  line-height: 1.7;
}

.success-location {
  display: grid;
  gap: 7px;
  margin: 30px 0;
  padding: 18px 0;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.success-location b {
  font-size: 13px;
}

.success-button {
  min-width: 170px;
  color: white;
  background: var(--black);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.25;
  }
  50% {
    transform: translateY(80px);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
  }

  .brand {
    width: 140px;
    height: 28px;
  }

  .menu-toggle {
    z-index: 3;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 7px;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    display: block;
    background: white;
    transition: transform 200ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 80px var(--pad);
    background: rgba(5, 5, 5, 0.98);
    font: 500 31px var(--display);
    letter-spacing: -0.04em;
    text-transform: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-portal {
    margin-top: 20px;
    font: 700 11px var(--body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-content {
    width: 100%;
  }

  .statement-meta,
  .booking,
  .about {
    grid-template-columns: 1fr;
  }

  .statement-meta > p,
  .mini-stats {
    grid-column: 1;
  }

  .about {
    gap: 60px;
  }

  .about-photo {
    width: min(630px, 100%);
  }

  .booking-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 800px;
  }

  .hero-image {
    background-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 66%);
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(55px, 18.5vw, 82px);
  }

  .hero-lead {
    max-width: 315px;
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 31px;
  }

  .hero-index,
  .scroll-mark {
    display: none;
  }

  .section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .display-copy {
    font-size: 11vw;
  }

  .statement-meta {
    gap: 28px;
    margin-top: 44px;
  }

  .statement-meta > p {
    font-size: 13px;
  }

  .mini-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .section-heading {
    display: block;
    padding-bottom: 28px;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .service-card {
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    min-height: 145px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card p {
    padding-right: 8px;
    font-size: 11px;
  }

  .service-card:hover {
    padding: 0;
  }

  .service-arrow {
    font-size: 18px;
  }

  .pricing-note {
    grid-template-columns: 32px 1fr;
    gap: 10px;
  }

  .about {
    min-height: 0;
  }

  .about-photo img {
    height: 520px;
  }

  .about-copy h2 {
    font-size: 60px;
  }

  .booking {
    gap: 48px;
  }

  .booking-intro h2 {
    font-size: 50px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form {
    margin-inline: calc(var(--pad) * -1);
  }

  .rush-option {
    grid-template-columns: auto 1fr;
  }

  .rush-option > strong {
    grid-column: 2;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-brand {
    margin-bottom: 55px;
    font-size: 14vw;
  }

  .footer-meta {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .success-overlay {
    padding: 14px;
  }

  .success-card {
    padding: 34px 24px 28px;
  }

  .success-check {
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
  }

  .success-card h2 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
