/* ===========================================================
   Apartmán PalacKY Kyjov — warm Moravian wine-country design
   =========================================================== */

:root {
  --bone:        #f4ede0;
  --bone-2:      #efe6d6;
  --paper:       #fbf7ef;
  --ink:         #2c2622;
  --ink-soft:    #6a5e53;
  --wine:        #7a2e35;
  --wine-deep:   #5b2127;
  --terracotta:  #c1763e;
  --ochre:       #d99a4e;
  --green:       #46513f;
  --line:        rgba(44, 38, 34, 0.14);
  --line-soft:   rgba(44, 38, 34, 0.08);
  --shadow-sm:   0 1px 2px rgba(44, 38, 34, 0.06), 0 8px 24px rgba(44, 38, 34, 0.06);
  --shadow-md:   0 4px 10px rgba(44, 38, 34, 0.08), 0 24px 60px rgba(44, 38, 34, 0.12);

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }

/* subtle grain atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-top: 0.5rem;
  max-width: 18ch;
}
/* Pricing title stays on a single line */
.price-title {
  max-width: none;
  white-space: nowrap;
}
.section-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 56ch;
  margin-top: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.92em 1.5em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--wine); color: #fdf6ee; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--wine-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper); border-color: var(--ink-soft); }
.btn-light { background: rgba(251, 247, 239, 0.95); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-outline-light { background: transparent; color: #fdf6ee; border-color: rgba(253, 246, 238, 0.45); }
.btn-outline-light:hover { background: rgba(253, 246, 238, 0.12); border-color: rgba(253, 246, 238, 0.8); }

/* ===========================================================
   Navbar
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 237, 224, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(44, 38, 34, 0.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.9rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: #fdf6ee; transition: color 0.35s ease; }
.nav.scrolled .brand { color: var(--ink); }
.brand .mark { flex: none; }
.brand .mark svg { width: 38px; height: 38px; display: block; }
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.brand-sub {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.78; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  color: #f3ece1;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { background: rgba(122, 46, 53, 0.12); color: var(--wine); }
.nav-links a.nav-cta {
  background: var(--wine); color: #fdf6ee; margin-left: 0.4rem;
}
.nav-links a.nav-cta:hover { background: var(--wine-deep); color: #fdf6ee; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: #fdf6ee; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fbf6ee;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.16); } to { transform: scale(1.08); } }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(33, 24, 20, 0.5) 0%, rgba(33, 24, 20, 0.1) 32%, rgba(33, 24, 20, 0.18) 55%, rgba(28, 19, 16, 0.86) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(122, 46, 53, 0.32), transparent 60%);
}
.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gut) clamp(56px, 9vw, 110px);
}
.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 700; color: var(--ochre);
  display: flex; align-items: center; gap: 0.8em;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--ochre); }
.hero h1 {
  font-size: clamp(2.7rem, 7.5vw, 6rem);
  font-weight: 400;
  margin: 1.1rem 0 0;
  max-width: 16ch;
  color: #ffffff; /* whole slogan in white */
  text-shadow: 0 1px 3px rgba(28, 19, 16, 0.55), 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero h1 em {
  font-style: italic;
  color: #ffffff; /* keep the emphasised words white too */
  text-shadow: inherit;
}
.hero-sub {
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 46ch;
  color: rgba(251, 246, 238, 0.9);
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 1.05em;
  border-radius: 999px;
  background: rgba(251, 246, 238, 0.12);
  border: 1px solid rgba(251, 246, 238, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 600; font-size: 0.92rem;
}
.badge svg { width: 1.1em; height: 1.1em; opacity: 0.92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(251, 246, 238, 0.7);
}
.scroll-hint .dot {
  width: 22px; height: 34px; border: 1.5px solid rgba(251, 246, 238, 0.5); border-radius: 12px;
  position: relative;
}
.scroll-hint .dot::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: rgba(251, 246, 238, 0.8);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } }

/* ===========================================================
   Pricing
   =========================================================== */
.pricing { background: var(--bone); }
.section-head { margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 2rem 1.8rem 2.1rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(165deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #fbf6ee;
  border-color: transparent;
}
.price-card.featured .price-guests,
.price-card.featured .price-note { color: rgba(251, 246, 238, 0.82); }
.price-tag {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  background: var(--ochre); color: var(--ink); padding: 0.32em 0.8em; border-radius: 999px;
}
.price-people { display: flex; gap: 4px; margin-bottom: 1rem; }
.price-people svg { width: 26px; height: 26px; }
.price-card.featured .price-people svg path { fill: var(--ochre); }
.price-card .ghost-person svg path { fill: var(--line); }
.price-guests { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); }
.price-amount { margin-top: auto; padding-top: 1.4rem; }
.price-amount .num { font-family: var(--font-display); font-size: 2.9rem; line-height: 1; }
.price-amount .cur { font-size: 1.05rem; font-weight: 700; margin-left: 0.2em; opacity: 0.8; }
.price-amount .per { display: block; font-size: 0.82rem; letter-spacing: 0.06em; margin-top: 0.4rem; opacity: 0.7; }

.booking-panel {
  margin-top: 1.6rem;
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.booking-copy h3 { font-size: 1.6rem; }
.booking-copy p { color: var(--ink-soft); margin: 0.6rem 0 0; font-size: 0.98rem; }
.booking-actions { display: flex; flex-direction: column; gap: 0.7rem; }
.booking-actions .btn { justify-content: center; }
.booking-actions .btn-direct { padding-block: 1.06em; font-size: 1rem; }
.booking-sep {
  display: flex; align-items: center; gap: 0.8em;
  margin: 0.15rem 0; font-size: 0.76rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700; color: var(--ink-soft);
}
.booking-sep::before, .booking-sep::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.platform-note {
  display: flex; align-items: center; gap: 0.55em;
  font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.4rem; justify-content: center;
}
.platform-note .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #5a8a4d;
  box-shadow: 0 0 0 0 rgba(90, 138, 77, 0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(90, 138, 77, 0.5); } 70% { box-shadow: 0 0 0 9px rgba(90, 138, 77, 0); } 100% { box-shadow: 0 0 0 0 rgba(90, 138, 77, 0); } }

/* ===========================================================
   Floor plan & description
   =========================================================== */
.layout { background: linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%); scroll-margin-top: 96px; }
.layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.plan-stage {
  position: relative;
  margin-top: 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.plan-stage:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--wine); }
.plan-stage:focus-visible { outline: 2px solid var(--wine); outline-offset: 4px; }
.plan-stage svg { width: 100%; height: auto; }
.plan-cap {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--line-soft);
  font-size: 0.84rem; color: var(--ink-soft); flex-wrap: wrap; gap: 0.5rem;
}
.plan-cap strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }

.detail-list { margin-top: 1.6rem; display: grid; gap: 1.05rem; }
.detail {
  display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: start;
}
.detail .ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--bone-2); display: grid; place-items: center; color: var(--wine);
  border: 1px solid var(--line-soft);
}
.detail .ico svg { width: 22px; height: 22px; }
.detail h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; }
.detail p { margin: 0.15rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ===========================================================
   Gallery
   =========================================================== */
.gallery { background: var(--ink); color: var(--bone); }
.gallery .eyebrow { color: var(--ochre); }
.gallery .eyebrow::before { background: var(--ochre); }
.gallery .section-title { color: var(--bone); }
.gallery .section-lead { color: rgba(244, 237, 224, 0.72); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gphoto {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #1f1916;
}
.gphoto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.gphoto:hover img { transform: scale(1.07); filter: brightness(1.05); }
.gphoto figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.85rem;
  font-size: 0.86rem; font-weight: 600; color: #fbf6ee;
  background: linear-gradient(0deg, rgba(20, 14, 11, 0.82), transparent);
  transform: translateY(8px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
}
.gphoto:hover figcaption { transform: translateY(0); opacity: 1; }
.gphoto .zoom-ico {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(251, 246, 238, 0.16); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: #fbf6ee;
  opacity: 0; transform: scale(0.8); transition: opacity 0.35s ease, transform 0.35s ease;
}
.gphoto:hover .zoom-ico { opacity: 1; transform: scale(1); }
.span-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 14, 11, 0.93);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lb-caption { position: absolute; bottom: clamp(1rem, 4vw, 2.4rem); left: 0; right: 0; text-align: center; color: rgba(251,246,238,0.85); font-size: 0.95rem; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; border: 0;
  background: rgba(251, 246, 238, 0.12); color: #fbf6ee; font-size: 1.6rem;
  display: grid; place-items: center; transition: background 0.25s ease;
}
.lb-btn:hover { background: rgba(251, 246, 238, 0.26); }
.lb-prev { left: clamp(0.6rem, 3vw, 2rem); }
.lb-next { right: clamp(0.6rem, 3vw, 2rem); }
.lb-close { top: clamp(0.8rem, 3vw, 1.6rem); right: clamp(0.8rem, 3vw, 1.6rem); transform: none; width: 46px; height: 46px; font-size: 1.3rem; }

/* Lightbox — floor plan view */
.lb-plan {
  display: none;
  background: var(--paper);
  border-radius: 16px;
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lb-plan svg { width: min(88vw, 1080px); max-height: 74vh; height: auto; display: block; }
.lightbox.plan-mode #lbImg { display: none; }
.lightbox.plan-mode .lb-plan { display: block; }
.lightbox.plan-mode .lb-prev,
.lightbox.plan-mode .lb-next { display: none; }

/* ===========================================================
   Amenities & wine bar
   =========================================================== */
.amenities { background: var(--bone); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}
.feature {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  display: flex; align-items: flex-end;
  color: #fbf6ee;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.8s cubic-bezier(0.2,0.7,0.2,1); }
.feature:hover img { transform: scale(1.06); }
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(28, 19, 16, 0.9) 0%, rgba(28, 19, 16, 0.28) 50%, rgba(28, 19, 16, 0.08) 100%);
}
.feature-body { padding: clamp(1.4rem, 2.5vw, 2rem); }
.feature .tag {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--ochre); display: block; margin-bottom: 0.5rem;
}
.feature h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.feature p { margin: 0.55rem 0 0; color: rgba(251, 246, 238, 0.86); font-size: 0.96rem; max-width: 42ch; }
.feature .btn { margin-top: 1.1rem; }

.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }
.tall { min-height: 420px; }

/* ===========================================================
   Location strip
   =========================================================== */
.location {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.loc-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.loc-card .loc-ico { width: 44px; height: 44px; color: var(--wine); margin-bottom: 0.9rem; }
.loc-card h3 { font-size: 1.45rem; }
.loc-card p { color: var(--ink-soft); margin: 0.6rem 0 1.2rem; }
.loc-card .btn { align-self: flex-start; margin-top: auto; }

/* ===========================================================
   Footer / contact
   =========================================================== */
.footer { background: var(--wine-deep); color: #f3e7d9; padding-block: clamp(56px, 8vw, 96px) 2.4rem; }
.footer a:hover { color: var(--ochre); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(243, 231, 217, 0.16);
}
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 1rem; }
.footer .f-brand { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.05; margin: 0; }
.footer .f-tag { color: rgba(243, 231, 217, 0.7); margin-top: 0.6rem; max-width: 34ch; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.footer li { display: flex; gap: 0.65rem; align-items: flex-start; color: rgba(243, 231, 217, 0.88); font-size: 0.96rem; }
.footer li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--ochre); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  padding-top: 1.8rem; font-size: 0.82rem; color: rgba(243, 231, 217, 0.6);
}
.footer-bottom .legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ===========================================================
   Scroll reveal
   =========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .layout-grid { grid-template-columns: 1fr; }
  .booking-panel { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .feature-grid { grid-template-columns: 1fr; }
  .col-7, .col-5, .col-4, .col-6, .col-12 { grid-column: auto; }
  .feature { min-height: 320px; }
  .tall { min-height: 320px; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: center; gap: 0.3rem;
    background: var(--paper); padding: 2rem;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
    box-shadow: -20px 0 60px rgba(44,38,34,0.2);
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a, .nav.scrolled .nav-links a { color: var(--ink); font-size: 1.05rem; padding: 0.85rem 1rem; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; justify-content: center; color: #fdf6ee; }
  .nav-toggle { display: flex; z-index: 210; }
  .price-grid { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .span-2, .row-2 { grid-column: auto; grid-row: auto; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  /* keep the no-wrap pricing title from overflowing narrow phones */
  .price-title { font-size: clamp(1.4rem, 7vw, 2rem); }
}
