:root {
  --ink: #111316;
  --ink-2: #1a1d21;
  --ink-3: #262a2f;
  --paper: #f4f3ef;
  --white: #ffffff;
  --muted: #666b72;
  --line: #d9d9d4;
  --accent: #ffb400;
  --accent-strong: #f3a700;
  --accent-soft: #fff0be;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 0.84rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.header-call {
  display: grid;
  gap: 1px;
  padding-left: 24px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  text-align: right;
}

.header-call span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 1rem;
  letter-spacing: 0.015em;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.98) 0%, rgba(12, 14, 16, 0.88) 35%, rgba(12, 14, 16, 0.36) 66%, rgba(12, 14, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 30%, rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 124px;
  padding-bottom: 70px;
}

.hero-copy {
  width: min(100%, 680px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
.price-tab:focus-visible,
.copy-address:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 180, 0, 0.48);
  outline-offset: 3px;
}

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

.button-primary {
  color: var(--ink);
  background: var(--accent);
}

.button-primary:hover {
  background: #ffc12b;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

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

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

.button-dark:hover {
  background: var(--ink-3);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-facts svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-facts span {
  display: grid;
  gap: 2px;
}

.hero-facts small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 0.92rem;
  font-weight: 750;
}

.quick-strip {
  color: var(--white);
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.quick-grid > div {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-grid b {
  color: var(--accent);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.quick-grid span {
  display: grid;
  gap: 2px;
}

.quick-grid strong {
  font-size: 1rem;
}

.quick-grid small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.83rem;
}

.section {
  padding: 112px 0;
  scroll-margin-top: 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading > div {
  flex: 1 1 auto;
}

.section-heading h2,
.contact-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section-heading > p {
  width: min(100%, 440px);
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e0e0db;
  box-shadow: 0 10px 35px rgba(20, 20, 20, 0.04);
}

.service-card-featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #b5b8ba;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.35);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: var(--ink);
  background: var(--accent);
}

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

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

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

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  color: inherit;
  border-top: 1px solid #e6e6e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 780;
}

.service-card-featured a {
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.service-list span {
  padding: 10px 14px;
  color: #484c52;
  background: #e8e7e2;
  border: 1px solid #d5d4ce;
  font-size: 0.82rem;
  font-weight: 650;
}

.prices {
  color: var(--white);
  background: var(--ink);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.57);
}

.price-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.price-tab {
  min-height: 48px;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
}

.price-tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.price-tab.is-active {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

th,
td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  color: rgba(255, 255, 255, 0.47);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

td {
  color: rgba(255, 255, 255, 0.75);
}

td:first-child {
  width: 34%;
  color: var(--white);
  font-weight: 800;
}

td b {
  color: var(--accent);
  font-size: 1.06rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.extras {
  margin-top: 44px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
}

.extras-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.extras-heading h3 {
  margin: 0;
  font-size: 1.35rem;
}

.extras-heading span {
  color: var(--muted);
  font-size: 0.82rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.extras-grid > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.extras-grid span {
  color: #52565c;
  font-size: 0.9rem;
}

.extras-grid b {
  flex: 0 0 auto;
  font-size: 0.92rem;
}

.price-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.booking {
  background: #e9e8e3;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 72px;
}

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

.booking-intro h2 {
  margin: 10px 0 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.booking-intro > p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.booking-points {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid #cfcec8;
}

.booking-points > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #cfcec8;
}

.booking-points b {
  color: var(--accent-strong);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.booking-points span {
  font-size: 0.91rem;
  font-weight: 700;
}

.booking-warning {
  display: grid;
  gap: 3px;
  margin-top: 28px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--accent);
}

.booking-warning strong {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-warning span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.booking-form {
  padding: 36px;
  background: var(--white);
  border-top: 5px solid var(--accent);
  box-shadow: 0 20px 60px rgba(24, 24, 22, 0.1);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div {
  display: grid;
  gap: 4px;
}

.form-heading span {
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.form-heading svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field > span {
  color: #3f4348;
  font-size: 0.78rem;
  font-weight: 780;
}

.field > span small {
  color: #909398;
  font-size: 0.72rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f7f7f4;
  border: 1px solid #d6d6d0;
  border-radius: 2px;
  font: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999c9f;
}

.field select:disabled {
  color: #999c9f;
  cursor: not-allowed;
}

.other-vehicle-field {
  padding: 15px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.15);
}

.booking-form.was-validated .field input:invalid,
.booking-form.was-validated .field select:invalid,
.booking-form.was-validated .field textarea:invalid {
  border-color: #c74236;
}

.consent-field {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  margin-top: 22px;
  color: #5d6166;
  cursor: pointer;
  font-size: 0.82rem;
}

.consent-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkmark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: #f7f7f4;
  border: 1px solid #cfcfc9;
}

.checkmark svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}

.consent-field input:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.consent-field input:checked + .checkmark svg {
  opacity: 1;
}

.consent-field input:focus-visible + .checkmark {
  outline: 3px solid rgba(255, 180, 0, 0.35);
  outline-offset: 2px;
}

.booking-form.was-validated .consent-field input:invalid + .checkmark {
  border-color: #c74236;
}

.booking-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
  margin-top: 25px;
}

.booking-actions .button {
  width: 100%;
  cursor: pointer;
}

.whatsapp-button {
  color: #07180e;
  background: #35d56f;
  border-color: #35d56f;
}

.whatsapp-button:hover {
  background: #45e27d;
}

.sms-button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.sms-button:hover {
  background: var(--ink-3);
}

.form-footnote {
  margin: 14px 0 0;
  color: #8a8d90;
  font-size: 0.73rem;
}

.form-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  color: #a9332a;
  font-size: 0.8rem;
  font-weight: 700;
}

.contacts {
  position: relative;
  overflow: hidden;
  background: var(--accent);
}

.contacts::before {
  content: "";
  position: absolute;
  inset: 0 55% 0 0;
  opacity: 0.12;
  background: repeating-linear-gradient(135deg, transparent 0 28px, #000 28px 30px);
  pointer-events: none;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.contact-copy .section-kicker {
  color: var(--ink);
}

.contact-copy h2 {
  max-width: 610px;
}

.contact-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(17, 19, 22, 0.72);
  font-size: 1.04rem;
}

.contact-actions .button-primary {
  color: var(--ink);
  background: var(--white);
}

.contact-card {
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-symbol {
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.contact-row > div {
  display: grid;
  gap: 5px;
}

.contact-row small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 1.02rem;
}

.contact-row a {
  text-decoration: none;
}

.backup-phone {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.backup-phone a {
  color: var(--ink);
  font-weight: 750;
}

.copy-address {
  width: 100%;
  min-height: 45px;
  margin-top: 20px;
  color: var(--ink);
  background: #f1f1ed;
  border: 1px solid #deded8;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
}

.copy-address:hover {
  background: #e8e8e2;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: #0c0e10;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.footer-inner > a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
}

.mobile-callbar {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  padding: 12px 17px;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

  .header-inner {
    min-height: 76px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 14, 16, 0.96) 0%, rgba(12, 14, 16, 0.84) 58%, rgba(12, 14, 16, 0.35) 100%);
  }

  .quick-grid > div {
    padding-inline: 22px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .booking-intro {
    position: static;
  }

  .contact-card {
    width: min(100%, 650px);
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    position: absolute;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.72rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .header-call {
    padding-left: 13px;
  }

  .header-call span {
    font-size: 0.64rem;
  }

  .header-call strong {
    font-size: 0.79rem;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 14, 16, 0.38) 0%, rgba(12, 14, 16, 0.72) 36%, rgba(12, 14, 16, 0.98) 76%, rgba(12, 14, 16, 1) 100%),
      linear-gradient(90deg, rgba(12, 14, 16, 0.68), rgba(12, 14, 16, 0.2));
  }

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

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .quick-grid > div,
  .quick-grid > div:first-child {
    min-height: 82px;
    padding: 17px 5px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .quick-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
  }

  .section-heading > p {
    font-size: 0.95rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 300px;
    padding: 26px;
  }

  .service-icon {
    margin-bottom: 34px;
  }

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

  .price-tab {
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  th,
  td {
    padding: 15px 13px;
  }

  td:first-child {
    width: auto;
  }

  .extras {
    padding: 22px 16px;
  }

  .extras-heading {
    align-items: start;
  }

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

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

  .booking-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .booking-form {
    padding: 27px 20px;
  }

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

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

  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
  }

  .contact-card {
    padding: 27px 22px;
  }

  .footer-inner {
    display: grid;
    gap: 18px;
  }

  .mobile-callbar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(12, 14, 16, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-callbar a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 820;
  }

  .mobile-booking {
    color: var(--ink);
    background: var(--accent);
  }

  .mobile-phone {
    color: var(--white);
    background: var(--ink-3);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .toast {
    right: 14px;
    bottom: 90px;
    left: 14px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .header-call strong {
    display: none;
  }

  .price-tabs {
    grid-template-columns: 1fr;
  }
}

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

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