:root {
  --paper: #fffdf8;
  --bone: #fbf8f2;
  --cream: #f5efe7;
  --blue: #7894a4;
  --blue-dark: #638397;
  --ink: #292928;
  --muted: #6f6961;
  --gold: #b5a17e;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #eee9e1;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-frame {
  position: relative;
  width: min(100%, 1024px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 80px rgba(41, 41, 40, 0.08);
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 20px;
  left: 58px;
  right: 86px;
  display: grid;
  grid-template-columns: 150px 1fr 108px;
  align-items: start;
  gap: 24px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  border-radius: 0;
}

.logo-link img {
  width: 152px;
  height: 136px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 1;
  filter: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 13px;
  color: rgba(41, 41, 40, 0.86);
  font-size: 13px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.header-cta {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(120, 148, 164, 0.28);
}

.hero-section {
  position: relative;
  min-height: 590px;
  background:
    radial-gradient(circle at 87% 4%, rgba(224, 214, 200, 0.65), transparent 25%),
    radial-gradient(circle at 60% 48%, rgba(221, 231, 226, 0.45), transparent 18%),
    linear-gradient(105deg, #fffdf8 0%, #fbf8f2 55%, #efe9e2 100%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 94% 8%, transparent 0 15%, rgba(181, 161, 126, 0.22) 15.2% 15.4%, transparent 15.6%),
    radial-gradient(circle at 98% 19%, transparent 0 18%, rgba(181, 161, 126, 0.16) 18.2% 18.4%, transparent 18.6%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 65px;
  top: 210px;
  width: 400px;
}

.kicker {
  margin: 0;
  color: #426f8d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker.small {
  font-size: 10px;
  letter-spacing: 0.38em;
}

.hero-copy h1 {
  margin: 15px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 61px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.93;
}

.hero-copy h1 em {
  display: block;
  color: var(--blue);
  font-style: italic;
}

.hero-text {
  width: 360px;
  margin: 20px 0 0;
  color: rgba(41, 41, 40, 0.76);
  font-size: 15px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-width: 168px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.primary-btn {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(120, 148, 164, 0.28);
}

.secondary-btn {
  border: 1px solid rgba(41, 41, 40, 0.42);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.safe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 0;
  color: rgba(111, 105, 97, 0.82);
  font-size: 12px;
  width: 100%;
}

.safe-note span {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.hero-portrait-wrap {
  position: absolute;
  right: 22px;
  bottom: -6px;
  width: 380px;
  height: 500px;
}

.hero-person {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.about-section {
  position: relative;
  min-height: 263px;
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 34px;
  align-items: center;
  padding: 0 72px 0 135px;
  background: var(--paper);
}

.about-water {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 160px;
  height: 90px;
  background: linear-gradient(150deg, rgba(201, 221, 220, 0.8), transparent);
  opacity: 0.72;
}

.about-copy {
  margin-left: 0;
  padding-top: 8px;
}

.about-copy h2 {
  margin: 15px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.about-copy h2 em {
  color: var(--blue);
}

.about-copy p:not(.kicker) {
  width: 350px;
  margin: 18px 0 0;
  color: rgba(41, 41, 40, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.about-copy a {
  display: inline-flex;
  gap: 12px;
  margin-top: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.license-badge {
  display: inline-flex;
  margin-top: 13px;
  border: 1px solid rgba(120, 148, 164, 0.28);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(255, 253, 248, 0.66);
  color: rgba(41, 41, 40, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-features {
  display: grid;
  gap: 25px;
  padding-top: 9px;
}

.about-features article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
}

.about-features span {
  display: grid;
  width: 40px;
  height: 32px;
  place-items: center;
  color: #9b7d62;
  font-size: 27px;
}

.about-features p {
  margin: 0;
  color: rgba(41, 41, 40, 0.74);
  font-size: 12px;
  line-height: 1.45;
}

.services-section {
  min-height: 255px;
  padding: 22px 92px 24px;
  background: #f6f0e8;
  text-align: center;
}

.services-section h2 {
  margin: 11px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.service-card {
  min-height: 155px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 11px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 42px rgba(41, 41, 40, 0.07);
  padding: 19px 13px 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(41, 41, 40, 0.1);
}

.service-card span {
  display: block;
  min-height: 36px;
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
}

.service-card h3 {
  min-height: 35px;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 0.96;
}

.service-card p {
  margin: 9px 0 0;
  color: rgba(41, 41, 40, 0.7);
  font-size: 10px;
  line-height: 1.42;
}

.why-section {
  padding: 30px 84px 34px;
  background: var(--paper);
  text-align: center;
}

.why-section h2 {
  margin: 11px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.04;
}

.why-section h2 em {
  color: var(--blue);
  font-style: italic;
}

.why-intro {
  width: min(560px, 100%);
  margin: 14px auto 0;
  color: rgba(41, 41, 40, 0.74);
  font-size: 12px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 11px;
  background: rgba(245, 239, 231, 0.6);
  box-shadow: 0 14px 34px rgba(41, 41, 40, 0.06);
  padding: 18px 14px 16px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(41, 41, 40, 0.1);
}

.why-card span {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.why-card h3 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.why-card p {
  margin: 8px 0 0;
  color: rgba(41, 41, 40, 0.7);
  font-size: 10.5px;
  line-height: 1.45;
}

.quote-section {
  position: relative;
  height: 138px;
  overflow: hidden;
}

.quote-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.54), rgba(251, 248, 242, 0.66), rgba(251, 248, 242, 0.48)),
    linear-gradient(180deg, rgba(251, 248, 242, 0.12), rgba(251, 248, 242, 0.2));
}

.quote-section blockquote {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 33px 24px 0;
  color: rgba(41, 41, 40, 0.84);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 1px 18px rgba(255, 253, 248, 0.86);
}

.quote-section blockquote em {
  color: var(--blue);
}

.booking-section {
  min-height: 245px;
  display: grid;
  grid-template-columns: 290px 1fr 220px;
  gap: 32px;
  padding: 32px 84px 30px;
  background: var(--paper);
}

.booking-copy h2 {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.booking-copy p:not(.kicker) {
  width: 260px;
  margin: 18px 0 0;
  color: rgba(111, 105, 97, 0.86);
  font-size: 11px;
  line-height: 1.6;
}

.booking-copy ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(41, 41, 40, 0.78);
  font-size: 12px;
}

.booking-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-copy li span {
  color: var(--blue);
}

.booking-form {
  display: grid;
  align-content: center;
  gap: 10px;
  padding-top: 8px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 29px;
  border: 1px solid rgba(41, 41, 40, 0.13);
  border-radius: 4px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 10px;
  outline: none;
  padding: 0 10px;
}

.booking-form button {
  display: inline-flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.calendar-card {
  min-height: 202px;
  border: 1px solid rgba(41, 41, 40, 0.08);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 42px rgba(41, 41, 40, 0.08);
  padding: 22px 22px 15px;
  text-align: center;
}

.calendar-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.calendar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 11px;
  color: rgba(41, 41, 40, 0.8);
  font-size: 11px;
}

.calendar-title button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.calendar-title button:disabled {
  color: rgba(111, 105, 97, 0.28);
  cursor: default;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  color: rgba(41, 41, 40, 0.72);
  font-size: 10px;
}

.calendar-grid span,
.calendar-grid button {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
}

.calendar-grid button {
  border: 0;
  background: transparent;
  color: rgba(41, 41, 40, 0.76);
  font: inherit;
  cursor: pointer;
}

.calendar-grid button:hover {
  background: rgba(120, 148, 164, 0.14);
  color: var(--ink);
}

.calendar-grid button:disabled {
  color: rgba(111, 105, 97, 0.28);
  cursor: default;
}

.calendar-grid button:disabled:hover {
  background: transparent;
}

.calendar-grid .calendar-weekday {
  color: var(--blue);
  font-weight: 700;
}

.calendar-grid .today {
  box-shadow: inset 0 0 0 1px rgba(120, 148, 164, 0.52);
}

.calendar-grid .active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(120, 148, 164, 0.24);
}

.calendar-selection {
  min-height: 15px;
  margin: 10px 0 0;
  color: rgba(41, 41, 40, 0.64);
  font-size: 10px;
  line-height: 1.35;
}

.testimonials-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px 84px;
  background: #f6f0e8;
}

.testimonials-section article {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 36px rgba(41, 41, 40, 0.06);
  padding: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.18;
}

.site-footer {
  background: var(--paper);
}

.footer-main {
  min-height: 95px;
  display: grid;
  grid-template-columns: 245px 1fr 340px;
  gap: 34px;
  align-items: center;
  padding: 16px 65px 10px;
}

.footer-main img {
  width: 124px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.72;
  filter: contrast(0.88) saturate(0.76) brightness(1.08);
}

.footer-main p,
.newsletter label {
  display: block;
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-line,
.footer-main a,
.newsletter span,
.footer-license {
  display: block;
  color: rgba(41, 41, 40, 0.72);
  font-size: 11px;
}

.footer-license {
  color: rgba(41, 41, 40, 0.58);
  font-weight: 600;
}

.footer-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
}

.footer-line span:last-child {
  min-width: 0;
}

.contact-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(111, 105, 97, 0.1);
  color: var(--muted);
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-license {
  background: rgba(181, 161, 126, 0.16);
  color: var(--gold);
}

.footer-whatsapp .contact-icon {
  background: #3f9f72;
  color: #fff;
  box-shadow: 0 8px 18px rgba(63, 159, 114, 0.22);
}

.footer-whatsapp .contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.footer-instagram .contact-icon {
  background: rgba(193, 91, 127, 0.14);
  color: #c15b7f;
}

.footer-mail .contact-icon {
  background: rgba(120, 148, 164, 0.15);
  color: var(--blue);
}

.newsletter div {
  display: flex;
  gap: 7px;
  margin-top: 9px;
}

.newsletter input {
  width: 155px;
  height: 29px;
  border: 1px solid rgba(41, 41, 40, 0.13);
  border-radius: 4px;
  background: #fffdf8;
  padding: 0 10px;
  font-size: 10px;
}

.newsletter button {
  width: 32px;
  height: 29px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.newsletter button:hover {
  background: var(--blue-dark);
}

.newsletter-status {
  min-height: 14px;
  margin: 7px 0 0;
  color: rgba(41, 41, 40, 0.58);
  font-size: 10px;
  line-height: 1.3;
}

.footer-bar {
  min-height: 25px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 52px;
  align-items: center;
  padding: 0 65px;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
}

.footer-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bar a:hover {
  color: #fff;
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  color: var(--ink);
}

.legal-back {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.legal-page h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.05;
}

.legal-updated {
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.legal-page h2 {
  margin: 30px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--blue-dark);
}

.legal-page p {
  margin: 12px 0 0;
  color: rgba(41, 41, 40, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.legal-page a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.legal-note {
  margin-top: 36px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(181, 161, 126, 0.08);
  font-size: 12.5px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: max(20px, calc((100vw - 1024px) / 2 + 20px));
  bottom: 20px;
  display: none;
  align-items: center;
  gap: 16px;
  max-width: 440px;
  border: 1px solid rgba(41, 41, 40, 0.08);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 18px 44px rgba(41, 41, 40, 0.16);
  padding: 14px 16px;
  backdrop-filter: blur(4px);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: rgba(41, 41, 40, 0.8);
  font-size: 11.5px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 0 0 auto;
}

.cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: 7px 16px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner #cookie-accept {
  background: var(--blue);
  color: #fff;
}

.cookie-banner #cookie-accept:hover {
  background: var(--blue-dark);
}

.cookie-banner .cookie-reject {
  background: transparent;
  border: 1px solid rgba(41, 41, 40, 0.2);
  color: rgba(41, 41, 40, 0.7);
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: max(28px, calc((100vw - 1024px) / 2 + 28px));
  bottom: 32px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: #699889;
  color: #fff;
  box-shadow: 0 16px 34px rgba(73, 123, 106, 0.26);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-template-columns: 1fr auto;
    padding: 18px 22px 0;
  }

  .logo-link img {
    width: 118px;
    height: 112px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-width: 110px;
    margin-top: 8px;
  }

  .site-header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    border-radius: 0;
    padding: 18px 22px 0;
  }

  .hero-section {
    min-height: auto;
    display: grid;
    gap: 20px;
    padding: 28px 22px 0;
  }

  .hero-copy,
  .hero-portrait-wrap,
  .hero-person {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-copy {
    max-width: 440px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-text {
    width: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-portrait-wrap {
    height: auto;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-person {
    height: auto;
    object-position: 50% 50%;
  }

  .about-section,
  .booking-section,
  .footer-main,
  .testimonials-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 46px 22px;
  }

  .about-copy {
    margin-left: 0;
  }

  .about-copy p:not(.kicker) {
    width: auto;
  }

  .services-section {
    padding: 46px 22px;
  }

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

  .why-section {
    padding: 40px 22px;
  }

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

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-banner button {
    flex: 1;
  }

  .booking-section {
    padding: 46px 22px;
  }

  .booking-copy p:not(.kicker) {
    width: auto;
  }

  .footer-main {
    padding: 34px 22px;
  }

  .footer-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 22px;
    text-align: center;
  }
}
