:root {
  --white: #FFFFFF;
  --clean-white: #FBF7F4;
  --soft-white: #F8F8F6;
  --ink: #080808;
  --ink-soft: #34302D;
  --crimson: #8B0015;
  --dark-crimson: #5E000E;
  --gold: #CBA24A;
  --gold-soft: #D6B766;
  --gold-pale: #E8D7AE;
  --line: rgba(203, 162, 74, 0.24);
  --shadow: 0 8px 24px rgba(8, 8, 8, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell,
.announcement,
.site-header,
main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 112px;
  min-height: 32px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 13px;
  font-weight: 500;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.announcement svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 12px 40px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.14);
  background: var(--white);
}

.brand {
  display: grid;
  width: 136px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 500;
}

.brand-rule {
  width: 104px;
  height: 1px;
  margin: -2px 0 4px;
  background: var(--gold-soft);
}

.brand-sub {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a,
.mobile-menu a {
  position: relative;
  padding: 8px 0;
}

.main-nav .active,
.mobile-menu .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.book-button,
.select-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-button {
  min-width: 256px;
  height: 44px;
  padding: 0 22px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.16);
}

.book-button svg,
.light-btn svg {
  width: 16px;
  height: 16px;
}

.book-short {
  display: none;
}

.icon-link {
  position: relative;
  display: grid;
  width: 24px;
  height: 44px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.bag-count {
  position: absolute;
  top: 3px;
  right: -7px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 10px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  background: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 32%, rgba(255, 255, 255, 0.74) 47%, rgba(255, 255, 255, 0) 74%);
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 52%;
  min-width: 610px;
  padding: 20px 36px 22px 48px;
}

.eyebrow {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.2px;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.package-card h3,
.booking-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(44px, 3.65vw, 52px);
  line-height: 0.98;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  display: inline-block;
  color: var(--dark-crimson);
  font-style: italic;
}

.hero-heart {
  color: #B4640A;
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.58em;
  font-weight: 300;
}

.hero-text {
  max-width: 440px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.value-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 640px;
  margin-top: 16px;
}

.value-chips article {
  min-height: 78px;
  padding: 0 18px;
  text-align: center;
}

.value-chips article:first-child {
  padding-left: 0;
}

.value-chips article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.26);
}

.value-chips svg {
  width: 31px;
  height: 31px;
  margin: 0 auto 8px;
  color: #B4640A;
  stroke-width: 1.35;
}

.value-chips strong {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.value-chips span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.proof-card {
  position: absolute;
  top: 54px;
  right: 44px;
  z-index: 3;
  width: 224px;
  min-height: 174px;
  padding: 18px 24px 18px;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 8px;
  background: rgba(251, 247, 244, 0.94);
  box-shadow: 0 14px 36px rgba(8, 8, 8, 0.16);
}

.proof-card > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 0.7;
}

.proof-card p {
  margin: 6px 0 16px;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  line-height: 1.22;
}

.proof-card div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  align-items: center;
}

.proof-card img {
  grid-row: 1 / 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-card strong {
  color: var(--dark-crimson);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.proof-card small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
}

.proof-card b {
  margin-top: 5px;
  color: #B4640A;
  font-size: 11px;
  letter-spacing: 1px;
}

.pricing-section {
  padding: 12px 44px 12px;
  background: var(--white);
}

.section-heading {
  display: block;
  margin-bottom: 12px;
}

.section-heading h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
  text-align: right;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 372px;
  gap: 22px;
  align-items: start;
}

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

.package-card,
.addons-panel {
  border: 1px solid rgba(203, 162, 74, 0.24);
  border-radius: 8px;
  background: rgba(251, 247, 244, 0.38);
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.04);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 20px 22px 14px;
  text-align: center;
}

.package-card.featured {
  border-color: rgba(139, 0, 21, 0.55);
  background: var(--clean-white);
}

.badge {
  position: absolute;
  top: -8px;
  left: 50%;
  min-width: 206px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 3px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
}

.package-kicker {
  margin: 0 0 2px;
  color: var(--dark-crimson);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 25px;
  line-height: 0.95;
  text-transform: uppercase;
}

.package-card h3 em {
  display: block;
  color: #B4640A;
  font-size: 20px;
  font-style: italic;
  text-transform: none;
}

.package-copy {
  min-height: 46px;
  margin: 12px 0 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.price {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.price small {
  display: inline-block;
  color: var(--ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.price small:first-child {
  display: block;
  margin-bottom: 3px;
}

.package-card h4,
.addons-panel h3 {
  margin: 0 0 8px;
  color: var(--dark-crimson);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}

.package-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 9px;
  content: "✓";
}

.select-btn {
  width: 100%;
  min-height: 36px;
  margin-top: auto;
}

.select-btn.outline {
  border: 1px solid rgba(94, 0, 14, 0.78);
  color: var(--dark-crimson);
  background: rgba(255, 255, 255, 0.56);
}

.select-btn.filled {
  color: var(--white);
  background: var(--dark-crimson);
}

.addons-panel {
  padding: 18px 24px;
}

.addons-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.addons-panel div {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 20px;
}

.addons-panel div::before {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(52, 48, 45, 0.46);
  border-radius: 2px;
  content: "";
}

.addons-panel dt,
.addons-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.addons-panel dd {
  font-weight: 600;
}

.reassurance-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 44px 8px;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 8px;
  background: var(--clean-white);
  overflow: hidden;
}

.reassurance-strip article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 16px 22px;
}

.reassurance-strip article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.22);
}

.reassurance-strip svg {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  color: #B4640A;
  stroke-width: 1.4;
}

.reassurance-strip strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 1.2;
  text-transform: uppercase;
}

.reassurance-strip span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.booking-band {
  display: grid;
  grid-template-columns: 204px 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  margin: 0 44px 8px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-crimson);
}

.booking-band img {
  width: 204px;
  height: 68px;
  object-fit: cover;
}

.booking-band h2 {
  margin: 0 0 2px;
  font-size: 26px;
  line-height: 1;
}

.booking-band p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.light-btn {
  min-width: 248px;
  min-height: 42px;
  padding: 0 20px;
  color: var(--dark-crimson);
  background: var(--white);
}

.call-link {
  padding-right: 32px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 360px;
  gap: 48px;
  padding: 16px 48px 14px;
  overflow: hidden;
  background: var(--clean-white);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 13px;
  margin-top: 20px;
  color: var(--ink);
}

.socials a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.newsletter {
  position: relative;
  min-height: 156px;
  padding-left: 32px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 240px;
  height: 40px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.16);
  border-radius: 4px;
  background: var(--white);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 48px 0 16px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 400;
}

.newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  color: var(--crimson);
  background: transparent;
}

.newsletter button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.newsletter img {
  position: absolute;
  right: -16px;
  top: 72px;
  width: 208px;
  height: 122px;
  object-fit: cover;
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}

.legal nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1360px) {
  .announcement {
    gap: 40px;
  }

  .site-header {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 18px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .book-button {
    min-width: 214px;
  }

  .header-actions {
    gap: 14px;
  }

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

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

  .booking-band {
    grid-template-columns: 160px 1fr auto;
  }

  .booking-band img {
    width: 160px;
  }

  .call-link {
    grid-column: 2 / 4;
    padding: 0 0 18px;
  }

  .site-footer {
    grid-template-columns: 200px 1fr;
  }

  .newsletter {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid rgba(203, 162, 74, 0.24);
    border-left: 0;
  }
}

@media (max-width: 1040px) {
  .announcement {
    gap: 12px;
    padding: 8px 16px;
    flex-wrap: wrap;
  }

  .announce-item {
    justify-content: center;
    white-space: normal;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    max-width: 100vw;
    gap: 12px;
    padding: 14px 16px;
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mobile-menu {
    display: block;
    order: 0;
  }

  .mobile-menu summary {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 7px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 22px;
    height: 1px;
    margin: 3px 0;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 16px;
    display: grid;
    gap: 8px;
    width: min(276px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid rgba(203, 162, 74, 0.28);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 36px rgba(8, 8, 8, 0.12);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }

  .brand {
    width: 112px;
  }

  .brand-main {
    font-size: 46px;
  }

  .brand-rule {
    width: 88px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .header-actions .icon-link {
    display: none;
  }

  .book-button {
    min-width: 150px;
    height: 42px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .book-button svg {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.24) 100%);
  }

  .hero-image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 40%;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 28px 24px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: 52px;
  }

  .value-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
    max-width: 600px;
  }

  .value-chips article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-card {
    top: auto;
    right: 24px;
    bottom: 34px;
  }

  .pricing-section {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .reassurance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-right: 24px;
    margin-left: 24px;
  }

  .reassurance-strip article + article {
    border-left: 0;
  }

  .reassurance-strip article:nth-child(even) {
    border-left: 1px solid rgba(203, 162, 74, 0.22);
  }

  .reassurance-strip article:nth-child(n+3) {
    border-top: 1px solid rgba(203, 162, 74, 0.22);
  }

  .booking-band {
    margin-right: 24px;
    margin-left: 24px;
  }
}

@media (max-width: 680px) {
  .announcement {
    font-size: 12px;
  }

  .book-button {
    min-width: 88px;
  }

  .book-full {
    display: none;
  }

  .book-short {
    display: inline;
  }

  .hero {
    min-height: 860px;
  }

  .hero-copy {
    padding: 24px 16px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-text {
    max-width: 340px;
    font-size: 16px;
  }

  .value-chips {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .value-chips article,
  .value-chips article:first-child,
  .value-chips article:nth-child(3) {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    min-height: 0;
    padding: 0;
    text-align: left;
    border-left: 0;
  }

  .value-chips svg {
    grid-row: 1 / 3;
    margin: 0;
  }

  .proof-card {
    right: 16px;
    bottom: 24px;
    width: min(250px, calc(100vw - 32px));
  }

  .pricing-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .section-heading h2 {
    text-align: left;
  }

  .package-grid,
  .addons-panel dl {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 0;
  }

  .reassurance-strip {
    grid-template-columns: 1fr;
    margin-right: 16px;
    margin-left: 16px;
  }

  .reassurance-strip article:nth-child(even) {
    border-left: 0;
  }

  .reassurance-strip article + article,
  .reassurance-strip article:nth-child(n+3) {
    border-top: 1px solid rgba(203, 162, 74, 0.22);
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-right: 16px;
    margin-left: 16px;
    padding: 0 20px 22px;
  }

  .booking-band img {
    width: calc(100% + 40px);
    height: 84px;
    margin: 0 -20px;
  }

  .booking-band h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .light-btn {
    width: 100%;
    min-width: 0;
  }

  .call-link {
    grid-column: auto;
    padding: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 16px 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .newsletter {
    min-height: 238px;
  }

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

  .legal nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}
