:root {
  --forest: #173d2b;
  --forest-2: #255b3b;
  --leaf: #4a8f52;
  --water: #4ba9b7;
  --sky: #cfe8ea;
  --sun: #df8b31;
  --cream: #fff9ec;
  --sand: #f1dfc2;
  --clay: #b86b3d;
  --ink: #1e281f;
  --muted: #677065;
  --white: #ffffff;
  --line: rgba(23, 61, 43, 0.14);
  --shadow: 0 22px 58px rgba(23, 61, 43, 0.16);
  --radius: 8px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-medium: 520ms;
  --duration-slow: 820ms;
  --reveal-distance: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(75, 169, 183, 0.7);
  outline-offset: 4px;
}

.skip-link {
  background: var(--forest);
  color: var(--white);
  left: 14px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-160%);
  transition: transform var(--duration-fast) var(--ease);
  z-index: 200;
}

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

.site-header {
  align-items: center;
  background: rgba(23, 61, 43, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  height: var(--header);
  justify-content: center;
  left: 0;
  position: sticky;
  top: 0;
  transition: background var(--duration-medium) var(--ease), border-color var(--duration-medium) var(--ease), box-shadow var(--duration-medium) var(--ease);
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(15, 45, 32, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 46px rgba(9, 28, 19, 0.24);
}

.nav-wrap {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  max-width: 1180px;
  padding: 0 22px;
  width: 100%;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand img {
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  height: 54px;
  padding: 5px;
  transition: transform var(--duration-medium) var(--ease), box-shadow var(--duration-medium) var(--ease);
  width: 54px;
}

.site-header.is-scrolled .brand img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.92);
}

.brand span {
  font-weight: 850;
  line-height: 1.08;
  max-width: 148px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 750;
  padding: 10px 13px;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
  width: 44px;
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.menu-toggle svg {
  height: 22px;
  width: 22px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  position: relative;
  transition: background var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sun);
  box-shadow: 0 16px 34px rgba(223, 139, 49, 0.28);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--leaf);
  box-shadow: 0 16px 34px rgba(74, 143, 82, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--forest);
}

.hero,
.page-hero {
  color: var(--white);
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  position: relative;
}

.hero-home {
  --hero-image: url("../assets/imgg/vista del lago.jpg");
}

.hero-services {
  --hero-image: url("../assets/imgg/piscina.jpg");
}

.hero-gallery {
  --hero-image: url("../assets/imgg/vista del lago.jpg");
}

.hero-reservations {
  --hero-image: url("../assets/imgg/comida bariloche.jpg");
}

.hero-location {
  --hero-image: url("../assets/imgg/vista del lago.jpg");
}

.hero-contact {
  --hero-image: url("../assets/imgg/comida restaurante.jpg");
}

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

.hero::before,
.page-hero::before {
  background:
    linear-gradient(105deg, rgba(15, 45, 31, 0.88) 0%, rgba(15, 45, 31, 0.64) 44%, rgba(15, 45, 31, 0.16) 100%),
    var(--hero-image) center/cover;
  content: "";
  inset: 0;
  position: absolute;
  transform: scale(1.04);
  transform-origin: center;
  z-index: -2;
}

.hero::after,
.page-hero::after {
  background: linear-gradient(180deg, rgba(255, 249, 236, 0) 72%, var(--cream) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero::before {
  animation: heroDrift 18s var(--ease-soft) infinite alternate;
}

.page-hero::before {
  animation: heroDrift 22s var(--ease-soft) infinite alternate;
}

.hero-content,
.page-hero-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 82px 22px 96px;
}

.hero-content {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  min-height: calc(100svh - var(--header));
}

.page-hero-content {
  padding-bottom: 90px;
  padding-top: 96px;
}

.eyebrow {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--water);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 34px;
}

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

h1,
.section-title,
.cta-band h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.03;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  margin-bottom: 24px;
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 920px;
}

.hero-lead,
.page-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  margin-bottom: 32px;
  max-width: 650px;
}

.hero-actions,
.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-28 {
  margin-top: 28px;
}

.hero-note {
  border-left: 3px solid var(--water);
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  padding-left: 18px;
}

.hero-facts {
  align-self: center;
  display: grid;
  gap: 12px;
}

.fact {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  transition: background var(--duration-medium) var(--ease), border-color var(--duration-medium) var(--ease), transform var(--duration-medium) var(--ease);
}

.fact strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 4px;
}

.fact span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 92px 22px;
}

.section.alt {
  background: #f5e8cf;
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

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

.section-kicker {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section.dark .section-kicker,
.section.dark .section-title {
  color: var(--white);
}

.section-title {
  color: var(--forest);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  margin-bottom: 0;
  max-width: 760px;
}

.section-copy {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 460px;
}

.section.dark .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 61, 43, 0.08);
  padding: 24px;
  transition: border-color var(--duration-medium) var(--ease), box-shadow var(--duration-medium) var(--ease), transform var(--duration-medium) var(--ease);
}

.card-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin: -10px -10px 20px;
  overflow: hidden;
}

.card-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--duration-slow) var(--ease), filter var(--duration-slow) var(--ease);
  width: 100%;
}

.card-label {
  color: var(--sun);
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card h3 {
  color: var(--forest);
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-row {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.feature-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: center;
}

.feature-image img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease), filter var(--duration-slow) var(--ease);
  width: 100%;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  align-items: start;
  display: flex;
  gap: 12px;
}

.check-list span {
  background: var(--water);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  line-height: 24px;
  margin-top: 2px;
  width: 24px;
}

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

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: box-shadow var(--duration-medium) var(--ease), transform var(--duration-medium) var(--ease);
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform var(--duration-slow) var(--ease), filter var(--duration-slow) var(--ease);
  width: 100%;
}

.reservation-layout,
.contact-layout,
.location-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.reserve-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  transition: box-shadow var(--duration-medium) var(--ease), transform var(--duration-medium) var(--ease);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  color: var(--forest);
  font-weight: 850;
}

.field input {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 52px;
  padding: 0 14px;
  transition: border-color var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
  width: 100%;
}

.field input:focus {
  border-color: var(--water);
  box-shadow: 0 0 0 4px rgba(75, 169, 183, 0.18);
  outline: 0;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 14px 0 0;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  align-items: start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 6px;
  padding: 18px;
  transition: background var(--duration-medium) var(--ease), border-color var(--duration-medium) var(--ease), transform var(--duration-medium) var(--ease);
}

.contact-item small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-frame {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 430px;
  overflow: hidden;
  width: 100%;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  min-height: 430px;
  width: 100%;
}

.cta-band {
  background:
    linear-gradient(115deg, rgba(23, 61, 43, 0.92), rgba(37, 91, 59, 0.82)),
    url("../assets/imgg/vista del lago.jpg") center/cover;
  color: var(--white);
  padding: 72px 22px;
}

.cta-band .section-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer {
  background: #0f2d20;
  color: rgba(255, 255, 255, 0.76);
  padding: 26px 22px;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  color: var(--white);
  display: inline-flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 22px;
  transition: background var(--duration-fast) var(--ease), box-shadow var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
  width: 60px;
  z-index: 120;
}

.whatsapp-float:not(.is-disabled) {
  animation: floatPulse 4.6s var(--ease-soft) infinite;
}

.whatsapp-float svg {
  height: 30px;
  width: 30px;
}

.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero .reveal,
.page-hero .reveal {
  --reveal-distance: 18px;
}

.card.reveal,
.gallery-item.reveal {
  --reveal-distance: 22px;
}

.feature-image.reveal {
  --reveal-distance: 18px;
}

@keyframes heroDrift {
  0% {
    transform: scale(1.04) translate3d(-1.2%, -0.8%, 0);
  }

  100% {
    transform: scale(1.09) translate3d(1.2%, 0.8%, 0);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 24px 52px rgba(37, 211, 102, 0.46);
    transform: translateY(-4px);
  }
}

@media (hover: hover) {
  .nav-links a:hover {
    transform: translateY(-1px);
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .card:hover {
    border-color: rgba(75, 169, 183, 0.42);
    box-shadow: 0 28px 78px rgba(23, 61, 43, 0.16);
    transform: translateY(-7px);
  }

  .card:hover .card-media img,
  .feature-image:hover img,
  .gallery-item:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.065);
  }

  .fact:hover,
  .contact-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-4px);
  }

  .gallery-item:hover {
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.24);
    transform: translateY(-5px);
  }

  .whatsapp-float:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .nav-wrap,
  .hero-content,
  .page-hero-content,
  .section-inner {
    max-width: 1040px;
  }

  .nav-wrap {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.88rem;
    padding: 9px 10px;
  }

  .section {
    padding-bottom: 82px;
    padding-top: 82px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    background: rgba(23, 61, 43, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    gap: 4px;
    left: 0;
    opacity: 0;
    padding: 14px 22px 20px;
    pointer-events: none;
    position: absolute;
    top: var(--header);
    transform: translateY(-8px);
    transition: opacity var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
    width: 100%;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 13px 12px;
    width: 100%;
  }

  .nav-wrap > .btn {
    display: none;
  }

  .hero-content,
  .feature-row,
  .reservation-layout,
  .contact-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    align-items: start;
    padding-bottom: 76px;
    padding-top: 74px;
  }

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

  .hero-facts {
    align-self: auto;
    max-width: 620px;
  }

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

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

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 70px;
  }

  .nav-wrap {
    padding: 0 16px;
  }

  .brand img {
    height: 48px;
    width: 48px;
  }

  .brand span {
    font-size: 0.9rem;
    max-width: 118px;
  }

  .hero-content,
  .page-hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-content {
    gap: 28px;
    padding-bottom: 58px;
    padding-top: 52px;
  }

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

  .page-hero-content {
    padding-bottom: 58px;
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.6rem);
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .section {
    padding: 58px 18px;
  }

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

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

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    aspect-ratio: 4 / 3;
    grid-column: auto;
    grid-row: auto;
  }

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

  .hero-actions .btn,
  .actions .btn,
  .reserve-form .btn {
    width: 100%;
  }

  .card,
  .reserve-form,
  .contact-item {
    padding: 20px;
  }

  .card-media {
    margin: -8px -8px 18px;
  }

  .cta-band .section-inner,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .whatsapp-float {
    bottom: 16px;
    height: 56px;
    right: 16px;
    width: 56px;
  }
}

@media (max-width: 480px) {
  :root {
    --header: 68px;
  }

  .nav-wrap {
    padding: 0 14px;
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 58px);
  }

  .brand img {
    height: 44px;
    width: 44px;
  }

  .brand span {
    font-size: 0.82rem;
    max-width: 98px;
  }

  .menu-toggle {
    height: 44px;
    width: 44px;
  }

  .nav-links {
    padding: 12px 14px 16px;
  }

  .hero-content {
    padding-bottom: 48px;
    padding-top: 44px;
  }

  .page-hero-content {
    padding-bottom: 52px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.1rem);
  }

  .page-hero h1 {
    font-size: clamp(2.08rem, 11vw, 2.8rem);
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .section {
    padding: 50px 14px;
  }

  .section-title {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .fact,
  .card,
  .reserve-form,
  .contact-item {
    padding: 18px;
  }

  .cta-band {
    padding: 54px 14px;
  }

  .cta-band h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .whatsapp-float {
    bottom: 14px;
    height: 52px;
    right: 14px;
    width: 52px;
  }

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