:root {
  --ink: #141512;
  --ivory: #f3f0e8;
  --paper: #faf9f5;
  --forest: #183831;
  --sage: #9c9b8f;
  --bronze: #b49b66;
  --line: rgba(20, 21, 18, 0.2);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body.menu-open .site-header {
  background: var(--ivory);
  backdrop-filter: none;
}

body.menu-open .whatsapp-float {
  visibility: hidden;
  opacity: 0;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  background: rgba(243, 240, 232, 0.96);
  border-bottom: 1px solid rgba(20, 21, 18, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand-crop {
  position: relative;
  display: block;
  width: 112px;
  height: 87px;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  width: 244px;
  max-width: none;
  left: -65px;
  top: -88px;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:not(.nav-cta) {
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  border-color: var(--ink);
}

.nav-cta {
  min-width: 118px;
  padding: 12px 22px !important;
  color: var(--ivory);
  background: var(--ink);
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 650px;
  height: calc(100vh - 150px);
  max-height: 780px;
  overflow: hidden;
  background: #d6d0c6;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 240, 232, 0) 82%, rgba(243, 240, 232, 0.42) 100%),
    linear-gradient(90deg, rgba(244, 241, 234, 0.96) 0%, rgba(244, 241, 234, 0.73) 31%, rgba(244, 241, 234, 0) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 64px));
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
  padding-top: 13vh;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 780px;
  font-size: 76px;
  line-height: 0.98;
}

.hero-copy {
  max-width: 500px;
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--bronze);
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 9px;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(670px, calc(100% - 64px));
  color: var(--ivory);
  background: var(--forest);
}

.hero-proof span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px 22px;
  border-left: 1px solid rgba(243, 240, 232, 0.2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(300px, 0.85fr) minmax(440px, 1.15fr);
  gap: 52px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 32px;
}

.section-index {
  padding-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.section h2,
.journey-statement h2,
.contact h2 {
  font-size: 52px;
  line-height: 1.08;
}

.intro-copy .lead {
  max-width: 650px;
  margin: 0 0 60px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.42;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 50px 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  font-size: 12px;
  color: #67695f;
}

.principles h3,
.process-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.principles p,
.process-list p {
  margin: 0;
  color: #55594f;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  grid-template-rows: 165px 500px 150px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px 140px;
}

.editorial-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.editorial-gallery figure::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 34px 10px rgba(243, 240, 232, 0.58);
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.97);
}

.gallery-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-main img {
  object-position: 50% 38%;
}

.gallery-copy {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  align-self: end;
  padding: 0 0 34px 72px;
}

.gallery-copy .eyebrow {
  margin-bottom: 10px;
}

.gallery-copy blockquote {
  font-size: 42px;
}

.gallery-copy > p:last-child {
  max-width: 590px;
  margin: 14px 0 0;
  color: #55594f;
}

.gallery-detail {
  position: relative;
  grid-column: 2 / 4;
  grid-row: 2 / 4;
  margin-left: 72px !important;
}

.gallery-detail img {
  object-position: 50% 48%;
}

.gallery-detail figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  min-width: 320px;
  padding: 22px 28px;
  color: var(--ivory);
  background: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.section-dark {
  color: var(--ivory);
}

.services {
  max-width: none;
  grid-template-columns: minmax(72px, calc((100vw - var(--max)) / 2 + 72px)) minmax(300px, 0.85fr) minmax(440px, 1.15fr);
  padding-left: max(32px, calc((100vw - var(--max)) / 2));
  padding-right: max(32px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
}

.services-heading > p:last-child {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(243, 240, 232, 0.65);
}

.service-list {
  border-top: 1px solid rgba(243, 240, 232, 0.22);
}

.service-list details {
  border-bottom: 1px solid rgba(243, 240, 232, 0.22);
}

.service-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  list-style: none;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.service-list summary::-webkit-details-marker {
  display: none;
}

.service-list summary i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.service-list summary i::before,
.service-list summary i::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: var(--ivory);
}

.service-list summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.service-list details[open] summary i::after {
  transform: rotate(0);
}

.service-list details p {
  max-width: 600px;
  margin: -4px 50px 26px 0;
  color: rgba(243, 240, 232, 0.66);
}

.journey-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.journey-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.journey-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 13, 0.84), rgba(10, 15, 13, 0.12) 70%);
}

.journey-statement {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - var(--max)) / 2));
  bottom: 100px;
  width: min(640px, calc(100% - 64px));
}

.process {
  grid-template-columns: 72px minmax(330px, 0.9fr) minmax(500px, 1.1fr);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 24px 28px 20px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.process-list span {
  display: block;
  margin-bottom: 80px;
  font-size: 12px;
}

.process-list h3 {
  margin-bottom: 14px;
}

.tariffs {
  padding: 104px 32px 96px;
  background: var(--paper);
}

.tariffs-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.tariffs-heading {
  margin-bottom: 18px;
}

.tariffs-heading h2,
.tariffs-contact h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.tariffs-heading h2 {
  font-size: 58px;
  line-height: 1;
}

.tariffs-heading p {
  margin: 10px 0 0;
  color: #77746a;
  font-size: 18px;
}

.tariffs-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(20, 21, 18, 0.15);
}

.tariffs-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}

.tariffs-table th,
.tariffs-table td {
  padding: 14px 12px;
  border-right: 1px solid rgba(20, 21, 18, 0.15);
  border-bottom: 1px solid rgba(20, 21, 18, 0.14);
  vertical-align: middle;
}

.tariffs-table th:last-child,
.tariffs-table td:last-child {
  border-right: 0;
}

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

.tariffs-table th {
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--paper);
  background: #514c3d;
  font-size: 16px;
  font-weight: 700;
}

.tariffs-table th:nth-child(1) { width: 39%; }
.tariffs-table th:nth-child(2) { width: 18%; }
.tariffs-table th:nth-child(3) { width: 43%; }

.tariffs-table td {
  font-size: 17px;
  line-height: 1.35;
}

.tariffs-table td:nth-child(2) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.tariffs-table tbody tr.tariff-row-alt {
  background: #f0efeb;
}

.tariffs-note {
  margin: 14px 4px 14px;
  color: #99958b;
  font-size: 14px;
  font-style: italic;
}

.tariffs-contact {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 38px;
  border: 1px solid rgba(20, 21, 18, 0.12);
  border-radius: 7px;
  background: #f1f0ec;
}

.tariffs-contact h3 {
  flex: 0 0 auto;
  font-size: 26px;
  line-height: 1.2;
}

.tariffs-contact p {
  margin: 0;
  font-size: 17px;
}

.tariffs-contact a {
  border-bottom: 1px solid transparent;
}

.tariffs-contact a:hover,
.tariffs-contact a:focus-visible {
  border-color: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 860px;
  color: var(--ivory);
  background: var(--forest);
}

.contact-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.contact-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(24, 56, 49, 0) 86%, var(--forest) 100%);
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 45%;
  filter: saturate(0.9) contrast(0.97);
}

.contact-panel {
  align-self: center;
  width: min(690px, calc(100% - 80px));
  padding: 90px 0 90px 80px;
}

.contact-panel h2 {
  max-width: 680px;
}

.booking-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 7px 0;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243, 240, 232, 0.52);
  border-radius: 0;
  outline: 0;
}

.field input {
  height: 50px;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
  font: inherit;
}

.field label span {
  color: rgba(243, 240, 232, 0.58);
  font-weight: 400;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--bronze);
}

.button-light {
  width: 100%;
  margin-top: 14px;
  color: var(--ink);
  background: var(--ivory);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--bronze);
}

.button-light:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: rgba(243, 240, 232, 0.72);
  font-size: 13px;
}

.form-status.is-success {
  color: #9ee0b7;
}

.form-status.is-error {
  color: #f0b7aa;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 240, 232, 0.2);
  font-size: 13px;
}

.direct-contact a {
  border-bottom: 1px solid rgba(243, 240, 232, 0.5);
}

.direct-contact [data-kind="whatsapp"] {
  padding: 5px 10px;
  color: var(--ink);
  background: var(--bronze);
  border-bottom: 0;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 152px;
  min-height: 52px;
  padding: 13px 16px;
  color: #0d241a;
  background: #53d889;
  border: 1px solid rgba(13, 36, 26, 0.22);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(13, 36, 26, 0.22);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #75e5a3;
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 150px;
  padding: 28px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--ivory);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-brand .brand-crop {
  width: 150px;
  height: 116px;
}

.footer-brand .brand-crop img {
  width: 328px;
  left: -87px;
  top: -118px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 62px;
  }

  .section {
    grid-template-columns: 50px 1fr 1.25fr;
    gap: 32px;
  }

  .section h2,
  .journey-statement h2,
  .contact h2 {
    font-size: 44px;
  }

  .principles article {
    grid-template-columns: 40px 1fr;
  }

  .principles article p {
    grid-column: 2;
  }

  .editorial-gallery {
    grid-template-rows: 145px 440px 110px;
  }

  .gallery-copy,
  .gallery-detail {
    margin-left: 40px !important;
    padding-left: 0;
  }

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

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

  .process-list li {
    min-height: auto;
    padding: 24px 0;
  }

  .process-list li + li {
    padding-left: 0;
    border-left: 0;
  }

  .process-list span {
    margin-bottom: 28px;
  }

  .contact-panel {
    width: calc(100% - 48px);
    padding-left: 48px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 88px;
    padding: 0 20px;
  }

  .brand-crop {
    width: 88px;
    height: 68px;
  }

  .brand-crop img {
    width: 192px;
    left: -51px;
    top: -69px;
  }

  .menu-toggle {
    position: relative;
    z-index: 120;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 110;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: calc(100dvh - 88px);
    padding: 28px 20px 32px;
    overflow-y: auto;
    background: var(--ivory);
    border-top: 1px solid rgba(20, 21, 18, 0.12);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: none;
    transition: opacity 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .nav-cta {
    min-width: 0;
    margin-top: 28px;
    padding: 17px 20px !important;
    color: var(--ivory);
    background: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 110px);
    max-height: 740px;
  }

  .hero-media {
    object-position: 60% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(244, 241, 234, 0.98) 0%, rgba(244, 241, 234, 0.78) 42%, rgba(244, 241, 234, 0.04) 68%, rgba(243, 240, 232, 0.32) 100%);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding-top: 64px;
  }

  h1 {
    max-width: 350px;
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 360px;
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .hero-proof {
    right: 0;
    left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero-proof span {
    min-height: 56px;
    padding: 9px 10px;
    border-left: 1px solid rgba(243, 240, 232, 0.2);
    font-size: 9px;
  }

  .section,
  .services {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 96px 20px;
  }

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

  .section h2,
  .journey-statement h2,
  .contact h2 {
    font-size: 38px;
  }

  .intro-copy .lead {
    margin-bottom: 42px;
    font-size: 23px;
  }

  .principles article {
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }

  .editorial-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 26px;
    padding: 0 20px 96px;
  }

  .gallery-main,
  .gallery-copy,
  .gallery-detail {
    grid-column: 1;
    grid-row: auto;
    margin: 0 !important;
    padding: 0;
  }

  .gallery-main {
    height: 480px;
  }

  .gallery-copy blockquote {
    font-size: 34px;
  }

  .gallery-detail {
    height: 520px;
  }

  .gallery-detail figcaption {
    min-width: 0;
    width: 85%;
    padding: 18px;
    font-size: 17px;
  }

  .services-heading > p:last-child {
    margin-top: 20px;
  }

  .service-list summary {
    min-height: 70px;
    font-size: 19px;
  }

  .journey-image {
    min-height: 650px;
  }

  .journey-image > img {
    object-position: 60% 50%;
  }

  .journey-statement {
    left: 20px;
    bottom: 60px;
    width: calc(100% - 40px);
  }

  .tariffs {
    padding: 80px 20px;
  }

  .tariffs-heading h2 {
    font-size: 44px;
  }

  .tariffs-heading p {
    font-size: 16px;
  }

  .tariffs-table th,
  .tariffs-table td {
    padding: 13px 12px;
  }

  .tariffs-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px;
  }

  .tariffs-contact h3 {
    font-size: 23px;
  }

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

  .contact-media {
    min-height: 520px;
  }

  .contact-media::after {
    background: linear-gradient(180deg, rgba(24, 56, 49, 0) 84%, var(--forest) 100%);
  }

  .contact-panel {
    width: 100%;
    padding: 90px 20px;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 20px;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 132px;
    min-height: 48px;
    padding: 11px 13px;
    transition: background-color 160ms ease, transform 160ms ease, opacity 120ms ease;
  }
}

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

  * {
    transition: none !important;
  }
}
