/* =============================================================
   Villa Napfény — Stylesheet
   Modern, elegant, mobile-first.
   ============================================================= */

/* Reset & base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul[role="list"] { list-style: none; }
img, picture { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; }

:root {
  --color-bg: #fbf8f3;
  --color-surface: #ffffff;
  --color-surface-soft: #f4ede1;
  --color-text: #1f2a2e;
  --color-muted: #5a6b71;
  --color-border: #e3dccd;
  --color-accent: #8aa3b0;        /* fáradt palástoskék — zsalugáter */
  --color-accent-dark: #6a8495;
  --color-accent-soft: #dce9f0;
  --color-gold: #c8a64f;
  --color-warning: #b3431d;
  --color-danger: #b54141;

  --shadow-sm: 0 1px 2px rgba(31,42,46,.06), 0 1px 3px rgba(31,42,46,.04);
  --shadow-md: 0 8px 24px rgba(31,42,46,.08), 0 2px 6px rgba(31,42,46,.04);
  --shadow-lg: 0 24px 48px -12px rgba(31,42,46,.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --container: 1200px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; color: var(--color-text); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { color: var(--color-text); }
.muted { color: var(--color-muted); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-narrow { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.kicker {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: .9rem;
}

.section-title { max-width: 720px; margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: .8rem; }
.section-title p { color: var(--color-muted); font-size: 1.05rem; }

/* Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-outline:hover { background: var(--color-surface); border-color: var(--color-text); }

.btn-booking { background: #003580; color: #fff; }
.btn-booking:hover { background: #002a66; }

.btn-airbnb { background: #ff385c; color: #fff; }
.btn-airbnb:hover { background: #e6133e; }

.btn-block { width: 100%; }

/* Header ------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, .95);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow-sm);
  padding: .55rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  transition: color .25s ease;
}
.site-header.scrolled .brand { color: var(--color-text); }
.brand-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-sans);
  letter-spacing: -.03em;
}
.nav-list {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
.nav-list a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
}
.site-header.scrolled .nav-list a { color: var(--color-text); }
.nav-list a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--color-accent);
  border-radius: 2px;
}
.header-right { display: flex; gap: .8rem; align-items: center; }

/* Language switcher */
.lang-switch {
  position: relative;
}
.lang-switch button.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
}
.site-header.scrolled .lang-switch button.lang-toggle {
  color: var(--color-text);
  border-color: var(--color-border);
  background: var(--color-surface);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .35rem;
  min-width: 130px;
  display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: .45rem .7rem;
  font-size: .9rem;
  border-radius: 6px;
  color: var(--color-text);
}
.lang-menu button:hover { background: var(--color-surface-soft); }
.lang-menu button.active { background: var(--color-accent-soft); font-weight: 600; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 60;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.site-header.scrolled .menu-toggle span { background: var(--color-text); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .menu-toggle { display: flex; }
  .nav-list {
    position: fixed;
    inset: 0;
    background: rgba(31, 42, 46, .98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { color: #fff !important; font-size: 1.4rem; font-family: var(--font-serif); }
  .header-right .btn { display: none; }
}

/* Hero -------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #1f2a2e;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.7) 100%),
    radial-gradient(ellipse at top right, rgba(199,227,227,.15), transparent 60%);
}
.hero-content { max-width: 760px; }
.hero h1 {
  color: #fff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero p { font-size: 1.2rem; color: rgba(255,255,255,.92); margin-bottom: 2rem; max-width: 620px; }
.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .35rem .9rem;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero-kicker::before { content: "★"; color: var(--color-gold); }

/* Quick stats */
.stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.6rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.stat { text-align: center; padding: .4rem .5rem; }
.stat-value { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; color: var(--color-accent); display: block; line-height: 1; }
.stat-label { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-muted); margin-top: .35rem; display: block; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* About ------------------------------------------------------- */
.about {
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.about-text p + p { margin-top: 1rem; }
.about-text .lead { font-size: 1.15rem; color: var(--color-text); margin-bottom: 1.2rem; }
.about-bullets {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: .8rem;
}
.about-bullets li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--color-text);
}
.about-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -2px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-weight: 700;
  border-radius: 50%;
  font-size: .8rem;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex; gap: 1rem; align-items: center;
  box-shadow: var(--shadow-sm);
}
.about-badge-mark {
  width: 44px; height: 44px;
  background: var(--color-gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.4rem;
}
.about-badge-text strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; }
.about-badge-text span { font-size: .82rem; color: var(--color-muted); }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 3 / 2; }
}

/* Gallery ----------------------------------------------------- */
.gallery {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: #ddd;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px 200px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 20, 22, .96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Amenities --------------------------------------------------- */
.amenities {
  background: var(--color-bg);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .amenities-grid { grid-template-columns: 1fr; } }
.amenity {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius-md);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.amenity:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--color-accent-soft); }
.amenity-icon { font-size: 1.6rem; margin-bottom: .55rem; line-height: 1; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.amenity-icon svg { width: 36px; height: 36px; color: var(--color-accent, #1f6f72); flex-shrink: 0; }
.amenity h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; margin-bottom: .35rem; }
.amenity p { font-size: .9rem; color: var(--color-muted); }

/* Location ---------------------------------------------------- */
.location {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.location-points { list-style: none; display: grid; gap: .45rem; margin-top: 1.2rem; }
.location-points li {
  display: flex; align-items: center; gap: .8rem;
  padding: .5rem .9rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
}
.location-points li::before { content: "📍"; font-size: 1.1rem; }
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--color-surface-soft);
}
.location-map { position: relative; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-directions-btn {
  display: inline-block;
  margin-top: .75rem;
  padding: .45rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s;
}
.map-directions-btn:hover { background: var(--color-accent-dark, #1a7a6e); }
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }

/* Booking ----------------------------------------------------- */
.booking {
  background: var(--color-bg);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 980px) { .booking-layout { grid-template-columns: 1fr; } }

.calendar-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-nav {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  transition: background .15s ease, border-color .15s ease;
}
.calendar-nav:hover { background: var(--color-surface-soft); border-color: var(--color-text); }
.calendar-nav:disabled { opacity: .35; cursor: not-allowed; }
.calendar-month {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-transform: capitalize;
}

.calendars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 720px) { .calendars { grid-template-columns: 1fr; } }

.calendar { width: 100%; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: .4rem;
}
.calendar-weekdays span {
  text-align: center;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-muted);
  padding: .25rem 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .9rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-text);
  transition: background .12s ease, color .12s ease, border-color .12s ease;
  position: relative;
}
.day.empty { visibility: hidden; }
.day.past { color: #c5cdd0; cursor: not-allowed; }
.day.available { cursor: pointer; }
.day.available:hover { background: var(--color-accent-soft); }
.day.booked {
  color: #b0b6b8;
  text-decoration: line-through;
  cursor: not-allowed;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(181, 65, 65, .08),
      rgba(181, 65, 65, .08) 4px,
      transparent 4px,
      transparent 8px
    );
}
.day.start, .day.end { background: var(--color-accent); color: #fff; font-weight: 600; }
.day.in-range { background: var(--color-accent-soft); color: var(--color-accent-dark); border-radius: 0; }
.day.start { border-radius: 8px 0 0 8px; }
.day.end { border-radius: 0 8px 8px 0; }
.day.start.end { border-radius: 8px; }

.calendar-legend {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.1rem;
  padding-top: 1.1rem; border-top: 1px solid var(--color-border);
  font-size: .85rem; color: var(--color-muted);
}
.calendar-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.legend-swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.legend-swatch.available { background: #fff; border: 1px solid var(--color-border); }
.legend-swatch.booked { background: repeating-linear-gradient(135deg, rgba(181,65,65,.2), rgba(181,65,65,.2) 3px, transparent 3px, transparent 6px); border: 1px solid var(--color-border); }
.legend-swatch.selected { background: var(--color-accent); }

/* Booking summary card */
.booking-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.booking-summary h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--color-muted); margin-bottom: 1.2rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; font-size: .95rem; }
.summary-row.total { font-family: var(--font-serif); font-size: 1.4rem; padding-top: 1rem; margin-top: .8rem; border-top: 1px solid var(--color-border); }
.summary-empty { color: var(--color-muted); padding: 1.5rem 0; text-align: center; }

.guest-control {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--color-surface-soft);
  border-radius: var(--radius-sm);
  padding: .55rem .8rem;
  margin-bottom: 1rem;
}
.guest-control label { font-weight: 500; }
.guest-buttons { display: flex; align-items: center; gap: .6rem; }
.guest-btn {
  width: 30px; height: 30px;
  border-radius: 50%; background: var(--color-surface); border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1;
}
.guest-btn:hover:not(:disabled) { border-color: var(--color-accent); color: var(--color-accent); }
.guest-btn:disabled { opacity: .35; cursor: not-allowed; }
.guest-count { font-weight: 600; min-width: 24px; text-align: center; }

.cta-stack { display: grid; gap: .65rem; margin-top: 1.2rem; }
.discount-tag {
  display: inline-block;
  font-size: .78rem;
  background: var(--color-gold);
  color: #fff;
  padding: .15rem .5rem;
  border-radius: 999px;
  margin-left: .35rem;
}

.minstay-note { font-size: .78rem; color: var(--color-muted); margin-top: .8rem; text-align: center; }

/* Booking form */
.booking-form {
  display: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.booking-form.open { display: block; animation: slideDown .25s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%;
  padding: .8rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.checkbox { display: flex; gap: .55rem; align-items: flex-start; font-size: .88rem; color: var(--color-muted); }
.checkbox input { margin-top: .2rem; }

.form-message { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; margin-top: .8rem; }
.form-message.success { background: #e7f3ec; color: #1d5b34; border: 1px solid #b7d9c2; }
.form-message.error { background: #fae9e7; color: #802917; border: 1px solid #ecc6bd; }

/* Reviews ----------------------------------------------------- */
.reviews {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.reviews-stars {
  display: inline-flex; gap: .3rem; align-items: center;
  font-size: 1rem; color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.reviews-stars .stars-inner { color: var(--color-gold); letter-spacing: 2px; font-size: 1.15rem; }
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.2rem;
  padding: .5rem .25rem 1rem;
  scrollbar-width: none;
  flex: 1;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .review {
  flex: 0 0 calc(50% - .6rem);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 720px) {
  .reviews-carousel .review { flex: 0 0 100%; }
}
.carousel-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: var(--color-bg);
  color: var(--color-accent);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
}
.carousel-btn:hover { background: var(--color-accent); color: #fff; }
.carousel-dots {
  display: flex; justify-content: center; gap: .45rem;
  margin-top: .75rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.dot--active { background: var(--color-accent); transform: scale(1.3); }
.review {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: -8px; left: 18px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-accent-soft);
  line-height: 1;
}
.review-text { font-style: italic; color: var(--color-text); margin-bottom: .75rem; padding-top: .5rem; }
.review-date-only { font-size: .78rem; color: var(--color-muted); text-align: right; }
.review-meta {
  display: flex; align-items: center; gap: .8rem;
  padding-top: 1rem; border-top: 1px solid var(--color-border);
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.review-name { font-weight: 600; }
.review-date { font-size: .8rem; color: var(--color-muted); }


/* Platforms --------------------------------------------------- */
.platforms {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  color: #fff;
}
.platforms .container { text-align: center; max-width: 800px; }
.platforms h2 { color: #fff; }
.platforms p { color: rgba(255,255,255,.85); margin: .8rem auto 2rem; max-width: 600px; }
.platforms-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FAQ --------------------------------------------------------- */
.faq { background: var(--color-bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: .7rem; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--color-accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 1.2rem 1.2rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Contact ----------------------------------------------------- */
.contact {
  background: var(--color-surface-soft);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.contact-info { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--color-surface);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.contact-info-item .icon {
  width: 42px; height: 42px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-muted); }
.contact-info-item span { font-size: 1rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* Footer ------------------------------------------------------ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 1.1rem;
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer p { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-links { list-style: none; display: grid; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* Utilities --------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

/* Animations on scroll (intersection observer) */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.in-view { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* =============================================================
   PATAK PORTA — additions: scroll progress, exclusivity, region,
   apartment cards, prices, pills, premium effects
   ============================================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-gold) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .15s linear;
  box-shadow: 0 0 12px rgba(31,111,114,.4);
}

/* Apartment cards — Main (Kék) prominent, Extension (Zöld) subordinate */
.apartments-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
@media (max-width: 980px) { .apartments-grid { grid-template-columns: 1fr; } }

.apartment-card-main { /* Featured */ }
.apartment-card-extension {
  background: var(--color-surface);
  border-style: dashed;
  border-width: 1.5px;
  border-color: var(--color-border);
  position: relative;
}
.apartment-card-extension::before {
  content: "+";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.apartment-card-header-extension {
  border-bottom: none;
}
.apartment-card-header-extension h3 { color: #fff !important; }
.apartment-card-header-extension .apartment-cap { color: rgba(255,255,255,.9); }
.apartment-card-header-extension .apartment-extension-note { color: rgba(255,255,255,.8); }
.apartment-tag-extension {
  background: var(--color-gold) !important;
  color: #fff !important;
}
.apartment-extension-note {
  font-size: .82rem;
  color: var(--color-muted);
  margin-top: .6rem;
  font-style: italic;
}

.apartment-extension-price {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1rem 0;
  margin-top: auto;
  border-top: 1px dashed var(--color-border);
}
.extension-extra { display: flex; flex-direction: column; gap: 2px; }
.extension-extra strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-gold);
}
.extension-extra span { font-size: .82rem; color: var(--color-muted); }
.extension-total {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-wrap: wrap;
}
.extension-total-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-muted);
}
.extension-total strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--color-accent-dark);
}
.apartment-card-extension .apartment-features li::before {
  color: var(--color-gold);
}

/* 2-column prices grid (instead of 3) */
.prices-grid-2 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.prices-grid-2 .price-card {
  flex: 0 0 280px;
  width: 280px;
}
.prices-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .prices-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prices-grid-4 { grid-template-columns: 1fr; }
}
.price-card-coming-soon {
  opacity: .55;
  pointer-events: none;
  position: relative;
}
.coming-soon-badge {
  display: inline-block;
  margin-top: .9rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7c5c2e;
  background: #f5e9d5;
  border: 1px solid #d4b896;
  padding: .22rem .75rem;
  border-radius: 999px;
}
.price-tag-wellness { background: #7b6fa0; }
.price-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: .5rem 0 .8rem;
  color: var(--color-text);
}

.apartment-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease;
}
.apartment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.apartment-card-header {
  padding: 1.5rem 1.6rem 1.4rem;
  position: relative;
}
.apartment-tag {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .8rem;
}
.apartment-card-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: inherit !important;
  margin-bottom: .35rem;
}
.apartment-cap {
  font-size: .92rem;
  opacity: .92;
  font-weight: 500;
}
.apartment-card-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.apartment-features {
  list-style: none;
  display: grid;
  gap: .55rem;
  font-size: .92rem;
  flex: 1;
}
.apartment-features li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.apartment-features li::before {
  content: "·";
  position: absolute;
  left: .4rem;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
  top: -.2rem;
}
.apartment-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.apartment-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text);
  display: block;
  line-height: 1;
}
.apartment-per-night {
  font-size: .82rem;
  color: var(--color-muted);
  margin-top: .15rem;
  display: block;
}
.apartment-book { padding: .7rem 1.2rem; font-size: .88rem; }

/* (Removed: .btn-both CTA — the extension card now lives inside the apartments grid) */

/* Prices section */
.prices { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 880px) { .prices-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: border-color .2s ease, transform .15s ease;
}
.price-card:hover { transform: translateY(-2px); border-color: var(--color-accent); }
.price-card-featured {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(180deg, var(--color-accent-soft) 0%, var(--color-bg) 60%);
}
.price-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  padding: .25rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.price-tag-kek { background: var(--color-accent); }
.price-tag-zold { background: #8aa38a; }
.price-tag-both { background: var(--color-gold); }
.price-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: .35rem;
  line-height: 1;
}
.price-value strong { font-weight: 500; }
.price-value span { font-size: .9rem; color: var(--color-muted); }
.price-cap { font-size: .9rem; color: var(--color-muted); }

.price-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) { .price-info-grid { grid-template-columns: 1fr; } }
.price-info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}
.price-info-card h3 {
  font-family: var(--font-sans);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.price-info-card ul {
  list-style: none;
  display: grid;
  gap: .55rem;
}
.price-info-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .95rem;
}
.price-info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Apartment pills (booking selector) */
.apt-pills {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.apt-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: .92rem;
  font-weight: 500;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.apt-pill:hover { border-color: var(--color-accent); background: var(--color-surface-soft); }
.apt-pill.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.apt-pill.active .apt-pill-dot { box-shadow: 0 0 0 2px rgba(255,255,255,.5); }
.apt-pill-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

/* Footer brand fix */
.site-footer .brand .brand-mark { background: var(--color-accent); }

/* =============================================================
   TRUST BAR — SZÉP kártya, ratings, hygiene
   ============================================================= */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 2.2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

.trust-item { display: flex; flex-direction: column; gap: .55rem; }
.trust-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-muted);
}
/* SZÉP Kártya — proper SVG card badge + issuer chips */
.trust-szep {
  flex-direction: row !important;
  align-items: center;
  gap: 1rem !important;
}
.szep-icon-wrap {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(31,111,114,.18));
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.trust-szep:hover .szep-icon-wrap { transform: rotate(-3deg) translateY(-2px); }
.szep-card-icon {
  width: 96px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.szep-info {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-width: 0;
}
.szep-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}
.szep-issuers {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.szep-issuer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25rem .55rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  height: 22px;
}
.szep-otp { background: #008752; }
.szep-kh  { background: #003d7a; }
.szep-mkb { background: #b3431d; }

@media (max-width: 480px) {
  .trust-szep { flex-direction: column !important; align-items: flex-start; }
  .szep-card-icon { width: 88px; }
}

.trust-rating { gap: .45rem; }
.trust-stars { color: var(--color-gold); font-size: 1.5rem; letter-spacing: 3px; }
.trust-rating-text strong { font-family: var(--font-serif); font-size: 1.4rem; display: block; line-height: 1.1; }
.trust-rating-text span { font-size: .85rem; color: var(--color-muted); }
.trust-link {
  margin-top: .35rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #003580;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  align-self: flex-start;
}
.trust-link:hover { text-decoration: underline; }

.trust-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}
.trust-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .9rem;
}
.trust-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* =============================================================
   PREMIUM EFFECTS
   ============================================================= */

/* Smooth scroll for anchor links */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Hero — letter-by-letter reveal */
.hero h1 .word {
  display: inline-block;
  white-space: nowrap;
}
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-30deg);
  transform-origin: bottom center;
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(80ms * var(--ci) + 120ms * var(--wi));
}
.hero h1.revealed .char { opacity: 1; transform: translateY(0) rotateX(0); }

/* Hero parallax base — already handled by JS, just ensure no conflict */
.hero-bg img { will-change: transform; transition: transform .05s linear; }

/* Hero buttons subtle entrance */
.hero-kicker, .hero p, .hero-ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise .8s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-kicker { animation-delay: .2s; }
.hero p { animation-delay: 1.1s; }
.hero-ctas { animation-delay: 1.3s; }
@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-kicker, .hero p, .hero-ctas { animation: none; opacity: 1; transform: none; }
  .hero h1 .char { opacity: 1; transform: none; transition: none; }
}

/* Stagger reveal */
.stagger {
  opacity: 0;
  transform: translateY(24px) scale(.97);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(80ms * var(--i, 0));
}
.stagger.in-view { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .stagger { opacity: 1; transform: none; transition: none; }
}

/* Magnetic buttons — base transition */
.magnetic { transition: transform .25s cubic-bezier(.22,1,.36,1), background .2s ease, box-shadow .2s ease; }

/* Premium button shine on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .65s ease;
}
.btn-primary:hover::before { left: 100%; }

/* Stat counter — emphasize on view */
.stat-value {
  display: inline-block;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}

/* Image hover refinement on gallery & about */
.gallery-item, .about-image, .region-card-img {
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { transition: transform .8s cubic-bezier(.22,1,.36,1); }
.gallery-item:hover img { transform: scale(1.07); }

/* Lightbox — smoother fades */
.lightbox {
  background: rgba(15, 20, 22, 0);
  transition: background .3s ease;
}
.lightbox.open { background: rgba(15, 20, 22, .96); }
.lightbox-img { transition: opacity .35s ease; }

/* Calendar month transitions */
.calendar-grid { transition: opacity .25s ease; }

/* About badge floating animation */
.about-badge {
  animation: badge-float 4.5s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) { .about-badge { animation: none; } }

/* =============================================================
   EXCLUSIVITY SECTION
   ============================================================= */
.exclusivity {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-soft) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.exclusivity-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .exclusivity-grid { grid-template-columns: 1fr; } }

.exclusivity-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  background: var(--color-gold);
  color: #fff;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
}
.exclusivity-badge::before { content: "★"; }
.exclusivity-text h2 { margin-bottom: 1rem; }
.exclusivity-text p { color: var(--color-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }

.exclusivity-points {
  list-style: none;
  display: grid;
  gap: .8rem;
}
.exclusivity-points li {
  position: relative;
  padding: .8rem 1rem .8rem 3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .95rem;
  transition: transform .2s ease, border-color .2s ease;
}
.exclusivity-points li:hover { transform: translateX(4px); border-color: var(--color-accent); }
.exclusivity-points li::before {
  content: "✓";
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
}

/* Exclusivity photo */
.exclusivity-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.exclusivity-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
.exclusivity-illustration {
  position: relative;
  width: 100%;
  height: 100%;
}
.ex-circle {
  position: absolute;
  inset: 6%;
  border: 2px dashed var(--color-accent);
  border-radius: 50%;
  opacity: .35;
  animation: ex-rotate 30s linear infinite;
}
@keyframes ex-rotate { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ex-circle { animation: none; } }

.ex-house {
  position: absolute;
  width: 38%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}
.ex-house-kek {
  background: linear-gradient(135deg, #8aa3b0 0%, #6a8495 100%);
  top: 18%;
  left: 12%;
  transform: rotate(-6deg);
  animation: ex-kek 6s ease-in-out infinite;
}
.ex-house-zold {
  background: linear-gradient(135deg, #8aa38a 0%, #6a8468 100%);
  bottom: 18%;
  right: 12%;
  transform: rotate(6deg);
  animation: ex-zold 6s ease-in-out infinite;
}
@keyframes ex-kek {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}
@keyframes ex-zold {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .ex-house-kek { animation: none; }
  .ex-house-zold { animation: none; }
}
.ex-link {
  position: absolute;
  top: 50%; left: 50%;
  width: 40%;
  height: 2px;
  background: var(--color-gold);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: .5;
}
.ex-link::before, .ex-link::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.ex-link::before { left: -5px; }
.ex-link::after { right: -5px; }

/* =============================================================
   REGION SECTION
   ============================================================= */
.region {
  background: var(--color-bg);
  position: relative;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .region-grid { grid-template-columns: 1fr; } }

.region-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .25s ease;
}
.region-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-soft);
}

.region-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.region-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.region-card:hover .region-card-img img { transform: scale(1.08); }

.region-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.region-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  color: var(--color-accent-dark);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  z-index: 1;
}
.region-distance {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.region-distance::before {
  content: "→";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: .8rem;
}
.region-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.region-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.region-card-body p {
  font-size: .92rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* =============================================================
   PILL SELECTOR — clarify availability is shared
   ============================================================= */
.apt-pills::after {
  content: "";
  display: block;
  width: 100%;
}
.apt-pill-hint {
  width: 100%;
  text-align: center;
  font-size: .82rem;
  color: var(--color-muted);
  margin-top: .8rem;
}
.apt-pill-hint strong { color: var(--color-accent-dark); font-weight: 600; }

/* Calendar — colored selection pulse on first selection */
.day.start, .day.end {
  position: relative;
}
.day.start::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid var(--color-accent);
  animation: day-pulse 1.6s ease-out 1;
}
@keyframes day-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Apartment cards — subtle gold border on hover */
.apartment-card {
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .25s ease;
}
.apartment-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-lg); }

/* Main apartment card (Kék ház) — cap text white to match header */
.apartment-card-main .apartment-card-header .apartment-cap { color: rgba(255,255,255,.9); }

/* Header backdrop refinement */
.site-header.scrolled {
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

/* =============================================================
   HERO refinements: tagline + booking card + scroll cue + Ken Burns
   ============================================================= */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  /* note: do NOT set width:100% here — it would override the .container
     width constraint that gives the page its left/right gutter. */
}
.hero-content { max-width: 720px; }
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-gold) !important;
  margin: 1rem 0 1.4rem !important;
  letter-spacing: .01em;
  position: relative;
  padding-left: 2.4rem;
  display: inline-block;
}
.hero-tagline::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.8rem;
  height: 1px;
  background: var(--color-gold);
  transform: translateY(-50%);
}
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,.92); margin-bottom: 2rem; max-width: 620px; }

@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-bg img {
  animation: hero-zoom 14s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; } }

/* Hero booking card — anchored to the bottom alongside the CTA buttons */
.hero-book-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  width: 280px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.4);
  align-self: end;
  margin: 0;
  animation: hero-rise .8s cubic-bezier(.22,1,.36,1) .9s both;
}
.hbc-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-muted);
  margin-bottom: .35rem;
}
.hbc-price {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hbc-features {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: .4rem;
  font-size: .82rem;
  color: var(--color-muted);
}
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-book-card { width: 100%; max-width: 360px; margin: 0 auto 1.5rem; }
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 14px;
  display: block;
}
.hero-scroll-cue .hsc-line {
  position: absolute;
  top: 8px; left: 50%;
  width: 2px; height: 8px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: hsc 2s ease-in-out infinite;
}
@keyframes hsc {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 14px); opacity: .3; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll-cue .hsc-line { animation: none; } }

/* =============================================================
   HOST section
   ============================================================= */
.host {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .host-grid { grid-template-columns: 1fr; } }

.host-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.host-photo {
  width: clamp(180px, 24vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 60%, var(--color-gold) 130%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.host-photo::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
}
.host-initial {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(255,255,255,.94);
  font-weight: 500;
  text-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.host-badges { display: flex; flex-direction: column; gap: .5rem; align-items: stretch; width: 100%; max-width: 280px; }
.host-badge {
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .9rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .85rem;
}
.host-badge span:first-child { font-size: 1rem; line-height: 1; }

.host-text h2 { margin: .5rem 0 1.2rem; }
.host-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}
.host-bio { color: var(--color-muted); margin-bottom: 1.2rem; }
.host-meta {
  display: flex; align-items: baseline; gap: .8rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--color-border);
}
.host-meta strong { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; }
.host-meta span { font-size: .9rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .12em; }

/* =============================================================
   GALLERY mosaic (Airbnb-style 5+1)
   ============================================================= */
.gallery-mosaic-wrap { position: relative; }
.gallery-mosaic {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 8px !important;
  height: clamp(360px, 48vw, 520px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-mosaic .gallery-item {
  border-radius: 0;
  margin: 0;
}
.gallery-mosaic .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery-mosaic .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-mosaic .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-mosaic .gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-mosaic .gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
.gallery-mosaic .gallery-item:nth-child(n+6) { display: none; }
.gallery-lb-only { display: none !important; }
@media (max-width: 720px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 200px 200px !important;
    height: auto;
  }
  .gallery-mosaic .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-mosaic .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-mosaic .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-mosaic .gallery-item:nth-child(n+4) { display: none; }
}

.gallery-show-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .15s ease, background .15s ease;
}
.gallery-show-all:hover { transform: translateY(-1px); background: #fff; }
.gsa-icon { font-size: 1.05rem; line-height: 1; }

/* =============================================================
   STORY timeline
   ============================================================= */
.story {
  background: var(--color-bg);
}
.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .story-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .story-timeline { grid-template-columns: 1fr; } }

.story-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.story-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.story-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.3) 100%);
}
.story-body { padding: 1.2rem 1.3rem 1.4rem; }
.story-time {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: .6rem;
}
.story-body h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; margin-bottom: .5rem; }
.story-body p { font-size: .92rem; color: var(--color-muted); line-height: 1.55; }

/* =============================================================
   FLOOR PLAN
   ============================================================= */
.floorplan {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.floorplan-canvas {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.fp-svg { width: 100%; height: auto; max-width: 800px; margin: 0 auto; display: block; }
.fp-zone-label { font-family: var(--font-sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; fill: #a98639; }
.fp-house rect { transition: filter .25s ease; }
.fp-house:hover rect { filter: brightness(1.1); }
.fp-house-name { font-family: var(--font-serif); font-size: 16px; font-weight: 500; fill: #fff; letter-spacing: 0.05em; }
.fp-room { font-family: var(--font-sans); font-size: 9px; font-weight: 500; fill: rgba(255,255,255,.85); }
.fp-amenity { font-family: var(--font-sans); font-size: 10px; font-weight: 500; fill: var(--color-muted); }
.fp-icon-label { font-size: 14px; }
.fp-legend {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .85rem;
}
.fp-legend li { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-muted); }
.fp-dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }

/* =============================================================
   TIPS — Ági ajánlja
   ============================================================= */
.tips {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-soft) 100%);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 980px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }
.tip-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-gold); }
.tip-card::before {
  content: "★";
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  color: var(--color-gold);
  font-size: 1rem;
  opacity: .6;
}
.tip-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-accent);
  margin-bottom: .25rem;
}
.tip-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; line-height: 1.2; }
.tip-distance { font-size: .85rem; color: var(--color-muted); margin-bottom: .55rem; }
.tip-note { font-size: .92rem; color: var(--color-text); line-height: 1.55; font-style: italic; }

/* =============================================================
   STICKY DESKTOP SUMMARY
   ============================================================= */
.sticky-summary {
  position: fixed;
  top: 78px;
  right: 24px;
  z-index: 49;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem .65rem .65rem 1.2rem;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 14px 40px -8px rgba(0,0,0,.18);
  animation: ss-rise .35s cubic-bezier(.22,1,.36,1);
}
@keyframes ss-rise {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ss-info { display: flex; align-items: baseline; gap: .35rem; line-height: 1; }
.ss-price { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; }
.ss-from { font-size: .82rem; color: var(--color-muted); }
.ss-cta { padding: .5rem 1rem; font-size: .85rem; }
@media (max-width: 880px) { .sticky-summary { display: none !important; } }

/* =============================================================
   MOBILE BOTTOM CTA
   ============================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 49;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem .9rem;
  background: rgba(255,255,255,.98);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,.18);
  animation: mc-rise .35s cubic-bezier(.22,1,.36,1);
  padding-bottom: max(.9rem, env(safe-area-inset-bottom));
}
@keyframes mc-rise { from { transform: translateY(100%); } to { transform: translateY(0); } }
.mc-info { font-family: var(--font-serif); }
.mc-price { font-size: 1rem; font-weight: 500; }
.mc-btn { padding: .65rem 1.4rem; font-size: .9rem; }
@media (min-width: 880px) { .mobile-cta { display: none !important; } }

/* =============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================= */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 48;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px -6px rgba(37,211,102,.55);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.06); box-shadow: 0 20px 40px -6px rgba(37,211,102,.7); }
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.5);
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .whatsapp-fab::before { animation: none; } }

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--color-text);
  color: #fff;
  padding: .45rem .85rem;
  border-radius: 6px;
  font-size: .82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.whatsapp-fab:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 700px) {
  .wa-tooltip { display: none; }
  .whatsapp-fab { bottom: 92px; } /* leave room for mobile CTA */
}

/* On mobile, push WhatsApp above the bottom CTA */
@media (max-width: 879px) {
  .whatsapp-fab { bottom: calc(72px + max(.9rem, env(safe-area-inset-bottom))); }
}

/* =============================================================
   CUSTOM CURSOR (subtle, desktop only)
   ============================================================= */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width .2s ease, height .2s ease, margin .2s ease, background .2s ease, border-color .2s ease;
  mix-blend-mode: difference;
}
.custom-cursor.active {
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  background: rgba(200,166,79,.18);
  border-color: var(--color-gold);
}
@media (hover: none), (pointer: coarse) { .custom-cursor { display: none; } }

/* =============================================================
   Add bottom padding to body so mobile CTA doesn't overlap footer
   ============================================================= */
@media (max-width: 879px) {
  .site-footer { padding-bottom: calc(2rem + 72px + env(safe-area-inset-bottom)); }
}

/* =============================================================
   TRUST STRIP — social proof block above reviews
   ============================================================= */
.trust-strip { background: var(--bg-warm, #fbf8f3); padding: 4rem 0; }
.trust-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; text-align: center; }
.trust-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; padding: 2.25rem 1.5rem; min-height: 260px;
  background: white; border-radius: 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,.05);
  border-top: 4px solid var(--accent, #1f6f72);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.08); }
.trust-item--booking { border-top-color: #003580; }
.trust-item--airbnb { border-top-color: #ff5a5f; }
/* Logo area — fixed height so all cards align identically */
.trust-logo-wrap { height: 140px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.trust-logo-wrap img { max-height: 140px; max-width: 300px; width: auto; mix-blend-mode: multiply; object-fit: contain; }
.trust-score { font-family: var(--font-serif, serif); font-size: 2.6rem; font-weight: 600; color: var(--accent, #1f6f72); line-height: 1; margin-bottom: .3rem; }
.trust-item--booking .trust-score { color: #003580; }
.trust-item--airbnb .trust-score { color: #ff5a5f; }
.trust-item--reviews .trust-score { color: var(--accent, #1f6f72); }
.trust-stars { font-size: 1.6rem; line-height: 1; color: #f5a623; margin-bottom: .4rem; letter-spacing: .05em; }
.trust-label { font-size: 1rem; font-weight: 700; color: #1a1a1a; letter-spacing: -0.01em; margin-bottom: .25rem; }
.trust-sub { font-size: .82rem; color: #777; line-height: 1.35; }
@media (max-width: 640px) { .trust-items { grid-template-columns: 1fr; gap: 1rem; } .trust-item { min-height: auto; } }

/* =============================================================
   FOOTER PAYMENT LOGOS
   ============================================================= */
.footer-payment {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}
.footer-payment-label { display: block; font-size: .72rem; color: rgba(255,255,255,.55); margin-top: .3rem; letter-spacing: .02em; }
.footer-payment-logo img {
  display: block;
  opacity: .92;
  filter: drop-shadow(5px 8px 14px rgba(0,0,0,.65));
  transition: opacity .2s, transform .25s cubic-bezier(.34,1.56,.64,1), filter .25s;
}
.footer-payment-logo:hover img { opacity: 1; transform: rotate(6deg); }
.footer-payment-banks {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-payment-banks img {
  opacity: .85;
  transition: opacity .2s;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.12));
}
.footer-payment-banks img:hover { opacity: 1; }
.footer-payment-transfer {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--color-muted, #777);
}

/* =============================================================
   BRAND LOGO — inline SVG in header
   ============================================================= */
.brand { display: inline-flex; align-items: center; color: var(--ink, #1a3637); text-decoration: none; }
.brand-logo { height: 58px; width: auto; display: block; filter: brightness(0) invert(1); }
.site-header.scrolled .brand-logo { filter: none; }
.brand-logo-footer { height: 140px; width: auto; display: block; filter: brightness(0) invert(1); }
@media (max-width: 640px) {
  .brand-logo { height: 46px; }
  .brand-logo-footer { height: 110px; }
}


/* ── Floor plan ────────────────────────────────── */
.floorplan { background: var(--color-surface); border-top: 1px solid var(--color-border); }
.floorplan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 720px) { .floorplan-grid { grid-template-columns: 1fr; } }
.floorplan-card { display: flex; flex-direction: column; gap: .75rem; }
.floorplan-label { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.floorplan-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.floorplan-dot--blue { background: #8aa3b0; }
.floorplan-dot--green { background: #8aa38a; }
.floorplan-img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.floorplan-svg { width: 100%; height: auto; display: block; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: #fff; padding: .75rem; box-sizing: border-box; }


/* ── Legal Modal ───────────────────────────────── */
.legal-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.legal-modal[hidden] { display: none; }
.legal-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(31, 42, 46, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.legal-modal-box {
  position: relative; z-index: 1;
  background: var(--color-bg);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  width: 100%; max-width: 760px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.legal-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
}
.legal-modal-title {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--color-text);
  margin: 0;
}
.legal-modal-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--color-muted);
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.legal-modal-close:hover { background: var(--color-surface-soft); color: var(--color-text); }
.legal-modal-body {
  overflow-y: auto;
  padding: 1.75rem 1.5rem 2rem;
  -webkit-overflow-scrolling: touch;
}
/* Legal document typography */
.legal-modal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem;
}
.legal-modal-body h3 {
  font-family: var(--font-sans, var(--font-body));
  font-size: 1rem; font-weight: 600;
  color: var(--color-text);
  margin: 1.6rem 0 .5rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--color-border);
}
.legal-modal-body h4 {
  font-size: .95rem; font-weight: 600;
  color: var(--color-text);
  margin: 1.2rem 0 .4rem;
}
.legal-modal-body p {
  font-size: .9rem; line-height: 1.65;
  color: var(--color-muted);
  margin: 0 0 .55rem;
}
.legal-modal-body strong { color: var(--color-text); }
.legal-modal-body ul {
  margin: .4rem 0 .8rem 1.2rem;
  padding: 0;
}
.legal-modal-body ul li {
  font-size: .9rem; line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: .25rem;
}
@media (max-width: 640px) {
  .legal-modal-box { max-height: 94vh; border-radius: var(--radius-md, 10px) var(--radius-md, 10px) 0 0; align-self: flex-end; }
  .legal-modal { align-items: flex-end; padding: 0; }
  .legal-modal-body { padding: 1.25rem 1rem 1.5rem; }
}

/* ── Cookie Banner ─────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8500;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.10);
  padding: 1rem 1.5rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1; min-width: 240px;
}
.cookie-banner-text strong {
  display: block; margin-bottom: .2rem;
  font-size: .95rem; color: var(--color-text);
}
.cookie-banner-text p {
  font-size: .82rem; color: var(--color-muted);
  margin: 0; line-height: 1.5;
}
.cookie-link {
  color: var(--color-accent-dark);
  text-decoration: underline;
  font-size: inherit;
  padding: 0;
}
.cookie-link:hover { color: var(--color-text); }
.cookie-banner-actions {
  display: flex; gap: .6rem; flex-shrink: 0;
}
.cookie-btn { padding: .5rem 1.1rem; font-size: .85rem; }
/* footer legal link inline style */
.legal-link { text-decoration: none; }
.legal-link:hover { text-decoration: underline; }

/* ── Billing section ── */
.billing-section {
  border-top: 1px solid var(--color-border, #e5e7eb);
  padding-top: 1.2rem;
  margin-top: .4rem;
}
.billing-section-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .8rem;
  color: var(--color-heading);
}
