:root {
  --forest: #073820;
  --forest-2: #0f5130;
  --leaf: #7f9f4d;
  --lime: #d7e8a3;
  --sand: #f6efe2;
  --paper: #fffaf1;
  --clay: #c59657;
  --ink: #132018;
  --muted: #687165;
  --line: rgba(19, 32, 24, 0.13);
  --glass: rgba(255, 250, 241, 0.74);
  --shadow: 0 24px 80px rgba(7, 56, 32, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 232, 163, 0.26), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, #f2eadc 55%, #ecdfca 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open,
body.lightbox-open,
body.stay-modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(7, 56, 32, 0.09), transparent 38%),
    radial-gradient(circle at 85% 18%, rgba(197, 150, 87, 0.18), transparent 24rem);
}

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(34px, 5.2vw, 76px);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow: 0 10px 34px rgba(37, 29, 16, 0.08);
  transform: none;
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.nav-shell.scrolled {
  height: 82px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 34px rgba(7, 56, 32, 0.12);
}

.brand {
  position: absolute;
  top: 8px;
  left: clamp(32px, 5.2vw, 76px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  min-width: 128px;
  height: 128px;
  isolation: isolate;
  transition: top 220ms ease, width 220ms ease, height 220ms ease;
}

.brand-full {
  width: 112px;
  height: 124px;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.brand-mark,
.brand-wordmark {
  position: absolute;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 4px));
  transition: opacity 180ms ease, transform 220ms ease;
}

.brand-mark {
  left: 0;
  width: 102px;
  height: 54px;
  object-fit: contain;
}

.brand-wordmark {
  left: 116px;
  width: 220px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(196, 155, 85, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 38px rgba(37, 29, 16, 0.11);
  transition: inset 220ms ease, border-radius 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav-shell.scrolled .brand {
  top: 15px;
  width: 350px;
  min-width: 350px;
  height: 58px;
}

.nav-shell.scrolled .brand-full {
  opacity: 0;
  transform: translateY(-8px) scale(0.92);
  pointer-events: none;
}

.nav-shell.scrolled .brand-mark,
.nav-shell.scrolled .brand-wordmark {
  opacity: 1;
  transform: translateY(-50%);
}

.nav-shell.scrolled .brand::before {
  inset: -6px -12px;
  border-radius: 8px;
  border-color: transparent;
  box-shadow: none;
}

.nav-links,
.nav-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.nav-links {
  grid-column: 2;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 38px);
}

.nav-actions {
  grid-column: 3;
}

.nav-links a {
  position: relative;
  color: rgba(19, 32, 24, 0.78);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.075em;
  padding: 12px 0;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a3b24, #c49b55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0.92;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #082f1d;
}

.nav-actions {
  gap: 12px;
}

.language-switcher {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 54px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #334235;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.language-switcher button.active {
  background: var(--forest);
  color: #fff;
}

.mobile-language-switcher {
  display: none;
}

.mobile-language-switcher summary {
  list-style: none;
}

.mobile-language-switcher summary::-webkit-details-marker {
  display: none;
}

.flag-icon {
  display: inline-block;
  width: 19px;
  height: 13px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(8, 47, 29, 0.16);
}

.flag-hu {
  background: linear-gradient(to bottom, #ce2939 0 33.333%, #fff 33.333% 66.666%, #477050 66.666% 100%);
}

.flag-de {
  background: linear-gradient(to bottom, #151515 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666% 100%);
}

.flag-gb {
  background:
    linear-gradient(0deg, transparent 41%, #fff 41% 59%, transparent 59%),
    linear-gradient(90deg, transparent 41%, #fff 41% 59%, transparent 59%),
    linear-gradient(0deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(32deg, transparent 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    linear-gradient(-32deg, transparent 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58%),
    #012169;
}

.nav-book,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-book,
.button.primary {
  background: linear-gradient(135deg, #0a3b24, #15663d);
  color: #fff;
  box-shadow: 0 14px 32px rgba(7, 56, 32, 0.24);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(14px);
}

.nav-book:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(7, 56, 32, 0.28);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 5vw, 72px) 96px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 30, 18, 0.74) 0%, rgba(5, 30, 18, 0.42) 42%, rgba(5, 30, 18, 0.08) 76%),
    linear-gradient(0deg, rgba(5, 30, 18, 0.66) 0%, transparent 36%),
    url("assets/premium-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 22px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0b4a2c;
  box-shadow: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  margin-right: 10px;
  background: linear-gradient(90deg, #0b4a2c, #c49b55);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 575px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.015em;
}

.trust-points span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 999px;
  background: #d8c27a;
  box-shadow: 0 0 0 3px rgba(216, 194, 122, 0.12);
}

.trust-points span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.26);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-scroll-cue:hover {
  transform: translateX(-50%) translateY(2px);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 250, 241, 0.14);
}

.hero-scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-2px) rotate(45deg);
}

.hero-card {
  align-self: center;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  max-width: 330px;
  margin-bottom: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-card-media {
  width: 96px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 56, 32, 0.2);
}

.premium-mark {
  width: 78px;
  height: 78px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 221, 196, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 12px 28px rgba(7, 56, 32, 0.16);
}

.premium-mark svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-mark svg path:nth-child(2) {
  stroke: #b49354;
}

.premium-mark svg path:nth-child(3) {
  stroke-width: 2;
  opacity: 0.68;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin: 1px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.1;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.38;
}

.booking-section {
  position: relative;
  z-index: 5;
  padding: 72px clamp(20px, 5vw, 72px) 56px;
  scroll-margin-top: 110px;
}

.booking-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 26px 90px rgba(7, 56, 32, 0.12);
  backdrop-filter: blur(20px);
}

.booking-copy {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(280px, 1fr);
  gap: 10px 36px;
  align-items: end;
  padding: 6px 10px 0;
}

.booking-copy .eyebrow {
  grid-column: 1 / -1;
}

.booking-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
}

.booking-copy p:not(.eyebrow) {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.booking-panel {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: none;
}

.booking-panel label,
.booking-field {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(19, 32, 24, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.booking-panel label:focus-within,
.booking-field:focus-within {
  border-color: rgba(15, 81, 48, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 81, 48, 0.08);
}

.booking-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-panel input,
.booking-panel select,
.guest-summary {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  font-weight: 760;
}

.guest-field {
  position: relative;
}

.guest-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.guest-summary span:first-child {
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

.guest-chevron {
  color: var(--forest);
  font-size: 18px;
  line-height: 1;
}

.guest-popover {
  position: absolute;
  top: auto;
  bottom: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 12px;
  min-width: 250px;
  padding: 14px;
  border: 1px solid rgba(19, 32, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 18px 46px rgba(7, 56, 32, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.guest-field.open .guest-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.guest-row > span {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.guest-row div {
  display: inline-grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.guest-row button {
  width: 30px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
}

.guest-row button:hover {
  background: rgba(10, 59, 36, 0.08);
}

.guest-row output {
  color: var(--ink);
  text-align: center;
  font-weight: 850;
}

.search-submit {
  min-height: 76px;
  padding-inline: 30px;
}

.booking-toast {
  position: fixed;
  right: clamp(20px, 4vw, 58px);
  bottom: 28px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(460px, calc(100% - 40px));
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.95);
  color: var(--forest);
  box-shadow: 0 22px 70px rgba(7, 56, 32, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.booking-toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.booking-toast span {
  flex: 1;
  color: var(--forest);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.4;
}

.booking-toast button {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(7, 56, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.booking-toast button:hover {
  background: #fff;
  border-color: rgba(7, 56, 32, 0.22);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 28px;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(900px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.62);
  box-shadow: 0 18px 58px rgba(7, 56, 32, 0.08);
  backdrop-filter: blur(18px);
}

.stats article,
.feature-card,
.stay-card,
.review-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 20px 70px rgba(7, 56, 32, 0.1);
  backdrop-filter: blur(18px);
}

.stats article,
.stats a {
  min-height: 92px;
  padding: 18px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.stats article:not(:last-child),
.stats a:not(:last-child) {
  border-right: 1px solid rgba(19, 32, 24, 0.08);
}

.stats strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}

.rating-stat {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 241, 0.68)),
    radial-gradient(circle at 100% 0%, rgba(251, 188, 5, 0.18), transparent 55%);
  transition: background 180ms ease;
}

.rating-stat:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(251, 188, 5, 0.24), transparent 55%);
}

.rating-stat img {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  margin: 0;
}

.rating-stat strong {
  color: #b87912;
}

.rating-stat small {
  display: block;
  margin-top: 5px;
  color: #f4b400;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.rating-stat span {
  margin-top: 6px;
}

.feature-band {
  width: min(1180px, calc(100% - 40px));
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 232px;
  padding: 36px 34px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.feature-card::after {
  content: "";
  position: relative;
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a3b24, #c49b55);
  opacity: 0.72;
}

.feature-card::before,
.stay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 232, 163, 0.35), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover::before,
.stay-card:hover::before {
  opacity: 1;
}

.feature-card h3,
.stay-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.feature-card p,
.stay-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.65;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stay-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.stay-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 420ms ease;
}

.stay-card:hover img {
  transform: scale(1.06);
}

.stay-card div {
  position: relative;
  padding: 22px;
}

.stay-card span {
  display: inline-flex;
  color: var(--forest-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.stay-card h3 {
  margin-top: 12px;
  font-size: 26px;
}

.stay-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--forest);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest);
}

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

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

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--forest);
  font-size: 28px;
  font-weight: 700;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.82;
}

.gallery-item:hover::after {
  transform: translateY(0);
  opacity: 1;
}

.reviews {
  padding-bottom: 80px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 148px;
  padding: 22px 22px 20px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 59, 36, 0.22);
  box-shadow: 0 28px 76px rgba(7, 56, 32, 0.14);
}

.review-card p {
  margin: 20px 0 18px;
  color: #17221b;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.google-review-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(19, 32, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 32px rgba(7, 56, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.google-review-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 59, 36, 0.18);
  box-shadow: 0 20px 46px rgba(7, 56, 32, 0.12);
}

.google-review-cta img {
  width: 178px;
  height: auto;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-source-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.review-source strong {
  margin-left: auto;
  display: block;
  color: #c28c31;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.review-stars {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.review-card p::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4285f4, #fbbc05, #34a853);
}

.review-card-meta {
  color: rgba(23, 34, 27, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  padding: 0 clamp(20px, 5vw, 72px) 36px;
}

.contact-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 18px 56px;
  align-items: end;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(5, 42, 24, 0.96), rgba(11, 88, 50, 0.82)),
    url("assets/premium-hero.png") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 30px 100px rgba(7, 56, 32, 0.24);
}

.contact-brand {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.22);
}

.contact-brand img {
  width: min(520px, 100%);
  max-height: 104px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  opacity: 0.96;
}

.contact-copy {
  max-width: 760px;
}

.contact-action {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100%;
}

.contact-card .eyebrow,
.contact-card ul {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-card a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 26px;
  background: rgba(4, 24, 15, 0.84);
  backdrop-filter: blur(18px);
}

.lightbox.open {
  display: grid;
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 32px;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.48);
}

.stay-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(4, 24, 15, 0.72);
  backdrop-filter: blur(18px);
}

.stay-modal.open {
  display: grid;
}

.stay-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, 90vh);
  overflow: auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.36);
}

.stay-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.stay-modal h2 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stay-modal p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.stay-modal ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.stay-modal li {
  position: relative;
  padding-left: 22px;
  color: #2d382f;
  line-height: 1.55;
}

.stay-modal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c49b55;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-shell {
    height: 84px;
    grid-template-columns: 150px auto;
    justify-content: space-between;
    padding: 0 16px;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    justify-self: end;
    grid-column: 2;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    cursor: pointer;
  }

  .mobile-language-switcher {
    position: absolute;
    top: 18px;
    right: 78px;
    z-index: 6;
    display: block;
  }

  .mobile-language-switcher summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 74px;
    height: 48px;
    border: 1px solid rgba(12, 54, 33, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: #0a3521;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 26px rgba(7, 56, 32, 0.08);
    backdrop-filter: blur(12px);
  }

  .nav-shell.scrolled .mobile-language-switcher {
    display: none;
  }

  .mobile-language-switcher summary i {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  .mobile-language-switcher[open] summary i {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-language-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    display: grid;
    min-width: 146px;
    padding: 7px;
    border: 1px solid rgba(12, 54, 33, 0.14);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(7, 56, 32, 0.2);
  }

  .mobile-language-menu button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    min-height: 40px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #203225;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    padding: 0 12px;
  }

  .mobile-language-menu button.active {
    background: rgba(10, 59, 36, 0.08);
    color: #073820;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--forest);
    transform: translate(-50%, -6px);
    transform-origin: center;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle span + span {
    margin-top: 0;
    transform: translate(-50%, 6px);
  }

  .menu-open .menu-toggle span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .nav-links,
  .nav-actions {
    position: fixed;
    left: 16px;
    right: auto;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    display: none;
    z-index: 90;
    grid-column: auto;
    margin: 0;
    background: #fffaf1;
    box-shadow: 0 22px 70px rgba(7, 56, 32, 0.18);
    backdrop-filter: none;
  }

  .menu-open .nav-links,
  .menu-open .nav-actions {
    display: flex;
  }

  .nav-links {
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 8px 8px 0 0;
  }

  .nav-links a {
    padding: 13px 8px;
    font-size: 18px;
  }

  .nav-actions {
    top: 370px;
    justify-content: space-between;
    padding: 18px;
    border-radius: 0 0 8px 8px;
  }

  .hero-content,
  .intro-grid,
  .feature-band,
  .review-track,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

  .stats article:nth-child(2),
  .stats a:nth-child(2) {
    border-right: 0;
  }

  .stats article:nth-child(-n + 2),
  .stats a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(19, 32, 24, 0.08);
  }

  .hero {
    padding-top: 156px;
  }

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

  .booking-copy {
    grid-template-columns: 1fr;
    padding: 0 4px;
  }

  .hero-card {
    display: none;
  }

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

  .search-submit {
    grid-column: 1 / -1;
  }

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

  .contact-card {
    text-align: left;
  }

  .contact-action {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 84px;
  }

  .nav-shell {
    top: 0;
    width: 100%;
    height: 84px;
    padding: 0 10px 0 16px;
  }

  .menu-toggle {
    position: absolute;
    top: 18px;
    right: 24px;
  }

  .mobile-language-switcher {
    top: 18px;
    right: 78px;
  }

  .brand {
    top: 8px;
    left: 16px;
    width: 96px;
    min-width: 96px;
    height: 96px;
  }

  .brand-full {
    width: 84px;
    height: 92px;
  }

  .brand::before {
    inset: 0;
    border-radius: 50%;
  }

  .nav-shell.scrolled .brand {
    top: 14px;
    width: 292px;
    min-width: 292px;
    height: 56px;
  }

  .brand-mark {
    left: 8px;
    width: 96px;
    height: 50px;
  }

  .brand-wordmark {
    left: 112px;
    width: 158px;
    height: 44px;
  }

  .nav-shell.scrolled .brand::before {
    inset: -6px -7px;
    border-radius: 8px;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 150px 20px 74px;
  }

  .hero-bg {
    background-position: center, center, 60% center;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  .lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .trust-points {
    margin-top: 18px;
    flex-direction: column;
    gap: 8px;
  }

  .trust-points span:not(:last-child)::after {
    content: none;
  }

  .hero-actions,
  .nav-actions,
  .language-switcher {
    width: 100%;
  }

  .hero-scroll-cue {
    bottom: 20px;
    width: 38px;
    height: 38px;
    background: rgba(5, 30, 18, 0.18);
  }

  .button,
  .nav-book {
    width: 100%;
  }

  .contact-card {
    padding: 36px 30px;
  }

  .contact-brand {
    align-items: flex-start;
    gap: 12px;
  }

  .contact-brand img {
    width: min(320px, 100%);
    max-height: 74px;
  }

  .contact-action .button {
    width: 100%;
  }

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

  .booking-section {
    padding: 42px 16px 38px;
    scroll-margin-top: 92px;
  }

  .booking-shell {
    gap: 18px;
    padding: 16px;
  }

  .booking-copy h2 {
    font-size: 30px;
  }

  .booking-copy p:not(.eyebrow) {
    max-width: none;
    font-size: 14px;
  }

  .booking-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 13px 12px 13px 15px;
  }

  .guest-popover {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .guest-field.open .guest-popover {
    display: grid;
  }

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

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

  .stats article,
  .stats a {
    min-height: 86px;
    padding: 15px 14px;
  }

  .stats strong {
    font-size: 32px;
  }

  .stats span {
    margin-top: 6px;
    font-size: 12px;
  }

  .rating-stat img {
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .section {
    width: calc(100% - 32px);
    padding-top: 82px;
  }
}

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