/* =====================
   RESET / BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #ffffff;
  color: #01161e;
  line-height: 1.6;
  padding-bottom: 88px; /* room for booking bar */
}

/* Better default focus (keyboard users) */
:focus-visible {
  outline: 3px solid rgba(0, 109, 143, 0.45);
  outline-offset: 3px;
}

/* =====================
   VARIABLES (LODGiFY)
===================== */
:root {
  --ldg-psb-background: #ffffff;
  --ldg-psb-border-radius: 14px;
  --ldg-psb-box-shadow: 0 24px 54px rgba(0,0,0,0.1);
  --ldg-psb-padding: 16px;
  --ldg-psb-input-background: #ffffff;
  --ldg-psb-button-border-radius: 999px;
  --ldg-psb-color-primary: #006d8f;
  --ldg-psb-color-primary-contrast: #ffffff;
  --ldg-component-modal-z-index: 999;

  /* Site tokens (optional, used below for consistency) */
  --brand: #006d8f;
  --brand-dark: #003748;
  --ink: #01161e;
  --muted: #1f2d35;
  --panel: #e5e5e5;
  --radius: 14px;
}

#lodgify-search-bar {
  width: 100%;
}

/* =====================
   NAVIGATION
===================== */
.navbar {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Links (desktop) */
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--brand);
}

/* Current nav link style */
.nav-links a.is-current{
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Hamburger button */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
  opacity: 0.9;
}

/* =====================
   HERO SECTION (SAFARI-SAFE)
===================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

/*
  Hero background:
  - keeps your current background url working
  - ALSO supports JS-driven swapping via CSS variable --hero-url
*/
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateZ(0);
  transition: opacity 0.8s ease-in-out;

  /* Default */
  --hero-url: url("../images/snow_pond.jpg");

  background-image: var(--hero-url);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  will-change: background-image;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 1rem;
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.15s;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.35s;
}

.hero-dots{
  margin-top: 1.25rem;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/* Airbnb-ish dot */
.hero-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  transition: transform 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-dot:hover{
  background: rgba(255,255,255,0.85);
  transform: scale(1.15);
}

.hero-dot.is-active{
  background: #ffffff;
  transform: scale(1.25);
}

/* Keyboard focus */
.hero-dot:focus-visible{
  outline: 3px solid rgba(255,255,255,0.75);
  outline-offset: 4px;
}

/* =====================
   FADE ANIMATION
===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero p {
    animation: none;
    opacity: 1;
  }
}

/* =====================
   BOOKINGS
===================== */
.bookings {
  padding: 4rem 2rem;
  background: var(--panel);
  display: flex;
  justify-content: center;
}

.booking-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 520px;
}

.booking-title {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s ease-out forwards;
  animation-delay: 0.1s;
}

.booking-note {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* =====================
   WELCOME PANEL
===================== */
.welcome-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.welcome-visual {
  display: flex;
  justify-content: center;
}

.welcome-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  color: var(--brand);
  display: block;
}

.welcome-copy .eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #4a6a7a;
  margin-bottom: 0.75rem;
}

.welcome-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--ink);
}

.welcome-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.welcome-cta {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.welcome-cta:hover {
  background: #005b78;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .welcome-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .welcome-visual {
    order: -1;
  }

  .welcome-copy p {
    font-size: 1rem;
  }
}

/* =====================
   SPLIT SECTIONS
===================== */
.split {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 1.8rem;
  color: #124559;
  margin-bottom: 1rem;
}

.split-text .ski-school-note {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.split-img {
  flex: 1;
}

.split-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* =====================
   LOCATION SECTION
===================== */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  background: var(--panel);
  border-radius: var(--radius);
}

.location-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.location-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.location-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.location-map {
  display: flex;
  justify-content: center;
}

.location-map iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.location-map img {
  width: 67%;
  max-width: 67%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

@media (max-width: 960px) {
  .location-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .location-map iframe,
  .location-map img {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
  }
}

/* =====================
   REVIEWS SECTION
===================== */
.section-eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #4a6a7a;
  margin-bottom: 0.6rem;
}

.reviews-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.reviews-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: #f7f7f2;
  border: 1px solid rgba(1,22,30,0.08);
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reviews-score-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}

.reviews-stars {
  color: #c98a00;
  letter-spacing: 0.12rem;
  font-size: 1rem;
}

.reviews-count {
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(1,22,30,0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--ink);
}

.reviewer-date {
  color: var(--muted);
  font-size: 0.9rem;
}

.reviewer-rating {
  color: #c98a00;
  letter-spacing: 0.1rem;
  font-size: 0.95rem;
}

.review-text {
  color: var(--muted);
  font-size: 1rem;
}

.reviews-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviews-button {
  background: var(--brand);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.reviews-button:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.reviews-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.reviews-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .reviews-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .reviews-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   REVIEWS PAGE
===================== */
.reviews-page {
  min-height: 100vh;
}

.reviews-hero {
  padding: 3rem 1.25rem 2rem;
  background: var(--panel);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.reviews-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.reviews-hero p {
  color: #124559;
  font-size: 1.05rem;
  max-width: 60ch;
}

.reviews-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reviews-summary-card {
  background: #ffffff;
  border: 1px solid rgba(1,22,30,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.reviews-summary-card h2 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.reviews-summary-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2rem;
  align-items: start;
}

.reviews-list {
  display: grid;
  gap: 1.25rem;
}

.review-form-card {
  background: #ffffff;
  border: 1px solid rgba(1,22,30,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.review-form-card h2 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.review-form-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(1,22,30,0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.review-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.review-form legend {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.35rem;
}

.star-rating input {
  position: absolute;
  opacity: 0;
}

.star-rating label {
  font-size: 1.6rem;
  color: #d7d0c8;
  cursor: pointer;
  transition: color 150ms ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #c98a00;
}

.star-rating input:focus-visible + label {
  outline: 2px solid rgba(0, 109, 143, 0.45);
  outline-offset: 4px;
}

.form-error {
  color: #8f1d1d;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  min-height: 1em;
}

.field-error input,
.field-error textarea {
  border-color: #8f1d1d;
}

.field-error .star-rating label {
  color: #d08c86;
}

.review-submit {
  border: 0;
  background: var(--brand);
  color: #ffffff;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.review-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.review-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.review-form-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-form-note a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.review-form-note a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

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

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--ink);
  color: #eff6e0;
  padding: 2rem;
  text-align: center;
}

.footer .nav-links {
  justify-content: center;
  flex-wrap: wrap;
}

.footer .nav-links a {
  color: #eff6e0;
}

/* =====================
   BOOKING BAR
===================== */
.sticky-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(229, 229, 229,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0,0,0,0.1);
  z-index: 2000;
}

.sticky-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sticky-text {
  font-weight: 600;
  color: var(--ink);
}

.sticky-subtext {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-button {
  background: var(--brand);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.sticky-button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

/*======================
    BRAND LOGO
======================*/
/* Brand / logo (left) */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--brand);      /* sets SVG color via currentColor */
  margin-right: auto;       /* pushes hamburger + links to the right */
}

.brand-logo {
  height: 150px;            /* adjust size */
  width: auto;
  display: block;
}

/* Override size for the large welcome logo */
.brand-logo.welcome-logo {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* =====================
   GALLERY PAGE
===================== */
.gallery-page{
  min-height: 100vh;
}

.gallery-hero{
  padding: 3rem 1.25rem 2rem;
  background: var(--panel);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gallery-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-hero h1{
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.gallery-hero p{
  color: #124559;
  font-size: 1.05rem;
  max-width: 60ch;
}

.gallery-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

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

/* Card */
.gallery-card{
  grid-column: span 4;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  transform: translateZ(0);
}

.gallery-card picture,
.gallery-card img{
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-card:hover img{
  transform: scale(1.04);
  filter: saturate(1.05);
}

.gallery-card:focus-visible{
  outline: 3px solid rgba(0,109,143,0.6);
  outline-offset: 4px;
}

/* Responsive layout */
@media (max-width: 980px){
  .gallery-card{ grid-column: span 6; }
}

@media (max-width: 620px){
  .gallery-grid{ gap: 12px; }
  .gallery-card{ grid-column: span 12; }
  .gallery-card img{ aspect-ratio: 16 / 10; }
}

/* =====================
   LIGHTBOX
===================== */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 4000;
}

.lightbox.is-open{
  display: block;
}

.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(1,22,30,0.72); /* matches your dark theme */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-dialog{
  position: relative;
  max-width: min(1100px, 92vw);
  margin: 5vh auto;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #01161e;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.lightbox-figure{
  margin: 0;
}

.lightbox-figure img{
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #01161e;
}

.lightbox-caption{
  padding: 0.9rem 1rem;
  color: #eff6e0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.98rem;
}

.lightbox-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  color: #eff6e0;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-close:hover{
  background: rgba(255,255,255,0.18);
}

.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  color: #eff6e0;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav:hover{
  background: rgba(255,255,255,0.18);
}

.lightbox-prev{ left: 12px; }
.lightbox-next{ right: 12px; }

@media (max-width: 620px){
  .lightbox-dialog{ margin: 7vh auto; }
  .lightbox-prev{ left: 8px; }
  .lightbox-next{ right: 8px; }
}

/* =====================
   RESPONSIVE / HAMBURGER
===================== */
@media (max-width: 900px) {

  .hamburger {
    display: inline-flex;
    color: var(--brand);
  }

  .hamburger[aria-expanded="true"] {
    opacity: 0.85;
  }

  /*
    Mobile menu:
    - Uses right alignment under the hamburger (Airbnb-ish)
    - Still supports your current `.nav-links.open` class
    - Also supports `.navbar.is-open` if you ever switch JS approaches
  */
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);

    right: 1.25rem;
    left: auto;

    background: #ffffff;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 0.75rem;
    min-width: 240px;
    z-index: 3000;
  }

  .nav-links.open,
  .navbar.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(0, 109, 143, 0.08);
  }

  .split,
  .split.reverse {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #lodgify-search-bar {
    transform: scale(1.15);
    transform-origin: center;
  }

  .sticky-content {
    gap: 1rem;
  }

  .sticky-text {
    font-size: 0.95rem;
  }

  .sticky-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* iPhone Safari height fix */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: 70svh;
  }
}
