:root {
  --ink: #173b3d;
  --ink-soft: #315d5e;
  --lake: #2f6e70;
  --lake-deep: #163f42;
  --paper: #f7f3ec;
  --white: #fffdf8;
  --sand: #dfd2bd;
  --sand-light: #eee6d9;
  --sage: #8fa59b;
  --coral: #ce745f;
  --line: rgba(23, 59, 61, 0.15);
  --shadow: 0 24px 70px rgba(17, 48, 49, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

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

button,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1380px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(247, 243, 236, 0.88);
  box-shadow: 0 8px 30px rgba(18, 58, 59, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-picker {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 5px;
  padding: 0 8px 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.language-picker > span {
  color: var(--coral);
  font-size: 13px;
}

.language-picker select {
  max-width: 104px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--lake);
  box-shadow: 0 10px 25px rgba(23, 59, 61, 0.17);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  justify-self: end;
  padding: 9px 17px;
  font-size: 12px;
}

section {
  scroll-margin-top: 100px;
}

.home-section {
  padding: 28px 28px 100px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 56px;
  width: min(1320px, 100%);
  min-height: 680px;
  align-items: center;
  margin: 0 auto;
}

.hero-copy {
  max-width: 680px;
  padding-left: clamp(0px, 3vw, 50px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.6vw, 88px);
  letter-spacing: -0.047em;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link,
.map-link,
.local-card a,
.platform-links a,
.mail-link {
  font-weight: 750;
  text-decoration-color: rgba(23, 59, 61, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link {
  font-size: 14px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 620px;
  margin: 54px 0 0;
}

.quick-facts div {
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.quick-facts dt {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 3px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.hero-media {
  position: relative;
  height: min(72vh, 720px);
  min-height: 570px;
  overflow: hidden;
  border-radius: 160px 28px 28px 28px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(11, 42, 43, 0.37));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.note-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(206, 116, 95, 0.18);
}

.stay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.75fr);
  gap: 28px;
  width: min(1320px, 100%);
  margin: 62px auto 0;
}

.gallery-panel,
.comfort-card {
  border: 1px solid rgba(23, 59, 61, 0.09);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.gallery-panel {
  padding: 34px;
}

.gallery-heading,
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.gallery-heading h2,
.section-heading h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 62px);
  letter-spacing: -0.036em;
}

.gallery-heading > p,
.section-heading > p {
  max-width: 420px;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 14px;
  margin-top: 30px;
}

.gallery-main {
  position: relative;
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--sand-light);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 150ms ease, transform 500ms ease;
}

.gallery-main.is-switching img {
  opacity: 0;
  transform: scale(1.01);
}

.gallery-main figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  font-size: 11px;
  font-weight: 750;
}

.gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 9px;
}

.thumb {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 13px;
  background: var(--sand-light);
  color: var(--white);
  cursor: pointer;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 35, 37, 0.72));
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 230ms ease;
}

.thumb:hover img {
  transform: scale(1.04);
}

.thumb span {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 7px;
  left: 10px;
  font-size: 10px;
  font-weight: 750;
  text-align: left;
}

.thumb.is-active {
  border-color: var(--coral);
}

.comfort-card {
  align-self: start;
  padding: 34px 30px;
  background: var(--sand-light);
}

.comfort-card h2 {
  margin-bottom: 30px;
  font-size: 38px;
  letter-spacing: -0.03em;
}

.amenities {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.amenities li > span {
  grid-row: 1 / 3;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(23, 59, 61, 0.34);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 12px;
}

.amenities strong,
.amenities small {
  display: block;
}

.amenities strong {
  font-size: 14px;
}

.amenities small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.platform-links {
  display: grid;
  gap: 12px;
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.explore-section {
  padding: 110px max(28px, calc((100vw - 1260px) / 2)) 95px;
  background: var(--lake-deep);
  color: var(--white);
}

.light-heading .eyebrow {
  color: #f09a82;
}

.light-heading > p {
  color: rgba(255, 253, 248, 0.7);
}

.place-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 44px;
}

.place-tab {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.place-tab:hover,
.place-tab.is-active {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.place-picker {
  display: grid;
  grid-template-columns: auto minmax(260px, 500px);
  align-items: center;
  gap: 20px;
  margin: 33px 0 16px;
}

.place-picker label {
  font-size: 13px;
  font-weight: 750;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  min-height: 50px;
  padding: 12px 46px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.select-wrap option {
  color: var(--ink);
}

.select-wrap > span {
  position: absolute;
  top: 50%;
  right: 18px;
  pointer-events: none;
  transform: translateY(-50%);
}

.distance-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
}

.distance-overview,
.distance-detail {
  padding: clamp(36px, 5vw, 70px);
}

.distance-overview {
  position: relative;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  background: var(--sand);
}

.distance-overview::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -105px;
  border: 1px solid rgba(23, 59, 61, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.08), 0 0 0 56px rgba(255, 255, 255, 0.06);
}

.place-index {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(23, 59, 61, 0.3);
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: italic;
}

.place-type {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.distance-overview h3 {
  max-width: 460px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.7vw, 65px);
  letter-spacing: -0.035em;
}

.distance-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-top: 70px;
}

.distance-number strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.distance-number span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.distance-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.distance-detail > p {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.22;
}

.tip-box {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.tip-box > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, serif;
  font-style: italic;
}

.tip-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.tip-box strong {
  color: var(--ink);
}

.map-link {
  width: fit-content;
  font-size: 13px;
}

.distance-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.plan-section {
  padding: 110px max(28px, calc((100vw - 1260px) / 2)) 42px;
}

.local-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 0.875fr);
  gap: 16px;
  margin-top: 46px;
}

.local-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.local-card:nth-child(4) {
  grid-column: 2 / 4;
  min-height: 260px;
}

.local-featured {
  grid-row: span 2;
  min-height: 606px;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px);
  background: linear-gradient(160deg, rgba(23, 59, 61, 0.03), rgba(143, 165, 155, 0.25)), var(--white);
}

.local-featured::after {
  content: "S";
  position: absolute;
  right: -18px;
  bottom: -120px;
  color: rgba(23, 59, 61, 0.055);
  font-family: Georgia, serif;
  font-size: 410px;
  line-height: 1;
}

.local-number,
.local-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.local-card h3 {
  margin-bottom: 18px;
  font-size: 34px;
  letter-spacing: -0.025em;
}

.local-featured h3 {
  max-width: 550px;
  font-size: clamp(42px, 4.5vw, 68px);
}

.local-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 14px;
}

.local-card > a,
.card-links {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.local-card > a,
.card-links a {
  font-size: 12px;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  margin-top: 70px;
  padding: clamp(34px, 6vw, 76px);
  border-radius: var(--radius-lg);
  background: var(--coral);
  color: var(--white);
}

.contact-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 15px;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--paper);
}

.contact-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.mail-link {
  font-size: 13px;
  overflow-wrap: anywhere;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 24px;
  align-items: center;
  width: min(1260px, calc(100% - 56px));
  margin: 0 auto;
  padding: 32px 0 38px;
  color: var(--ink-soft);
  font-size: 10px;
}

footer p {
  margin: 0;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 16px;
  text-decoration: none;
}

.privacy-note {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 30px rgba(17, 48, 49, 0.25);
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 34px;
  }

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

  .comfort-card {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 0 36px;
  }

  .comfort-card .eyebrow,
  .comfort-card h2 {
    grid-column: 1;
  }

  .amenities,
  .platform-links {
    grid-column: 2;
  }

  .amenities {
    grid-row: 1 / 4;
  }

  .platform-links {
    align-self: end;
  }

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

  .local-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 480px;
  }

  .local-card:nth-child(4) {
    grid-column: 1 / 3;
  }

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

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .header-tools {
    min-width: 0;
  }

  .language-picker {
    padding-left: 9px;
  }

  .language-picker select {
    width: 76px;
  }

  .brand small {
    font-size: 9px;
  }

  .home-section {
    padding: 36px 16px 72px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 28px 8px 0;
  }

  h1 {
    font-size: clamp(46px, 15vw, 65px);
  }

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

  .quick-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 38px;
  }

  .hero-media {
    height: 610px;
    min-height: 0;
    border-radius: 90px 20px 20px 20px;
  }

  .stay-grid {
    margin-top: 38px;
  }

  .gallery-panel,
  .comfort-card {
    padding: 24px;
    border-radius: 24px;
  }

  .gallery-heading,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

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

  .gallery-main {
    height: 500px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    grid-template-rows: 78px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .comfort-card {
    display: block;
  }

  .explore-section,
  .plan-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .place-picker {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .distance-overview,
  .distance-detail {
    padding: 32px 26px;
  }

  .distance-overview {
    min-height: 330px;
  }

  .distance-number {
    margin-top: 60px;
  }

  .distance-number strong {
    font-size: 47px;
  }

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

  .local-featured,
  .local-card:nth-child(4) {
    grid-column: auto;
  }

  .local-featured {
    min-height: 540px;
  }

  .local-card {
    min-height: 370px;
  }

  .local-card:nth-child(4) {
    min-height: 390px;
  }

  .contact-panel {
    margin-top: 46px;
    padding: 36px 25px;
    border-radius: 24px;
  }

  .contact-panel h2 {
    font-size: 39px;
  }

  footer {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding-bottom: 92px;
  }

  .floating-whatsapp {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
