:root {
  color-scheme: light;
  --ink: #15211c;
  --muted: #65736b;
  --line: #e5dfd4;
  --paper: #f7f6f2;
  --white: #ffffff;
  --green: #e56e00;
  --green-dark: #9d4300;
  --green-soft: #fff1df;
  --gold: #ffea00;
  --charcoal: #161712;
  --amber: #a56613;
  --red: #b73a3a;
  --shadow: 0 20px 60px rgba(21, 33, 28, 0.1);
  --shadow-soft: 0 8px 28px rgba(21, 33, 28, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050505;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.app-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #fff4e5 0, var(--paper) 420px),
    var(--paper);
}

.quick-bar {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 80;
  transform: translateY(-50%);
  display: grid;
  width: 108px;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 234, 0, 0.28);
  border-right: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.quick-bar a {
  display: grid;
  place-items: center;
  min-height: 94px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 234, 0, 0.24);
  background: linear-gradient(180deg, #1d1d16 0%, #10110d 100%);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.quick-bar a:nth-child(2) {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
}

.quick-bar a:last-child {
  border-bottom: 0;
}

.quick-bar a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateX(-3px);
}

.quick-bar a:hover .quick-bar__icon,
.quick-bar a:hover strong {
  color: var(--charcoal);
}

.quick-bar__icon {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 400;
}

.quick-bar a:nth-child(2) .quick-bar__icon {
  color: var(--white);
}

.quick-bar strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.25;
}

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: min(1220px, 100%);
  transform: translateX(-50%);
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(18, 18, 14, 0.78);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.header-topline,
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-topline {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.header-topline__links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-topline a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.header-main {
  padding: 12px 14px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.site-brand img {
  display: block;
  width: 176px;
  max-width: 36vw;
  height: auto;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-actions a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-actions a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.site-actions .site-action-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 8px 22px rgba(255, 234, 0, 0.22);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 234, 0, 0.42);
  border-radius: 8px;
  background: rgba(255, 234, 0, 0.12);
  color: var(--gold);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
  animation: heroSlide 36s infinite;
}

.hero__image--one {
  animation-delay: 0s;
}

.hero__image--two {
  animation-delay: 6s;
}

.hero__image--three {
  animation-delay: 12s;
}

.hero__image--four {
  animation-delay: 18s;
}

.hero__image--five {
  animation-delay: 24s;
}

.hero__image--six {
  animation-delay: 30s;
}

.hero__shade {
  background:
    radial-gradient(circle at 18% 58%, rgba(229, 110, 0, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.94), rgba(10, 10, 8, 0.38) 58%, rgba(10, 10, 8, 0.72)),
    linear-gradient(180deg, rgba(10, 10, 8, 0.12), transparent 42%, rgba(247, 246, 242, 0.98));
}

.hero__content {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 144px 0 170px;
  color: var(--white);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.kicker,
.eyebrow {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero .kicker {
  color: var(--gold);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero-slide-text {
  position: relative;
  width: min(640px, 100%);
  min-height: 118px;
  margin-top: 20px;
  overflow: hidden;
}

.hero-slide-text__item {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  animation: heroCaption 36s infinite;
}

.hero-slide-text__item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-slide-text__item strong {
  display: block;
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.hero-slide-text__item p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.hero-slide-text__item--two {
  animation-delay: 6s;
}

.hero-slide-text__item--three {
  animation-delay: 12s;
}

.hero-slide-text__item--four {
  animation-delay: 18s;
}

.hero-slide-text__item--five {
  animation-delay: 24s;
}

.hero-slide-text__item--six {
  animation-delay: 30s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.18);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero__badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__caption {
  position: absolute;
  right: max(16px, calc((100vw - 1220px) / 2));
  bottom: 156px;
  z-index: 2;
  width: min(360px, calc(100% - 32px));
  min-height: 42px;
  text-align: right;
}

.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 16px;
  font-size: 2.45rem;
  line-height: 1;
}

.hero-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hero-card dt,
.hero-card dd {
  margin: 0;
  font-size: 0.9rem;
}

.hero-card dt {
  color: var(--muted);
}

.hero-card dd {
  font-weight: 850;
}

.hero-card a {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

.hero__stats {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  width: min(1220px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 18, 14, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero__stats div {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero__stats div:last-child {
  border-right: 0;
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  color: var(--gold);
  font-size: 1.38rem;
}

.hero__stats span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
}

.hero__caption-item {
  position: absolute;
  inset: 0 0 auto auto;
  opacity: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 850;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  animation: heroCaption 36s infinite;
}

.hero__caption-item::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.64);
}

.hero__caption-item--two {
  animation-delay: 6s;
}

.hero__caption-item--three {
  animation-delay: 12s;
}

.hero__caption-item--four {
  animation-delay: 18s;
}

.hero__caption-item--five {
  animation-delay: 24s;
}

.hero__caption-item--six {
  animation-delay: 30s;
}

.hero__dots {
  position: absolute;
  right: max(16px, calc((100vw - 1220px) / 2));
  bottom: 112px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero__dots span {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

.hero__dots span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  animation: heroDot 36s infinite;
}

.hero__dots span:nth-child(2)::before {
  animation-delay: 6s;
}

.hero__dots span:nth-child(3)::before {
  animation-delay: 12s;
}

.hero__dots span:nth-child(4)::before {
  animation-delay: 18s;
}

.hero__dots span:nth-child(5)::before {
  animation-delay: 24s;
}

.hero__dots span:nth-child(6)::before {
  animation-delay: 30s;
}

.hero__credits {
  position: absolute;
  right: max(16px, calc((100vw - 1220px) / 2));
  bottom: 78px;
  z-index: 2;
  max-width: min(460px, calc(100% - 32px));
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: right;
}

@keyframes heroSlide {
  0% {
    opacity: 1;
    transform: scale(1.04);
  }

  3%,
  14% {
    opacity: 1;
  }

  18%,
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

@keyframes heroDot {
  0%,
  16.55% {
    transform: scaleX(0);
  }

  3%,
  14% {
    transform: scaleX(1);
  }

  18%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes heroCaption {
  0%,
  14% {
    opacity: 1;
    transform: translateY(0);
  }

  18%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.trust-band {
  position: relative;
  z-index: 4;
  width: min(1220px, calc(100% - 32px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 110, 0, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(21, 33, 28, 0.12);
}

.trust-band div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band span,
.trust-band strong {
  display: block;
}

.trust-band span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-band strong {
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.comparison-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 20px;
}

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.comparison-card,
.comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-card {
  padding: 26px;
  background: linear-gradient(180deg, #181914, #2a2116);
  color: var(--white);
}

.comparison-card h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
}

.comparison-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.comparison-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.comparison-table {
  overflow: hidden;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span {
  color: var(--muted);
  font-weight: 760;
}

.comparison-table strong {
  color: var(--green-dark);
}

.international-section {
  width: min(1220px, calc(100% - 32px));
  margin: 26px auto 0;
}

.international-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 234, 0, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 234, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #171812 0%, #080907 100%);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(10, 10, 8, 0.22);
}

.international-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.international-panel p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

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

.international-grid article {
  min-height: 182px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.international-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 950;
}

.international-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.international-grid p {
  font-size: 0.94rem;
}

.review-strip {
  width: min(1220px, calc(100% - 32px));
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-strip article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fffaf2);
  box-shadow: var(--shadow-soft);
}

.review-strip span,
.review-strip strong {
  display: block;
}

.review-strip span {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-strip strong {
  margin-top: 8px;
  font-size: 1.12rem;
}

.review-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-preview,
.service-section,
.service-intro,
.service-flow,
.assurance-section,
.payment-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  padding: 72px 0 0;
}

.service-intro__copy {
  padding: 34px;
  border: 1px solid rgba(229, 110, 0, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 234, 0, 0.1), rgba(229, 110, 0, 0.08)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.service-intro__copy h2,
.service-intro__copy p {
  margin: 0;
}

.service-intro__copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.service-intro__copy p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.service-intro__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-intro__facts div {
  display: grid;
  align-content: space-between;
  min-height: 146px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-intro__facts div:nth-child(1),
.service-intro__facts div:nth-child(4) {
  background: linear-gradient(180deg, #1d1d16, #10110d);
}

.service-intro__facts div:nth-child(1) strong,
.service-intro__facts div:nth-child(4) strong {
  color: var(--gold);
}

.service-intro__facts div:nth-child(1) span,
.service-intro__facts div:nth-child(4) span {
  color: rgba(255, 255, 255, 0.76);
}

.service-intro__facts strong {
  color: var(--green-dark);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1;
}

.service-intro__facts span {
  color: var(--muted);
  font-weight: 850;
}

.service-preview {
  padding: 68px 0 0;
}

.service-preview-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

.service-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.service-preview-grid article,
.service-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-preview-grid span,
.service-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-preview-grid h3,
.service-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.service-preview-grid p,
.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-section {
  padding: 80px 0 44px;
}

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

.service-grid article:nth-child(2),
.service-grid article:nth-child(5) {
  background: linear-gradient(180deg, #181914, #2a2116);
  color: var(--white);
}

.service-grid article:nth-child(2) p,
.service-grid article:nth-child(5) p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid article:nth-child(2) span,
.service-grid article:nth-child(5) span {
  color: var(--gold);
}

.service-flow {
  padding: 30px 0 34px;
}

.service-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-flow__steps article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.service-flow__steps article:last-child {
  border-right: 0;
}

.service-flow__steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 950;
}

.service-flow__steps h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-flow__steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 40px 0 78px;
}

.payment-section h2,
.payment-section p {
  margin: 0;
}

.payment-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.payment-section p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

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

.payment-badges span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 900;
}

.assurance-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: 0 0 78px;
}

.assurance-section figure {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(21, 33, 28, 0.16);
}

.assurance-section figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 23, 18, 0), rgba(22, 23, 18, 0.28));
}

.assurance-section img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.assurance-section h2,
.assurance-section p {
  margin: 0;
}

.assurance-section h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.assurance-section p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.assurance-section ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.assurance-section li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.assurance-section li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(229, 110, 0, 0.12);
}

.price-section {
  background:
    linear-gradient(135deg, #ffffff 0 70%, #f2eee7 70% 100%),
    #ffffff;
  padding: 92px 0 86px;
}

.price-section__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.price-section h2 {
  margin: 0;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  font-weight: 900;
}

.price-section__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 24px;
}

.plan-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fffaf3);
  box-shadow: var(--shadow-soft);
}

.plan-grid article.is-featured {
  border-color: rgba(229, 110, 0, 0.42);
  background: linear-gradient(180deg, #181914, #2a2116);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(22, 23, 18, 0.22);
}

.plan-grid span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-grid .is-featured span {
  background: var(--gold);
  color: var(--charcoal);
}

.plan-grid h3,
.plan-grid p {
  margin: 0;
}

.plan-grid h3 {
  font-size: 1.24rem;
}

.plan-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.plan-grid .is-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-grid strong {
  font-size: 1.8rem;
}

.plan-grid a {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 112px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

.plan-grid .is-featured a {
  background: var(--gold);
  color: var(--charcoal);
}

.price-compare-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  align-items: stretch;
  margin: 26px 0;
  padding: 24px;
  background: #111510;
  color: var(--white);
  border: 1px solid rgba(255, 224, 0, 0.42);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(17, 21, 16, 0.18);
}

.price-compare-banner span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-compare-banner strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2.1rem);
  line-height: 1.08;
}

.price-compare-banner p {
  max-width: 780px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.price-compare-banner dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-compare-banner dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.price-compare-banner dt,
.price-compare-banner dd {
  margin: 0;
}

.price-compare-banner dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.price-compare-banner dd {
  color: var(--gold);
  font-weight: 900;
}

.public-price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 68px rgba(21, 33, 28, 0.1);
  padding: 34px;
}

.public-price-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
}

.public-price-head strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.public-price-head span {
  font-size: 0.88rem;
}

.public-price-scroll {
  overflow-x: auto;
}

.public-price-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: #333;
  font-size: 0.92rem;
}

.public-price-table th,
.public-price-table td {
  padding: 12px 12px;
  border-bottom: 1px solid #dddddd;
  text-align: right;
}

.public-price-table th:first-child,
.public-price-table td:first-child {
  text-align: left;
}

.public-price-table thead th {
  color: #333;
  font-weight: 800;
}

.public-price-table tbody tr:nth-child(odd):not(.section-row) {
  background: #fff9ef;
}

.public-price-table .section-row th {
  padding-top: 34px;
  background: #ffffff;
  color: #333;
  text-align: left;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.process-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 18px;
}

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

.section-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-layout {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 46px auto 86px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.map-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  margin: 0;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #14150f;
  box-shadow: none;
}

.map-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 420px;
  margin: 0;
  padding: 58px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.map-section__content::before {
  content: "";
  position: absolute;
  inset: 42px auto 42px 0;
  z-index: -1;
  width: min(460px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 232, 0.95)),
    var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.map-section .eyebrow {
  padding-left: 32px;
}

.map-section__content h2 {
  width: min(360px, calc(100% - 68px));
  margin: 8px 32px 10px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.map-section__content p:not(.eyebrow) {
  width: min(360px, calc(100% - 68px));
  margin: 0 32px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.map-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(360px, calc(100% - 68px));
  margin: 24px 32px 0;
}

.map-section__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 420px;
  background: #e8ece8;
}

.map-section__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 21, 15, 0.16), rgba(20, 21, 15, 0) 42%),
    linear-gradient(0deg, rgba(20, 21, 15, 0.2), rgba(20, 21, 15, 0) 34%);
}

.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(1.02) contrast(1.03);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 234, 0, 0.13), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(229, 110, 0, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(229, 110, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #151610 0%, #060706 100%);
  color: var(--white);
  border-top: 4px solid var(--green);
}

.site-footer::before {
  content: "Flug-Park Düsseldorf";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.038);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 950;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  mix-blend-mode: screen;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 234, 0, 0.055) 24.5%, transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 58px 0 38px;
}

.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
  margin: 0 0 22px;
}

.footer-brand p {
  max-width: 360px;
  font-size: 1rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 234, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 850;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 12px;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.site-footer p {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.site-footer strong {
  color: rgba(255, 255, 255, 0.94);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-inner > div:last-child p {
  margin: 0;
}

.footer-inner > div:last-child a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 11px;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(255, 234, 0, 0.22);
}

.footer-inner > div:last-child a:hover {
  border-left-color: var(--gold);
}

.footer-hours p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.footer-hours p:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-hours__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: var(--green);
}

.footer-hours__icon::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.footer-hours__icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  top: 1px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-design {
  justify-self: center;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
}

.footer-legal a,
.footer-design a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-design a:hover {
  color: var(--gold);
}

.footer-legal span {
  color: rgba(255, 234, 0, 0.45);
  font-weight: 700;
}

.page-hero {
  min-height: 420px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 82px;
  color: var(--white);
}

.page-hero__content h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

.page-hero__content p:not(.kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.6;
}

.price-section.is-page {
  padding-top: 72px;
}

.content-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

.legal-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 18px;
  padding: 22px;
  border: 1px solid rgba(34, 42, 34, 0.12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-toc span {
  display: block;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(34, 42, 34, 0.08);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.legal-card {
  padding: 38px;
  border: 1px solid rgba(34, 42, 34, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-card a {
  color: var(--green-dark);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-grid details[open] summary {
  color: var(--green-dark);
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.faq-grid p {
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 24px 58px rgba(22, 23, 18, 0.2);
}

.cta-panel h2,
.cta-panel p {
  margin: 0;
}

.cta-panel p:not(.eyebrow) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.contact-layout h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.contact-layout > div > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.6;
}

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

.contact-cards a,
.address-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-cards a {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
}

.contact-cards span,
.address-panel span {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.address-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.address-panel strong {
  font-size: 1.35rem;
}

.address-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 86px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

.gallery-filter span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery-item.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.is-wide {
  grid-column: span 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
}

.gallery-item figcaption span,
.gallery-item figcaption strong {
  display: block;
}

.gallery-item figcaption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-item figcaption strong {
  margin-top: 4px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.has-lightbox {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(229, 110, 0, 0.16), transparent 34%),
    rgba(3, 3, 3, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox figure {
  position: relative;
  width: min(1040px, calc(100vw - 128px));
  max-height: calc(100vh - 96px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.46);
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #050505;
}

.gallery-lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--white);
}

.gallery-lightbox figcaption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
  font-size: 1.12rem;
  text-align: right;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 101;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.progress-panel,
.booking-form,
.summary-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 229, 223, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.progress-panel,
.summary-panel {
  position: sticky;
  top: 16px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.progress-panel {
  padding: 20px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(25, 116, 74, 0.24);
  font-size: 0.88rem;
}

.step-list {
  list-style: none;
  padding: 16px 0 4px;
  margin: 0;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.step-list li.is-active {
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 800;
}

.step-list li.is-complete {
  color: var(--green);
}

.step-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-list li.is-active .step-icon,
.step-list li.is-complete .step-icon {
  border-color: rgba(25, 116, 74, 0.25);
  background: var(--green);
  color: var(--white);
}

.step-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--green);
}

.booking-form {
  min-width: 0;
  padding: 28px;
}

.form-header,
.summary-head,
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-header h2,
.summary-head h2 {
  margin: 0;
  font-size: 1.48rem;
  letter-spacing: 0;
}

.step-count,
.summary-head span {
  margin: 0;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.summary-head span {
  text-align: center;
}

.step {
  display: none;
  padding: 24px 0 8px;
}

.step.is-active {
  display: block;
}

.field-grid,
.option-grid,
.addon-grid,
.payment-grid {
  display: grid;
  gap: 16px;
}

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

label,
.wide-label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 108px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(25, 116, 74, 0.14);
  background: var(--white);
}

input.error,
select.error,
textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(183, 58, 58, 0.12);
}

.field-error {
  margin-top: -2px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
}

.wide-label {
  margin-top: 14px;
}

.notice {
  display: none;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid #efd7ad;
  border-radius: 8px;
  background: #fff8eb;
  color: #76500f;
  font-size: 0.92rem;
}

.notice.is-visible {
  display: block;
}

.search-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.search-trust div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6faf8);
}

.search-trust strong {
  display: block;
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.search-trust span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

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

#packageOptions {
  grid-template-columns: 1fr;
}

.compare-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6faf8;
}

.compare-toolbar strong {
  display: block;
  font-size: 1rem;
}

.compare-toolbar span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.compare-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.compare-chips span {
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(25, 116, 74, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

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

.option-card,
.addon-card,
.payment-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfcfb);
  box-shadow: 0 1px 0 rgba(21, 33, 28, 0.03);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.offer-card {
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.offer-card:hover {
  transform: none;
}

.offer-card:has(input:checked)::after {
  top: 18px;
  right: 18px;
}

.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.offer-main,
.offer-meta,
.offer-price {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 18px;
}

.offer-main {
  padding-top: 52px;
  border-bottom: 1px solid var(--line);
}

.offer-main strong {
  padding-right: 28px;
  font-size: 1.22rem;
}

.offer-main small {
  max-width: 560px;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.offer-features span {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f1f6f3;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.offer-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.offer-meta > span {
  display: grid;
  gap: 3px;
  min-height: 62px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.offer-meta b {
  color: var(--ink);
  font-size: 0.95rem;
}

.offer-meta small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.offer-price {
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: start;
  background: #fbfcfb;
  text-align: left;
}

.offer-price small,
.offer-price em,
.offer-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
}

.offer-price b {
  grid-row: span 2;
  color: var(--green-dark);
  font-size: 1.52rem;
  line-height: 1;
  text-align: right;
}

.offer-price span {
  display: inline-flex;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
}

.addon-card {
  min-height: 116px;
}

.payment-card {
  min-height: 112px;
}

.option-card:hover,
.addon-card:hover,
.payment-card:hover {
  border-color: rgba(25, 116, 74, 0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.option-card input,
.addon-card input,
.payment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card:has(input:checked),
.addon-card:has(input:checked),
.payment-card:has(input:checked) {
  border-color: var(--green);
  background: linear-gradient(180deg, #ffffff, #f0f8f4);
  box-shadow:
    inset 0 0 0 1px var(--green),
    0 14px 34px rgba(25, 116, 74, 0.16);
}

.option-card:has(input:checked)::after,
.addon-card:has(input:checked)::after,
.payment-card:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.option-card strong,
.payment-card strong,
.addon-card strong {
  padding-right: 22px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.option-card small,
.addon-card small,
.payment-card small {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.price-badge {
  align-self: end;
  width: fit-content;
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
  font-size: 0.9rem;
}

.addons h3 {
  margin: 26px 0 14px;
  padding-top: 4px;
  font-size: 1.02rem;
}

.payment-detail {
  display: none;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.payment-detail.is-active {
  display: block;
}

.payment-live-note {
  margin: 16px 0 0;
  padding: 13px 14px;
  border: 1px solid #d9e7df;
  border-radius: 8px;
  background: #f4faf6;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.payment-live-note.is-warning {
  border-color: #f2c38f;
  background: #fff4e5;
  color: var(--green-dark);
}

.terms {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  font-weight: 650;
}

.terms input {
  width: 19px;
  height: 19px;
}

.terms a {
  color: var(--green-dark);
  font-weight: 900;
}

.form-footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 124px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button.primary {
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(229, 110, 0, 0.24);
}

.button.primary:hover {
  background: linear-gradient(145deg, #f07b0a, var(--green-dark));
  transform: translateY(-1px);
}

.button.secondary {
  background: #fbfcfb;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(229, 110, 0, 0.34);
  background: var(--white);
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.summary-panel {
  padding: 22px;
}

.summary-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.summary-block {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.summary-block h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.summary-block p {
  margin: 4px 0;
  font-size: 0.94rem;
  line-height: 1.4;
}

.price-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 12px;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.price-table dt,
.price-table dd {
  margin: 0;
}

.price-table dt {
  color: var(--muted);
}

.price-table dd {
  font-weight: 850;
  text-align: right;
}

.price-table .total-label,
.price-table .total-value {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.16rem;
}

.confirmation {
  display: grid;
  gap: 14px;
}

.success-box {
  border: 1px solid #f2c38f;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff4e5, #ffffff);
  padding: 20px;
}

.success-box h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.email-status {
  margin: 12px 0 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.email-status.is-success {
  border-color: #b7dac7;
  background: #f0faf4;
  color: #17613b;
}

.email-status.is-warning {
  border-color: #f2c38f;
  background: #fff4e5;
  color: var(--green-dark);
}

.email-status a {
  color: inherit;
  font-weight: 900;
}

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

.receipt div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfb;
}

.receipt span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.error {
  border-color: var(--red) !important;
}

.field-error {
  margin-top: -4px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 650;
}

@media (max-width: 1120px) {
  .site-actions {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .header-main {
    align-items: stretch;
    flex-direction: column;
  }

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

  .map-section {
    min-height: 390px;
  }

  .map-section__content {
    min-height: 390px;
  }

  .map-section__frame,
  .map-section__frame iframe {
    min-height: 390px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding-bottom: 220px;
  }

  .hero-card {
    max-width: 520px;
  }

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

  .trust-band,
  .plan-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band div:nth-child(2) {
    border-right: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .price-section {
    padding-top: 34px;
  }

  .public-price-card {
    padding: 28px;
  }

  .progress-panel,
  .summary-panel {
    position: static;
  }

  .step-list,
  .trust-strip {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .quick-bar {
    top: auto;
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 234, 0, 0.24);
  }

  .quick-bar a {
    min-height: 54px;
    padding: 7px 5px;
    border-right: 1px solid rgba(255, 234, 0, 0.24);
    border-bottom: 0;
  }

  .quick-bar a:last-child {
    border-right: 0;
  }

  .quick-bar a:hover {
    transform: translateY(-2px);
  }

  .quick-bar__icon {
    margin-bottom: 3px;
    font-size: 1.08rem;
  }

  .quick-bar strong {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    top: 0;
    width: 100%;
    padding: 0;
    border-radius: 0 0 8px 8px;
  }

  .header-topline {
    display: none;
  }

  .header-main {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand img {
    margin: 0;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    margin-left: auto;
  }

  .site-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 220ms ease,
      margin-top 220ms ease,
      opacity 180ms ease;
  }

  .site-header.is-menu-open .site-actions {
    max-height: 360px;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-brand img {
    width: 148px;
    max-width: 58vw;
  }

  .site-actions a {
    justify-content: center;
    min-height: 34px;
    padding: 7px 6px;
    font-size: 0.68rem;
    white-space: normal;
    text-align: center;
  }

  .site-actions .site-action-primary {
    grid-column: span 3;
  }

  .hero__content {
    width: calc(100% - 20px);
    padding-top: 238px;
    padding-bottom: 260px;
    gap: 22px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero__copy {
    font-size: 0.98rem;
  }

  .hero-slide-text {
    min-height: 152px;
    margin-top: 16px;
  }

  .hero-slide-text__item strong {
    font-size: 1.08rem;
  }

  .hero-slide-text__item p {
    font-size: 0.9rem;
  }

  .hero__actions {
    gap: 8px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong {
    font-size: 2rem;
  }

  .hero__stats {
    bottom: 28px;
    width: calc(100% - 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__stats div {
    padding: 13px 12px;
  }

  .hero__stats div:nth-child(2) {
    border-right: 0;
  }

  .hero__stats strong {
    font-size: 1.05rem;
  }

  .hero__stats span {
    font-size: 0.72rem;
  }

  .hero__badges {
    gap: 7px;
  }

  .hero__badges span {
    font-size: 0.76rem;
  }

  .hero__caption {
    display: none;
  }

  .hero__dots,
  .hero__credits {
    left: 10px;
    right: 10px;
  }

  .hero__dots {
    display: none;
  }

  .hero__credits {
    display: none;
    text-align: left;
  }

  .trust-band {
    width: calc(100% - 20px);
    margin-top: 16px;
    grid-template-columns: 1fr;
  }

  .comparison-section,
  .international-section,
  .review-strip,
  .service-preview,
  .service-intro,
  .service-section,
  .service-flow,
  .assurance-section,
  .payment-section {
    width: calc(100% - 20px);
  }

  .comparison-section {
    padding-top: 48px;
  }

  .comparison-layout,
  .international-panel,
  .international-grid,
  .review-strip,
  .service-intro,
  .service-intro__facts,
  .service-preview-grid,
  .service-grid,
  .service-flow__steps,
  .assurance-section,
  .payment-section {
    grid-template-columns: 1fr;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px;
  }

  .service-preview {
    padding-top: 48px;
  }

  .service-intro {
    padding-top: 48px;
  }

  .service-intro__copy {
    padding: 22px;
  }

  .service-intro__facts div {
    min-height: 116px;
    padding: 18px;
  }

  .service-flow {
    padding: 18px 0 28px;
  }

  .service-flow__steps article {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-flow__steps article:last-child {
    border-bottom: 0;
  }

  .assurance-section {
    padding-bottom: 48px;
  }

  .assurance-section figure,
  .assurance-section img {
    min-height: 280px;
  }

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

  .price-compare-banner {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .trust-band div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .booking-layout {
    width: calc(100% - 20px);
    margin-top: 28px;
    margin-bottom: 42px;
  }

  .price-section {
    padding: 44px 0 50px;
  }

  .price-section__inner {
    width: calc(100% - 20px);
  }

  .price-section h2 {
    font-size: 2rem;
  }

  .plan-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid article.is-featured {
    transform: none;
  }

  .process-section {
    width: calc(100% - 20px);
    padding-top: 48px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .public-price-card {
    padding: 18px 12px 20px;
  }

  .public-price-head {
    align-items: start;
    flex-direction: column;
  }

  .public-price-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.74rem;
  }

  .public-price-table th,
  .public-price-table td {
    padding: 8px 5px;
    word-break: normal;
  }

  .footer-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 28px;
  }

  .footer-bottom {
    width: calc(100% - 32px);
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-bottom > span:last-child,
  .footer-legal,
  .footer-design {
    justify-self: start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero__content {
    width: calc(100% - 20px);
    padding: 214px 0 56px;
  }

  .content-section {
    width: calc(100% - 20px);
    padding: 48px 0;
  }

  .legal-section {
    width: calc(100% - 20px);
    padding: 48px 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .cta-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-layout {
    display: grid;
  }

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

  .gallery-section {
    width: calc(100% - 20px);
    padding: 48px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.is-large,
  .gallery-item.is-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox figure {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 72px);
  }

  .gallery-lightbox img {
    max-height: calc(100vh - 170px);
  }

  .gallery-lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 13px;
  }

  .gallery-lightbox figcaption strong {
    text-align: left;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .lightbox-nav {
    width: 40px;
    height: 52px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .booking-form,
  .summary-panel,
  .progress-panel {
    padding: 16px;
  }

  .field-grid.two,
  .addon-grid,
  .payment-grid,
  .receipt {
    grid-template-columns: 1fr;
  }

  .option-grid,
  .search-trust {
    grid-template-columns: 1fr;
  }

  .compare-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .compare-chips {
    justify-content: flex-start;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

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

  .offer-price {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .offer-price b {
    grid-row: auto;
    text-align: left;
  }

  .form-header,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .map-section {
    min-height: 420px;
  }

  .map-section__content {
    width: calc(100% - 20px);
    min-height: 420px;
    padding: 22px 0;
    justify-content: flex-start;
  }

  .map-section__content::before {
    inset: 18px 0 auto;
    width: 100%;
    height: 238px;
    border-radius: 14px;
  }

  .map-section .eyebrow {
    padding-left: 20px;
  }

  .map-section__content h2,
  .map-section__content p:not(.eyebrow),
  .map-section__actions {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .map-section__actions {
    flex-direction: column;
    margin-top: 18px;
  }

  .map-section__frame,
  .map-section__frame iframe {
    min-height: 420px;
  }

  .map-section__frame iframe {
    padding-top: 250px;
    box-sizing: border-box;
  }
}
