@font-face {
  font-family: "Blacker";
  src: url("assets/Blacker-Display-Regular-trial-BrK9N3AR.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Ambit";
  src: url("assets/Ambit-Regular-Bmqo65Be.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Ambit";
  src: url("assets/Ambit-Light-Btlckhsi.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

:root {
  --paper: #fbf8f3;
  --surface: #ffffff;
  --surface-warm: #f3eadf;
  --stone: #e7ece9;
  --ink: #241a16;
  --muted: #6e625c;
  --line: #ded2c8;
  --clay: #9b5d49;
  --clay-dark: #653429;
  --sage: #63756a;
  --gold: #c49b61;
  --night: #171311;
  --shadow: 0 24px 70px rgba(36, 26, 22, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Ambit", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

picture {
  display: block;
}

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

button {
  font: inherit;
}

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

h1,
h2 {
  font-family: "Blacker", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 46px;
}

h2 {
  margin-bottom: 0;
  font-size: 36px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--night);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 243, 0.94);
  border-bottom: 1px solid rgba(101, 52, 41, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(36, 26, 22, 0.08);
  background: rgba(251, 248, 243, 0.98);
}

.topbar {
  display: none;
}

.navbar {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.brand img {
  width: 136px;
  height: auto;
}

.menu-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(101, 52, 41, 0.22);
  border-radius: 8px;
  background: var(--surface);
  color: var(--clay-dark);
}

.nav-links {
  position: fixed;
  inset: 74px 0 auto 0;
  display: grid;
  gap: 4px;
  padding: 18px 16px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(36, 26, 22, 0.18);
  transform: translateY(-130%);
  transition: transform 220ms ease;
  pointer-events: none;
}

.nav-links.is-open {
  transform: none;
  transition: none;
  pointer-events: auto;
}

.nav-links a {
  padding: 13px 10px;
  border-radius: 8px;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--surface-warm);
}

.language-switch,
.mobile-language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-language-switch {
  padding: 8px 10px 14px;
}

.language-switch button,
.mobile-language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 1px solid rgba(101, 52, 41, 0.22);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.language-switch button.is-active,
.mobile-language-switch button.is-active {
  border-color: var(--clay-dark);
  color: var(--clay-dark);
  font-weight: 700;
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
}

.nav-cta {
  background: var(--clay-dark);
  color: #fff !important;
  margin-top: 4px;
}

.button {
  padding: 0 18px;
}

.button-primary {
  background: var(--clay-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(101, 52, 41, 0.3);
  color: var(--clay-dark);
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.text-link {
  width: fit-content;
  color: var(--clay-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.eyebrow {
  margin: 0;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero,
.page-hero,
.section,
.article-layout {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  padding: 34px 0 18px;
  display: grid;
  gap: 24px;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.hero-text,
.page-hero > .lang-panel > p,
.page-hero > p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 18px;
}

.hero-media,
.framed-image,
.article-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--stone);
  box-shadow: var(--shadow);
}

.hero-media {
  min-height: 310px;
  height: 310px;
}

.hero-media picture,
.hero-media img,
.framed-image img,
.article-image img {
  width: 100%;
  height: 100%;
}

.hero-media img,
.framed-image img,
.article-image img {
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(23, 19, 17, 0.84);
  color: #fff;
}

.hero-note span {
  color: #f0d6bf;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 15px;
  line-height: 1.25;
}

.quick-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  padding: 22px 16px;
  background: var(--surface);
}

.quick-info span {
  display: block;
  font-family: "Blacker", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.quick-info div:first-child span,
.quick-info div:nth-child(3) span {
  font-family: "Ambit", Arial, sans-serif;
  font-weight: 300;
}

.quick-info p {
  margin: 8px 0 0;
}

.section {
  padding: 72px 0;
}

.page-hero {
  display: grid;
  gap: 20px;
  padding: 52px 0 34px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading h2,
.section-heading p {
  max-width: 760px;
}

.split-section {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-section .lang-panel {
  display: grid;
  gap: 14px;
}

.split-section .framed-image {
  min-height: 360px;
}

.services-section,
.reviews-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
}

.section.services-section,
.section.reviews-section,
.section.dark-band {
  width: 100%;
  max-width: none;
  margin: 0;
}

.services-section {
  background: var(--night);
  color: #fff;
}

.reviews-section {
  background: var(--stone);
}

.services-section p,
.dark-band p,
.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.services-section .eyebrow,
.dark-band .eyebrow,
.final-cta .eyebrow {
  color: #f0d6bf;
}

.feature-grid,
.value-grid,
.process-grid,
.gallery-grid,
.review-grid,
.article-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.feature-grid > *,
.value-grid > *,
.process-grid > *,
.gallery-grid > *,
.review-grid > *,
.article-grid > *,
.contact-grid > *,
.faq-grid > * {
  min-width: 0;
}

.feature-card,
.value-grid article,
.process-grid article,
.review-card,
.article-card,
.contact-card,
.faq-grid article,
.content-panel,
.booking-panel,
.instagram-panel,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(36, 26, 22, 0.07);
}

.feature-card {
  overflow: hidden;
}

.feature-card picture {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card .lang-panel,
.article-card .lang-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.services-section .feature-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.services-section .feature-card p,
.services-section .feature-card h3 {
  color: #fff;
}

.services-section .feature-card .text-link {
  color: #f0d6bf;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: 72px max(16px, calc((100vw - var(--max)) / 2));
  background: var(--sage);
  color: #fff;
}

.band-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 26px;
  align-items: start;
}

.band-grid .lang-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.band-grid > .framed-image {
  width: 100%;
  height: clamp(320px, 48vw, 560px);
  max-height: calc(100vh - 170px);
}

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

.gallery-grid picture {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--stone);
}

.gallery-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  min-height: 238px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
}

.directions-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.directions-list div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 0 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.directions-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(155, 93, 73, 0.26);
  border-radius: 50%;
  background: rgba(243, 234, 223, 0.72);
  color: var(--clay-dark);
}

.directions-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directions-list dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.directions-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.transport-card {
  grid-column: 1 / -1;
}

.transport-card .lang-panel {
  display: grid;
  gap: 14px;
}

.transport-card .directions-list {
  margin-top: 4px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
}

.review-card p {
  margin: 0;
}

.review-card strong {
  color: var(--ink);
}

.location-section {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.location-section .lang-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.map-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 19, 17, 0.68), rgba(99, 117, 106, 0.38)),
    var(--stone);
  color: #fff;
  box-shadow: var(--shadow);
}

.map-card span {
  color: #f0d6bf;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-card strong {
  font-family: "Ambit", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 72px 16px;
  background: var(--night);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
}

.service-overview {
  align-items: stretch;
}

.service-overview .feature-card picture {
  aspect-ratio: 16 / 10;
}

.service-overview .feature-card img {
  object-position: center 32%;
}

.section.pricing-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px max(16px, calc((100vw - var(--max)) / 2));
  background: var(--surface-warm);
}

.pricing-section > .lang-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.pricing-layout,
.pricing-section .lang-panel,
.pricing-groups,
.pricing-side {
  display: grid;
}

.pricing-layout {
  gap: 24px;
}

.pricing-intro {
  display: grid;
  gap: 20px;
}

.pricing-intro .section-heading {
  margin-bottom: 0;
}

.pricing-intro .section-heading p {
  margin-bottom: 0;
}

.pricing-side {
  gap: 14px;
  align-content: start;
}

.pricing-note {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(101, 52, 41, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
}

.pricing-groups {
  gap: 14px;
}

.pricing-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(36, 26, 22, 0.06);
}

.pricing-group header {
  display: grid;
  gap: 8px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.pricing-group h3 {
  margin: 0;
  font-size: 22px;
}

.price-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 14px 20px;
  border-top: 1px solid rgba(101, 52, 41, 0.12);
}

.price-list li:first-child {
  border-top: 0;
}

.price-name {
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.price-stack {
  min-width: 84px;
  max-width: 150px;
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
}

.price-value {
  color: var(--clay-dark);
  font-size: 20px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.price-qualifier {
  color: var(--sage);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-page-hero {
  grid-template-columns: 1fr;
  align-items: center;
}

.service-page-hero .framed-image {
  height: clamp(320px, 48vw, 520px);
  min-height: 340px;
}

.service-detail-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.content-panel,
.booking-panel,
.instagram-panel {
  padding: 24px;
}

.content-panel .lang-panel {
  display: grid;
  gap: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.booking-panel {
  display: grid;
  gap: 16px;
  background: var(--surface-warm);
}

.value-grid article,
.process-grid article,
.contact-card,
.faq-grid article {
  padding: 22px;
}

.value-grid p,
.process-grid p,
.contact-card p,
.faq-grid p {
  margin-bottom: 0;
}

.process-grid article span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--clay-dark);
  color: #fff;
  font-weight: 700;
}

.instagram-panel {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  background: var(--surface-warm);
}

.instagram-plugin,
.instagram-consent {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.instagram-consent {
  padding: 18px;
  border: 1px solid rgba(101, 52, 41, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.instagram-consent p {
  margin-bottom: 0;
}

.instagram-embed {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.instagram-embed .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

.article-card {
  overflow: hidden;
}

.article-card picture {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.article-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.article-card > .eyebrow {
  padding: 20px 22px 0;
}

.article-card h2 {
  font-size: 30px;
}

.article-page {
  padding-bottom: 72px;
}

.article-layout {
  display: grid;
  gap: 24px;
}

.article-image {
  min-height: 320px;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body section,
.article-cta {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.article-body h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.article-cta {
  display: grid;
  gap: 14px;
  background: var(--surface-warm);
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-card a {
  color: var(--clay-dark);
  font-weight: 700;
}

.contact-map {
  min-height: 100%;
}

.faq-section {
  padding-top: 0;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 52px 16px 86px;
  background: var(--night);
  color: #fff;
}

.site-footer > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-footer img {
  width: 168px;
  height: auto;
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  display: grid;
  gap: 30px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
}

.footer-cta {
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 155, 97, 0.42);
  border-radius: 8px;
  background: rgba(196, 155, 97, 0.13);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.footer-column {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-title {
  margin: 0 0 3px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-social a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
}

.footer-address {
  max-width: 260px;
}

.footer-cta:hover,
.footer-cta:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.floating-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(23, 19, 17, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-main {
  background: var(--paper);
}

.legal-hero,
.legal-content {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.legal-hero {
  padding: 52px 0 24px;
}

.legal-hero h1 {
  max-width: 780px;
  font-size: 44px;
}

.legal-hero p {
  max-width: 720px;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 0 0 72px;
}

.legal-panel {
  padding: 24px;
  overflow-x: auto;
}

.legal-panel h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.legal-panel h3 {
  margin-top: 20px;
}

.legal-panel a {
  color: var(--clay-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-panel ul {
  margin: 0;
  padding-left: 20px;
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--surface-warm);
  color: var(--ink);
}

.legal-warning {
  border-color: rgba(155, 93, 73, 0.34);
  background: #fff8f3;
}

@media (min-width: 680px) {
  html {
    scroll-padding-top: 128px;
  }

  .topbar {
    width: min(100% - 48px, var(--max));
    min-height: 38px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    border-bottom: 1px solid rgba(101, 52, 41, 0.12);
    color: var(--muted);
    font-size: 12px;
  }

  .topbar a:first-child {
    margin-right: auto;
  }

  .topbar a[href*="maps.google"] {
    display: none;
  }

  .navbar {
    width: min(100% - 48px, var(--max));
    min-height: 86px;
  }

  .nav-links {
    inset: 124px 0 auto 0;
  }

  .brand,
  .brand img {
    width: 156px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 46px;
  }

  .button {
    min-width: 178px;
  }

  .hero,
  .page-hero,
  .section,
  .article-layout {
    width: min(100% - 48px, var(--max));
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
    align-items: center;
    padding: 68px 0 42px;
  }

  .hero-media {
    height: 460px;
  }

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

  .quick-info div {
    padding: 28px 24px;
  }

  .quick-info span {
    font-size: 36px;
  }

  .page-hero {
    padding: 76px 0 48px;
  }

  .split-section,
  .location-section,
  .service-page-hero,
  .service-detail-layout,
  .article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  }

  .feature-grid,
  .value-grid,
  .process-grid,
  .review-grid,
  .article-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-section,
  .reviews-section,
  .dark-band,
  .pricing-section {
    padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  }

  .pricing-intro {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    align-items: end;
  }

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

  .contact-map {
    grid-column: auto;
  }

  .transport-card {
    grid-column: 1 / -1;
  }

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

  .site-footer {
    padding-inline: 24px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 34px 42px;
  }

  .footer-brand {
    padding-right: 24px;
  }
}

@media (min-width: 940px) {
  .menu-button {
    display: none;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    pointer-events: auto;
  }

  .mobile-language-switch {
    display: none;
  }

  .nav-links a {
    padding: 8px 0;
    color: var(--muted);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    background: transparent;
    color: var(--ink);
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 18px !important;
    margin-top: 0;
  }

  .hero {
    min-height: calc(100vh - 170px);
    padding-top: 54px;
  }

  .hero-media {
    height: 520px;
  }

  h1 {
    font-size: clamp(58px, 5.2vw, 76px);
  }

  h2 {
    font-size: 54px;
  }

  .section {
    padding: 96px 0;
  }

  .services-section,
  .reviews-section,
  .dark-band,
  .pricing-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section.services-section,
  .section.reviews-section,
  .section.dark-band,
  .section.pricing-section {
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
  }

  .feature-grid,
  .review-grid,
  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-grid,
  .process-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-map {
    grid-column: auto;
  }

  .transport-card .directions-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .final-cta {
    padding: 96px 24px;
  }

  .band-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.9fr);
  }

  .floating-cta {
    display: none;
  }

  .site-footer {
    padding-top: 62px;
    padding-bottom: 46px;
  }

  .footer-main {
    grid-template-columns: minmax(260px, 1.35fr) minmax(190px, 0.85fr) minmax(150px, 0.7fr) minmax(190px, 0.85fr);
    gap: 34px;
  }
}

@media (max-width: 679px) {
  .button-row,
  .button {
    width: 100%;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-stack {
    max-width: none;
    justify-items: start;
    text-align: left;
  }

  .legal-table {
    width: max-content;
    max-width: none;
  }
}

@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;
  }
}
