:root {
  --bg: #f4f6ec;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #33402f;
  --muted: #6b755f;
  --primary: #9cab73;
  --primary-strong: #859460;
  --border: #d8ddc6;
  --logo-filter: sepia(0.5) saturate(1.15) hue-rotate(74deg) brightness(0.78);
  --hero-blur: 6px;
  --hero-overlay: linear-gradient(
    120deg,
    rgba(22, 30, 20, 0.2) 0%,
    rgba(40, 54, 36, 0.12) 45%,
    rgba(90, 102, 80, 0.06) 100%
  );
  --max-width: 1100px;
  --reveal-distance: 42px;
  --reveal-duration: 820ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #ecf2e2;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: linear-gradient(180deg, #f8f5ee 0%, #fffdfa 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  animation: ambientFloat 12s ease-in-out infinite alternate;
}

body::before {
  top: -90px;
  right: -90px;
  background: #c7d39d;
}

body::after {
  bottom: -120px;
  left: -120px;
  background: #d8cfbc;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #7d9460;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(132, 148, 96, 0.24);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(132, 148, 96, 0.32);
  box-shadow: 0 8px 26px rgba(30, 42, 30, 0.12);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  color: #3d4b37;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: min(56vw, 360px);
  object-fit: contain;
  filter: var(--logo-filter);
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 0.4rem;
  padding: 0.45rem 0.6rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 7.5rem 0 4.2rem;
  min-height: 72vh;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-overlay);
  backdrop-filter: blur(var(--hero-blur));
  -webkit-backdrop-filter: blur(var(--hero-blur));
}

.hero > .container {
  position: relative;
  z-index: 1;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-grid > div:first-child {
  position: relative;
  padding: 0.8rem 1rem 1rem;
  border-radius: 0.65rem;
  background: linear-gradient(
    120deg,
    rgba(22, 27, 22, 0.52) 0%,
    rgba(22, 27, 22, 0.3) 52%,
    rgba(22, 27, 22, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 30px rgba(7, 10, 8, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.eyebrow {
  color: #ffe2a8;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h1 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.46),
    0 8px 20px rgba(0, 0, 0, 0.5),
    0 16px 34px rgba(0, 0, 0, 0.38);
}

h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h3 {
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lead {
  color: rgba(255, 255, 255, 0.94);
  max-width: 62ch;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.38);
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero .cta-row {
  opacity: 0;
  transform: translateY(14px);
  animation: heroTextIn 700ms ease forwards;
}

.hero .eyebrow {
  animation-delay: 120ms;
}

.hero h1 {
  animation-delay: 210ms;
}

.hero .lead {
  animation-delay: 320ms;
}

.hero .cta-row {
  animation-delay: 430ms;
}


.btn {
  display: inline-block;
  padding: 0.72rem 1rem;
  border-radius: 0.45rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 38%;
  height: 340%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
  transition: left 0.5s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(54, 68, 39, 0.45) inset,
    0 8px 16px rgba(69, 86, 52, 0.35);
}

.btn-primary:hover {
  background: var(--primary-strong);
  color: #fff;
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 -1px 0 rgba(44, 58, 30, 0.5) inset,
    0 12px 24px rgba(69, 86, 52, 0.42);
}

.btn:hover::after {
  left: 118%;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 6px 14px rgba(17, 24, 37, 0.18);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 10px 20px rgba(16, 26, 40, 0.28);
}

.hero-card,
.card,
.price-card,
.contact-form {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(214, 196, 165, 0.35) inset,
    0 10px 24px rgba(25, 33, 53, 0.1),
    0 2px 6px rgba(25, 33, 53, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.price-card:hover,
.contact-form:hover {
  transform: translateY(-4px);
  border-color: #d8c49f;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(214, 196, 165, 0.45) inset,
    0 18px 34px rgba(25, 33, 53, 0.16),
    0 4px 10px rgba(25, 33, 53, 0.12);
}

.hero-card {
  padding: 1.15rem 1.1rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 239, 0.96) 100%);
  border: 1px solid rgba(232, 220, 198, 0.95);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(circle at 70% 20%, rgba(142, 160, 107, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(214, 196, 165, 0.5) inset,
    0 20px 44px rgba(46, 30, 20, 0.2),
    0 0 0 1px rgba(142, 160, 107, 0.28);
}

.hero-card:hover::after {
  opacity: 1;
}

.hero-card-kicker {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667a4b;
  font-weight: 700;
}

.hero-card-intro {
  margin: 0.1rem 0 0.9rem;
  color: #5f5a53;
}

.hero-info-list {
  display: grid;
  gap: 0.55rem;
}

.hero-info-list p {
  margin: 0;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(232, 220, 198, 0.9);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.72);
  color: #3e3b37;
}

.hero-card-cta {
  margin-top: 0.95rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(255, 250, 241, 0.75);
  border-top: 1px solid rgba(199, 169, 115, 0.2);
  border-bottom: 1px solid rgba(199, 169, 115, 0.2);
}

.cards,
.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.price-card {
  padding: 1rem;
}

.price-table-wrap {
  padding: 0.2rem;
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 0.65rem 0.65rem 0 0;
}

.price-table th,
.price-table td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.price-table thead th {
  background: #8faa72;
  color: #f7fcef;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-table thead th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.price-head-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.price-table thead th:nth-child(2),
.price-table thead th:nth-child(3) {
  text-align: center;
}

.price-head-label svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody td + td {
  border-left: 1px solid rgba(216, 221, 198, 0.7);
}

.price-category {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.price-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.3rem;
  background: rgba(142, 160, 107, 0.12);
  color: #63794b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.price-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.price-category strong {
  display: block;
  font-size: 1.03rem;
}

.price-category small {
  display: block;
  color: var(--muted);
}

.price-value {
  text-align: center !important;
  font-size: 1.35rem;
  font-weight: 800;
  color: #283123;
}

.price-empty {
  color: #6e7a67;
}

.price-note {
  margin: 0;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(216, 221, 198, 0.8);
  background: rgba(238, 242, 230, 0.75);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #4f5f44;
}

.price-note-icon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid #7c9460;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.muted {
  color: var(--muted);
  margin-top: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0.7rem;
}

.contact-line {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.55;
}

.contact-detail {
  display: inline-grid;
  grid-template-columns: 4.3rem auto;
  align-items: baseline;
  column-gap: 0.4rem;
}

.contact-label {
  font-weight: 600;
}

.contact-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #ffe2b8;
  flex: 0 0 auto;
  transform: translateY(0.1rem);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.contact-section {
  position: relative;
  background-image:
    linear-gradient(120deg, rgba(38, 30, 24, 0.7) 0%, rgba(55, 43, 34, 0.5) 40%, rgba(90, 70, 56, 0.35) 100%),
    url("images/footer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-section h2,
.contact-section p,
.contact-section strong,
.contact-section label {
  color: #fff7ef;
}

.contact-section a {
  color: #ffe2b8;
}

.contact-section .contact-form {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 236, 210, 0.45);
  backdrop-filter: blur(4px);
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 220, 198, 0.95);
  color: #2d2b28;
}

.room-gallery {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 1rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -1px 0 rgba(214, 196, 165, 0.35) inset,
    0 12px 30px rgba(31, 42, 68, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.room-gallery:hover {
  transform: translateY(-4px);
  border-color: #d8c49f;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(214, 196, 165, 0.45) inset,
    0 18px 34px rgba(25, 33, 53, 0.16),
    0 4px 10px rgba(25, 33, 53, 0.12);
}

.room-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.room-copy {
  background: #fffef9;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  padding: 1rem;
}

.room-copy h3 {
  margin-top: 0;
}

.slideshow {
  position: relative;
  border-radius: 0.55rem;
  overflow: hidden;
  background: #f6f2ea;
  border: 1px solid var(--border);
  min-height: clamp(460px, 62vh, 760px);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease, transform 5s ease;
  transform: scale(1);
}

.slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(142, 160, 107, 0.4);
  background: rgba(255, 255, 255, 0.88);
  color: #34422f;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.45rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.15);
}

.slide-btn.prev {
  left: 0.7rem;
}

.slide-btn.next {
  right: 0.7rem;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(142, 160, 107, 0.56);
  background: #fff;
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.contact-form {
  padding: 1rem;
}

.contact-form label {
  display: block;
  margin-top: 0.7rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  padding: 0.65rem 0.7rem;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: inherit;
  color: #6f6860;
}

.privacy-check {
  margin-top: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-check input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.privacy-check a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  margin: 0 0 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.45rem;
  font-weight: 600;
}

.form-feedback.is-success {
  display: block;
  background: rgba(220, 236, 205, 0.95);
  border: 1px solid rgba(133, 164, 96, 0.55);
  color: #2f4a24;
}

.form-feedback.is-error {
  display: block;
  background: rgba(255, 236, 230, 0.95);
  border: 1px solid rgba(176, 95, 70, 0.45);
  color: #6a3428;
}

.contact-section .privacy-check {
  color: #fff7ef;
}

.contact-section .privacy-check a {
  color: #ffe2b8;
}

.contact-section .form-feedback.is-success {
  background: rgba(236, 246, 226, 0.92);
  color: #2f4a24;
}

.contact-section .form-feedback.is-error {
  background: rgba(255, 244, 236, 0.92);
  color: #6a3428;
}

.site-footer {
  border-top: 1px solid rgba(142, 160, 107, 0.3);
  padding: 1.3rem 0;
  background: linear-gradient(180deg, rgba(242, 246, 234, 0.92) 0%, rgba(236, 242, 226, 0.9) 100%);
}

.site-footer p {
  color: #34402f;
  font-weight: 600;
}

.site-footer a {
  color: #6a7e52;
  font-weight: 600;
}

.site-footer a:hover {
  color: #556740;
}

.map-section {
  padding-top: 2.2rem;
}

.map-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.map-embed {
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 42, 68, 0.08);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.map-embed:hover {
  transform: translateY(-4px);
  border-color: #d8c49f;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(214, 196, 165, 0.45) inset,
    0 18px 34px rgba(25, 33, 53, 0.16),
    0 4px 10px rgba(25, 33, 53, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.route-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 1rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(214, 196, 165, 0.35) inset,
    0 10px 24px rgba(25, 33, 53, 0.1),
    0 2px 6px rgba(25, 33, 53, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: #d8c49f;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(214, 196, 165, 0.45) inset,
    0 18px 34px rgba(25, 33, 53, 0.16),
    0 4px 10px rgba(25, 33, 53, 0.12);
}

.route-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

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

.route-address {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.5;
}

.route-address-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--primary-strong);
  flex: 0 0 auto;
}

.route-address-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(920px, 94%);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -1px 0 rgba(214, 196, 165, 0.35) inset,
    0 18px 40px rgba(26, 40, 66, 0.22);
  padding: 0.95rem 1rem;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem 1rem;
  align-items: center;
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions .btn {
  min-width: 120px;
  text-align: center;
}

.cookie-actions .btn-ghost {
  background: #ffffff;
  color: #2f3a2d;
  border: 1px solid #c8d1b1;
}

.cookie-actions .btn-ghost:hover {
  background: #eef2e3;
  color: #273022;
  box-shadow: 0 10px 20px rgba(31, 42, 68, 0.14);
}

.cookie-actions .btn-primary {
  background: #849961;
  color: #ffffff;
}

.cookie-actions .btn-primary:hover {
  background: #6f8450;
  color: #ffffff;
}

.cookie-banner.hidden {
  display: none;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.legal-main {
  padding: 5.5rem 0 3rem;
}

.legal-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 1.2rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(214, 196, 165, 0.35) inset,
    0 12px 30px rgba(31, 42, 68, 0.1);
}


.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  filter: blur(4px);
  transition:
    opacity var(--reveal-duration) cubic-bezier(0.2, 0.8, 0.2, 1),
    transform var(--reveal-duration) cubic-bezier(0.2, 0.8, 0.2, 1),
    filter var(--reveal-duration) ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-stagger-1 {
  transition-delay: 100ms;
}

.reveal-stagger-2 {
  transition-delay: 180ms;
}

.reveal-stagger-3 {
  transition-delay: 260ms;
}

.scroll-float {
  transform: translate3d(0, var(--float-y, 0px), 0);
  transition: transform 140ms linear;
  will-change: transform;
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, 18px, 0) scale(1.06);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-grid > div:first-child {
    padding: 0.7rem 0.75rem 0.8rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.65rem 0.55rem;
    font-size: 0.95rem;
  }

  .price-category {
    gap: 0.45rem;
  }

  .price-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .price-value {
    font-size: 1.08rem;
  }

  .slideshow {
    min-height: clamp(360px, 52vh, 580px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero .cta-row {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 760px) {
  .hero {
    background-attachment: scroll;
  }

  .brand-logo {
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 4%;
    left: 4%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.55rem;
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    box-shadow: 0 16px 30px rgba(31, 42, 68, 0.14);
  }

  .main-nav.open {
    display: flex;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

}
