@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --sand: #f6efe1;
  --sand-deep: #ece0c8;
  --card: #fffbf3;
  --ink: #2a2318;
  --ink-soft: #64594a;
  --line: rgba(42, 35, 24, 0.12);
  --accent: #0f6f6a;
  --accent-soft: #d9ebe7;
  --accent-ink: #08403d;
  --radius: 22px;
  --shadow: 0 30px 60px -30px rgba(42, 35, 24, 0.35);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, sans-serif;
}

body.theme-rosmarin {
  --accent: #4c6a37;
  --accent-soft: #e2ead4;
  --accent-ink: #2c3f1c;
}

body.theme-apart {
  --accent: #b1552b;
  --accent-soft: #f4ddc9;
  --accent-ink: #6e2f12;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.35rem; }

p { margin: 0; }

a { color: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent);
}

.section {
  padding: 108px 0;
  border-bottom: 1px solid var(--line);
}
.section--tight { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px -14px var(--accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -14px var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-light {
  background: rgba(255,255,255,0.94);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0 0;
  transition: padding 0.3s ease;
}
.site-header > .wrap:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(250, 245, 235, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(42,35,24,0.08);
  border-radius: 100px;
  padding: 10px 12px 10px 26px;
  box-shadow: 0 16px 34px -16px rgba(42,35,24,0.55);
}
.brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.brand span { color: var(--accent); }
.main-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--accent-ink); }
.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span { width: 16px; height: 2px; border-radius: 2px; background: #fff; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 3px;
  margin: 8px 0 0;
  padding: 12px;
  background: rgba(250, 245, 235, 0.98);
  border: 1px solid rgba(42,35,24,0.08);
  border-radius: 22px;
  box-shadow: 0 16px 34px -16px rgba(42,35,24,0.55);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 13px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}
.mobile-nav a:active { background: var(--sand-deep); }
.mobile-nav .btn { margin-top: 6px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,10,0.15) 0%, rgba(20,17,10,0.1) 40%, rgba(15,13,8,0.86) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 150px 0 72px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-tag b {
  background: #fff; color: var(--accent-ink);
  border-radius: 100px; padding: 4px 12px;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 15ch;
  color: #fff;
}
.hero .lede {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.22);
  flex-wrap: wrap;
}
.hero-stats div b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}
.hero-stats div span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.about-copy p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 18px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}
.highlight {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.highlight b { display: block; font-family: var(--serif); font-size: 1.3rem; }
.highlight span { font-size: 0.85rem; color: var(--ink-soft); }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- rooms ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.room-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-photo { aspect-ratio: 4/3; overflow: hidden; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-photo img { transform: scale(1.06); }
.room-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.room-cat {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 100px;
}
.room-body h3 { font-size: 1.25rem; }
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.room-meta span { display: flex; align-items: center; gap: 6px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.room-amenities span {
  font-size: 0.76rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 11px;
  color: var(--ink-soft);
}
.room-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.room-price { font-family: var(--serif); font-size: 1.05rem; }
.room-price small { display: block; font-family: var(--sans); font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; }
.room-foot a {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-ink);
  text-decoration: none;
}
.room-foot a:hover { text-decoration: underline; }
.room-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-ink);
  text-decoration: none;
  padding-bottom: 2px;
}
.room-cta:hover { color: var(--accent); }

/* ---------- amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.amenity {
  background: var(--card);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.amenity .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
}
.amenity .ic svg { width: 22px; height: 22px; }
.amenity b { font-size: 0.98rem; }
.amenity span { font-size: 0.83rem; color: var(--ink-soft); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.gallery-grid a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a.tall { grid-row: span 2; }
.gallery-grid a.wide { grid-column: span 2; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,13,8,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
}
.location-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.distance-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.distance-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.distance-item span:first-child { font-size: 0.88rem; color: var(--ink-soft); }
.distance-item b { font-family: var(--serif); font-size: 1.1rem; white-space: nowrap; }
a.distance-item:hover { border-color: var(--accent); transform: translateY(-2px); }

/* preview cards with photo (hub page only) */
.distance-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.distance-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.distance-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,10,0.05) 40%, rgba(15,13,8,0.85) 100%);
}
.distance-photo:hover { transform: translateY(-2px); }
.distance-photo:hover img { transform: scale(1.06); }
.distance-photo .distance-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.distance-photo .distance-text span:first-child { font-size: 0.82rem; color: rgba(255,255,255,0.82); }
.distance-photo b { font-family: var(--serif); font-size: 1.1rem; color: #fff; white-space: nowrap; }

/* ---------- reviews ---------- */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.review-stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p { font-size: 0.98rem; color: var(--ink); margin-bottom: 22px; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600;
}
.review-who b { display: block; font-size: 0.92rem; }
.review-who span { font-size: 0.78rem; color: var(--ink-soft); }
.reviews-track--pair {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

/* ---------- rules ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.rules-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.rules-col h4 { margin-bottom: 18px; font-size: 1.05rem; }
.rules-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rules-col li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 24px; position: relative; }
.rules-col li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
}
.rules-col.no li::before { background: #b3563a; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}
.faq-q .plus { transition: transform 0.3s ease; font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- request form ---------- */
.request {
  background: var(--ink);
  color: #f3ede0;
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
.request::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.35;
  top: -220px; right: -160px;
  border-radius: 50%;
}
.request-intro { position: relative; }
.request-intro .eyebrow { color: var(--accent-soft); }
.request-intro .eyebrow::before { background: var(--accent-soft); }
.request-intro h2 { color: #fff; margin-top: 16px; }
.request-intro p { margin-top: 18px; color: rgba(243,237,224,0.72); max-width: 40ch; }
.request-contacts { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.request-contacts a { text-decoration: none; font-weight: 700; color: #fff; font-size: 1.05rem; }
.request-contacts span { display: block; font-size: 0.78rem; color: rgba(243,237,224,0.55); }

.request-form {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 34px;
  backdrop-filter: blur(6px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(243,237,224,0.6);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 13px 14px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
}
.field input::placeholder { color: rgba(243,237,224,0.4); }
.field input:focus, .field select:focus { outline: 2px solid var(--accent); border-color: transparent; }
.request-form .btn-primary { width: 100%; margin-top: 6px; padding: 16px; font-size: 1rem; }
.form-note { margin-top: 14px; font-size: 0.78rem; color: rgba(243,237,224,0.5); text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.is-visible { display: block; }
.form-success .ic { font-size: 2.4rem; margin-bottom: 14px; }
.form-success h3 { color: #fff; margin-bottom: 10px; }
.form-success p { color: rgba(243,237,224,0.7); }

/* ---------- booking bar (redirect to integrator) ---------- */
.booking-card {
  background: var(--ink);
  color: #f3ede0;
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.32;
  top: -320px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.booking-card .eyebrow { position: relative; justify-content: center; color: var(--accent-soft); }
.booking-card .eyebrow::before { background: var(--accent-soft); }
.booking-card h2 { position: relative; color: #fff; margin-top: 16px; }
.booking-card > p { position: relative; margin: 14px auto 0; max-width: 54ch; color: rgba(243,237,224,0.72); }

.booking-bar {
  position: relative;
  margin: 40px auto 0;
  max-width: 760px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  padding: 10px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  backdrop-filter: blur(6px);
}
.bb-field {
  flex: 1;
  text-align: left;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.bb-field:last-of-type { border-right: none; }
.bb-field label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(243,237,224,0.5);
  margin-bottom: 4px;
}
.bb-field input {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0;
  color-scheme: dark;
}
.bb-field input:focus { outline: none; }
.bb-submit {
  border-radius: 100px;
  padding: 0 30px;
  white-space: nowrap;
  flex-shrink: 0;
}
.booking-note { position: relative; margin-top: 18px; font-size: 0.78rem; color: rgba(243,237,224,0.5); }

@media (max-width: 720px) {
  .booking-card { padding: 48px 24px; border-radius: 24px; }
  .booking-bar { flex-direction: column; border-radius: 20px; align-items: stretch; }
  .bb-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 12px 16px; }
  .bb-submit { margin-top: 4px; padding: 16px; }
}

/* ---------- hub ---------- */
.hub-hero {
  padding: 150px 0 90px;
  text-align: center;
}
.hub-hero .eyebrow { justify-content: center; }
.hub-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  max-width: 18ch;
  margin: 20px auto 0;
}
.hub-hero p {
  max-width: 52ch;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.property-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  display: block;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
}
.property-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,10,0.05) 30%, rgba(15,13,8,0.88) 100%);
}
.property-card:hover img { transform: scale(1.06); }
.property-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 28px;
}
.property-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  margin-bottom: 14px;
}
.property-body h3 { font-size: 1.6rem; color: #fff; }
.property-body p { margin-top: 8px; color: rgba(255,255,255,0.8); font-size: 0.92rem; max-width: 34ch; }
.property-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 18px;
}
.property-price { font-family: var(--serif); font-size: 1.15rem; }
.property-price small { display: block; font-family: var(--sans); font-size: 0.7rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.property-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.property-card:hover .property-link { transform: translateX(3px); }

.hub-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 40px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hub-strip b { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; display: block; }

@media (max-width: 820px) {
  .property-grid { grid-template-columns: 1fr; }
  .hub-hero { padding: 130px 0 60px; }
}

/* ---------- footer ---------- */
.site-footer { padding: 56px 0 34px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { font-size: 1.3rem; }
.footer-brand p { margin-top: 10px; color: var(--ink-soft); font-size: 0.9rem; max-width: 32ch; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 14px; }
.footer-col a { display: block; text-decoration: none; color: var(--ink); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- sticky mobile cta ---------- */
.mobile-cta {
  display: none;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; aspect-ratio: 16/9; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
  .reviews-track { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .request { grid-template-columns: 1fr; padding: 40px 28px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { padding-top: 140px; }
  .site-header > .wrap:first-child { padding: 8px 8px 8px 20px; }
  .section { padding: 72px 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid a.wide { grid-column: span 1; }
  .distance-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-links { gap: 30px; }
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    z-index: 60;
  }
  .mobile-cta .btn { width: 100%; }
  .site-footer { padding-bottom: 96px; }
}

/* ---------- reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
