/* home.css — page-specific styles */

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 80svh; min-height: 80vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('https://uc.orez.io/i/f156ec3a90634db48a80883bc7c862f3-LargeOriginal');
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,18,13,0.2) 0%, rgba(22,18,13,0.04) 30%, rgba(22,18,13,0.62) 68%, rgba(22,18,13,0.96) 100%);
}
.hero-overlay::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 45% 100% at 0% 50%, rgba(22,18,13,0.28) 0%, transparent 70%), radial-gradient(ellipse 45% 100% at 100% 50%, rgba(22,18,13,0.28) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 40px; max-width: 860px;
  opacity: 0; animation: riseIn 1s var(--ease) 0.3s forwards;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.hero-eyebrow::before { content:''; width: 32px; height: 1px; background: var(--gold); opacity: 0.8; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300; color: var(--cream);
  line-height: 1.04; letter-spacing: -0.025em; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); display: block; }
.hero-sub { font-size: 16px; font-weight: 300; color: var(--w70); line-height: 1.65; max-width: 440px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary {
  display: inline-flex; align-items: center; padding: 14px 32px;
  background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; padding: 14px 26px;
  background: none; color: var(--w70);
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold-bdr); color: var(--cream); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap;
  border-top: 1px solid rgba(176,141,87,0.18);
  margin-top: 48px;
  opacity: 0; animation: riseIn 0.8s var(--ease) 1s forwards;
}
.hero-stat { flex: 1; min-width: 80px; padding: 18px 22px; border-right: 1px solid rgba(176,141,87,0.12); }
.hero-stat:last-child { border-right: none; }
.hero-stat-n { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: 2px; }
.hero-stat-n sup { font-size: 14px; vertical-align: super; }
.hero-stat-n .sm { font-size: 15px; }
.hero-stat-l { font-size: 9px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w45); }

/* ═══ UTILITIES ═══ */
.inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.eyebrow::before { content:''; width: 22px; height: 1px; background: var(--gold); opacity: 0.7; }
h2.ht { font-family: var(--serif); font-size: clamp(28px, 3vw, 48px); font-weight: 300; color: var(--bark); line-height: 1.1; letter-spacing: -0.02em; }
h2.ht em { font-style: italic; color: var(--gold); }
h2.ht-light { font-family: var(--serif); font-size: clamp(28px, 3vw, 48px); font-weight: 300; color: var(--cream); line-height: 1.1; letter-spacing: -0.02em; }
h2.ht-light em { font-style: italic; color: var(--gold-lt); }
.reveal { opacity: 1; transform: none; transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.js-ready .reveal { opacity: 0; transform: translateY(18px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }
@keyframes riseIn { from { opacity:0; transform:translateY(18px);} to {opacity:1;transform:none;} }

/* ═══ OVERVIEW ═══ */
.overview { background: var(--linen); padding: 104px 0 88px; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.overview-copy h2 { margin-bottom: 20px; }
.overview-copy p { font-size: 16px; font-weight: 300; color: var(--stone); line-height: 1.85; margin-bottom: 14px; }
.overview-copy p strong { font-weight: 500; color: var(--bark); }
.overview-copy p:first-of-type::first-letter { font-family: var(--serif); font-size: 60px; font-weight: 300; color: var(--gold); float: left; line-height: 0.78; margin-right: 8px; margin-top: 10px; }
.overview-meta { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(176,141,87,0.2); font-size: 13px; color: var(--stone); font-weight: 300; line-height: 1.6; }
.overview-aside { position: sticky; top: 88px; }
.aside-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; }
.aside-caption { font-size: 11px; font-weight: 300; letter-spacing: 0.08em; color: var(--stone); text-transform: uppercase; text-align: center; margin-top: 10px; }

/* ═══ STATS BAND ═══ */
.stats-band { background: var(--forest); padding: 64px 0; position: relative; overflow: hidden; }
.stats-band::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(176,141,87,0.07) 0%, transparent 60%); }
.stats-row { position: relative; display: grid; grid-template-columns: repeat(7,1fr); border-top: 1px solid rgba(176,141,87,0.14); border-bottom: 1px solid rgba(176,141,87,0.14); }
.stat-cell { padding: 28px 16px; border-right: 1px solid rgba(176,141,87,0.1); text-align: center; transition: background 0.3s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(176,141,87,0.05); }
.stat-n { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-n sup { font-size: 17px; }
.stat-n .sm { font-size: 20px; }
.stat-l { font-size: 9px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w45); }

/* ═══ MOSAIC ═══ */
.mosaic { background: var(--bark); }
.mosaic-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; grid-template-rows: 330px 330px; gap: 3px; }
.mosaic-cell:first-child { grid-row: 1/3; }
.mosaic-cell { overflow: hidden; position: relative; }
.mosaic-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mosaic-cell:hover .mosaic-photo { transform: scale(1.05); }
.mosaic-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,18,13,0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s; }
.mosaic-cell:hover .mosaic-veil { opacity: 1; }
.mosaic-cap { position: absolute; bottom: 16px; left: 20px; font-family: var(--serif); font-size: 14px; font-style: italic; font-weight: 300; color: var(--cream); opacity: 0; transform: translateY(5px); transition: opacity 0.4s, transform 0.4s; }
.mosaic-cell:hover .mosaic-cap { opacity: 1; transform: none; }
.mosaic-footer { background: var(--canopy); display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; text-decoration: none; transition: background 0.2s; }
.mosaic-footer:hover { background: var(--forest); }
.mosaic-footer-l { font-family: var(--serif); font-size: 18px; font-weight: 300; font-style: italic; color: var(--cream); }
.mosaic-footer-r { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.mosaic-footer:hover .mosaic-footer-r { gap: 14px; }

/* ═══ WHO IT'S FOR ═══ */
.for-section { background: var(--linen); padding: 104px 0; }
.for-header { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 48px; }
.for-lead { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.8; margin-top: 14px; }
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.for-card { position: relative; overflow: hidden; aspect-ratio: 4/3; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.for-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--ease); }
.for-card:hover .for-bg { transform: scale(1.06); }
.for-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,18,13,0.88) 0%, rgba(22,18,13,0.35) 50%, rgba(22,18,13,0.08) 100%); }
.for-body { position: relative; z-index: 2; padding: 24px 28px; transform: translateY(5px); transition: transform 0.4s var(--ease); }
.for-card:hover .for-body { transform: none; }
.for-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.for-title { font-family: var(--serif); font-size: 21px; font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 8px; }
.for-desc { font-size: 13px; font-weight: 300; color: var(--w70); line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.45s var(--ease), opacity 0.4s; }
.for-card:hover .for-desc { max-height: 90px; opacity: 1; }
.for-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 9px; opacity: 0; transform: translateY(3px); transition: opacity 0.3s 0.1s, transform 0.3s 0.1s; }
.for-card:hover .for-cta { opacity: 1; transform: none; }

/* ═══ AMENITIES ═══ */
.amenities { background: var(--forest); padding: 104px 0; position: relative; }
.amenities::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg,transparent,rgba(176,141,87,0.25),transparent); }
.amenities-grid { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.amenities-left { position: sticky; top: 88px; }
.amenities-left h2 { margin-bottom: 18px; }
.amenities-left p { font-size: 15px; font-weight: 300; color: var(--w70); line-height: 1.8; margin-bottom: 24px; }
.amenities-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.amenity-cat { border-bottom: 1px solid rgba(176,141,87,0.1); }
.amenity-hd { display: flex; align-items: center; gap: 12px; padding: 16px 0; cursor: pointer; user-select: none; }
.amenity-icon { font-size: 15px; flex-shrink: 0; }
.amenity-name { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--cream); flex: 1; }
.amenity-ct { font-size: 11px; font-weight: 300; color: var(--w45); }
.amenity-tog { width: 16px; height: 16px; position: relative; flex-shrink: 0; }
.amenity-tog::before,.amenity-tog::after { content:''; position:absolute; background: var(--gold); border-radius:1px; transition: transform 0.3s, opacity 0.3s; }
.amenity-tog::before { width:10px; height:1px; top:7px; left:3px; }
.amenity-tog::after  { width:1px; height:10px; top:3px; left:7px; }
.amenity-cat.open .amenity-tog::after { transform: rotate(90deg); opacity: 0; }
.amenity-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.amenity-cat.open .amenity-body { max-height: 600px; }
.amenity-body-inner { overflow: hidden; }
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; padding: 4px 0 16px 28px; }
.amenity-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 300; color: var(--w70); }
.amenity-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.65; flex-shrink: 0; }

/* ═══ PHOTO STRIP ═══ */
.strip { display: flex; gap: 3px; height: 250px; overflow: hidden; background: var(--bark); }
.strip-cell { flex: 0 0 auto; width: 21%; overflow: hidden; transition: flex-basis 0.5s var(--ease); }
.strip-cell:hover { flex-basis: 35%; }
.strip-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.strip-cell:hover .strip-img { transform: scale(1.04); }

/* ═══ LOCATION ═══ */
.location { background: var(--parchment); padding: 104px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.location-copy h2 { margin-bottom: 16px; }
.location-copy p { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.85; margin-bottom: 24px; }
.distances { border-top: 1px solid rgba(176,141,87,0.2); }
.dist-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(176,141,87,0.12); }
.dist-name { font-size: 14px; font-weight: 400; color: var(--bark); }
.dist-time { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--gold); }
.location-right { position: relative; }
.location-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.loc-badge { position: absolute; bottom: -16px; right: -16px; width: 104px; height: 104px; border-radius: 50%; background: var(--forest); border: 2px solid var(--gold-bdr); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.loc-badge-n { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--gold-lt); line-height: 1; }
.loc-badge-l { font-size: 9px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w45); margin-top: 3px; line-height: 1.3; }

/* ═══ REVIEWS ═══ */
.reviews { background: var(--ink); padding: 104px 0 136px; position: relative; }
.reviews::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(176,141,87,0.05) 0%, transparent 65%); }
.reviews-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 24px; }
.reviews-rating { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.stars { display: flex; gap: 3px; }
.star { color: var(--gold); font-size: 14px; }
.rating-num { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--gold-lt); line-height: 1; }
.rating-ct { font-size: 11px; font-weight: 300; color: var(--w45); letter-spacing: 0.04em; margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(176,141,87,0.1); border-radius: 6px; padding: 28px 24px; transition: border-color 0.3s, background 0.3s; }
.review-card:hover { border-color: var(--gold-bdr); background: rgba(176,141,87,0.04); }
.review-q { font-family: var(--serif); font-size: 48px; font-weight: 300; color: rgba(176,141,87,0.18); line-height: 0.6; margin-bottom: 10px; display: block; }
.review-text { font-family: var(--serif); font-size: 16px; font-weight: 300; font-style: italic; color: var(--cream); line-height: 1.65; margin-bottom: 20px; }
.review-foot { display: flex; align-items: center; justify-content: space-between; }
.review-who { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--w45); }
.review-when { font-size: 11px; font-weight: 300; color: var(--gold); font-style: italic; }
.review-stars .star { font-size: 11px; }
.reviews-more { text-align: center; margin-top: 32px; padding-bottom: 24px; scroll-margin-bottom: 80px; }
.reviews-more a { font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-bdr); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.reviews-more a:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ═══ BOOK DIRECT ═══ */
.book { background: var(--canopy); padding: 88px 0; position: relative; overflow: hidden; }
.book::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 80% 70% at 50% 110%, rgba(176,141,87,0.1) 0%, transparent 60%); }
.book-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.book-copy h2 { margin-bottom: 14px; }
.book-copy p { font-size: 15px; font-weight: 300; color: #ffffff; line-height: 1.8; margin-bottom: 10px; }
.book-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.perk { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; font-weight: 300; color: var(--w70); line-height: 1.5; }
.perk-check { width: 18px; height: 18px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-bdr); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 9px; color: var(--gold); margin-top: 1px; }
.book-box { background: rgba(22,18,13,0.5); border: 1px solid rgba(176,141,87,0.18); border-radius: 8px; padding: 36px 32px; text-align: center; }
.book-avail-note { font-size: 13px; font-weight: 300; color: var(--w45); line-height: 1.65; margin-bottom: 8px; }
.book-season { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.book-season-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(176,141,87,0.1); border-radius: 5px; }
.book-season-label { font-size: 12px; font-weight: 300; color: var(--w45); }
.book-season-val { font-family: var(--serif); font-size: 14px; font-weight: 300; color: var(--gold-lt); }
.book-tax-note { font-size: 11px; font-weight: 300; color: var(--w45); font-style: italic; margin-bottom: 22px; line-height: 1.55; }
.btn-book { display: block; width: 100%; padding: 14px; background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 3px; text-align: center; transition: background 0.2s, transform 0.15s; margin-bottom: 12px; }
.btn-book:hover { background: var(--gold-lt); transform: translateY(-1px); }
.book-or { font-size: 11px; font-weight: 300; color: var(--w45); margin-bottom: 10px; }
.book-contacts { display: flex; flex-direction: column; gap: 6px; }
.book-contacts a { font-size: 13px; font-weight: 300; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.book-contacts a:hover { color: var(--gold-lt); }
.book-ota { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(176,141,87,0.12); }
.book-ota-label { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w20); margin-bottom: 10px; text-align: center; }
.book-ota-links { display: flex; gap: 10px; justify-content: center; }
.book-ota-link { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; background: none; border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; font-size: 12px; font-weight: 400; letter-spacing: 0.04em; color: var(--w45); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.book-ota-link:hover { border-color: rgba(255,255,255,0.25); color: var(--w70); }
.book-ota-link svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* ═══ FOOTER ═══ */
footer { background: var(--ink); border-top: 1px solid rgba(176,141,87,0.1); }
.footer-body { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 56px 40px 40px; max-width: 1100px; margin: 0 auto; }
.footer-brand-name { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--cream); margin-bottom: 3px; }
.footer-brand-name em { font-style: italic; color: var(--gold-lt); }
.footer-brand-loc { font-size: 10px; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; color: var(--w45); margin-bottom: 14px; }
.footer-desc { font-size: 13px; font-weight: 300; color: var(--w45); line-height: 1.7; margin-bottom: 18px; }

/* Footer social icons */
.footer-socials { display: flex; gap: 10px; margin-bottom: 4px; }
.footer-social { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(176,141,87,0.18); display: flex; align-items: center; justify-content: center; color: var(--w45); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.footer-social:hover { border-color: var(--gold-bdr); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

.footer-col-title { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--w45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact-rows { display: flex; flex-direction: column; gap: 9px; }
.fcr { display: flex; flex-direction: column; gap: 1px; }
.fcr-label { font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--w20); }
.fcr-val { font-size: 13px; font-weight: 300; color: var(--w45); text-decoration: none; transition: color 0.2s; }
.fcr-val:hover { color: var(--gold); }
.footer-base { border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 40px; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 11px; font-weight: 300; color: var(--w20); }
.footer-legal { display: flex; gap: 16px; list-style: none; }
.footer-legal a { font-size: 11px; font-weight: 300; color: var(--w20); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--w45); }

/* ═══ MOBILE — FULLY OPTIMIZED ═══ */
/* Large tablet */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(4,1fr); }
  .stat-cell:nth-child(4) { border-right: none; }
  .stat-cell:nth-child(5) { border-top: 1px solid rgba(176,141,87,0.1); }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenities-left { position: static; }
  .for-header { grid-template-columns: 1fr; gap: 16px; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Tablet */
@media (max-width: 860px) {
  #nav { padding: 0 20px; height: 60px; }
  .nav-links, .nav-socials { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { top: 60px; }

  .inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .hero-stats { display: none; }
  .hero { min-height: 65svh; min-height: 65vh; }
  .hero-sub { font-size: 15px; }

  .overview { padding: 72px 0 64px; }
  .overview-grid { grid-template-columns: 1fr; gap: 0; }
  .overview-aside { display: none; }

  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .mosaic-cell:first-child { grid-row: auto; grid-column: 1/-1; height: 280px; }
  .mosaic-footer { padding: 18px 20px; }

  .for-grid { grid-template-columns: 1fr; }
  .for-card { aspect-ratio: 16/9; }

  .amenities-img { aspect-ratio: 16/9; }
  .amenity-list { grid-template-columns: 1fr; }

  .strip { display: none; }

  .location { padding: 72px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-right { padding-right: 0; }
  .loc-badge { display: none; }

  .reviews { padding: 72px 0; }
  .reviews-hd { flex-direction: column; align-items: flex-start; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .book { padding: 72px 0; }
  .book-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-body { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; }
  .footer-base { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .stats-band { padding: 48px 0; }
}

/* Mobile */
@media (max-width: 580px) {
  #nav { height: 56px; }
  .nav-logo-main { font-size: 16px; }
  .nav-drawer { top: 56px; }
  .nav-book { padding: 8px 16px; font-size: 10px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 16px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }

  .overview { padding: 56px 0 48px; }
  .inner { padding: 0 16px; }

  .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic-cell { height: 220px; }
  .mosaic-cell:first-child { height: 260px; grid-column: auto; }

  .for-section { padding: 64px 0; }
  .for-card { aspect-ratio: 4/3; }

  .amenities { padding: 64px 0; }

  .location { padding: 64px 0; }
  .location-photo { aspect-ratio: 16/9; }

  .reviews { padding: 64px 0; }
  .review-card { padding: 22px 18px; }

  .book { padding: 64px 0; }
  .book-box { padding: 28px 20px; }

  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(5), .stat-cell:nth-child(7) { border-right: none; }
  .stat-cell { padding: 22px 12px; }

  .footer-body { grid-template-columns: 1fr; padding: 32px 16px 24px; }
  .footer-base { padding: 12px 16px; }
  .footer-legal { flex-wrap: wrap; gap: 10px; }

  h2.ht, h2.ht-light { font-size: 28px; }
}

/* Touch — remove hover-only effects */
@media (hover: none) {
  .for-desc { max-height: 80px !important; opacity: 1 !important; }
  .for-cta { opacity: 1 !important; transform: none !important; }
  .for-card .for-body { transform: none !important; }
  .mosaic-veil { opacity: 0.6 !important; }
  .mosaic-cap { opacity: 1 !important; transform: none !important; }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  footer { padding-bottom: env(safe-area-inset-bottom); }
}
.reviews-more { text-align: center; margin-top: 32px; padding-bottom: 24px; scroll-margin-bottom: 80px; }
.reviews-more-link {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid var(--gold-bdr);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.reviews-more-link:hover { color: var(--gold-lt); border-color: var(--gold); }

/* ── BOOKING ANCHOR BAND ── */
.booking-anchor {
  background: var(--forest);
  border-bottom: 1px solid rgba(176,141,87,0.12);
  padding: 20px 40px;
}
.booking-anchor-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ba-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ba-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
}
.ba-detail {
  font-size: 12px;
  font-weight: 300;
  color: var(--w45);
  letter-spacing: 0.02em;
}
.ba-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.ba-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.ba-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }
.ba-trust {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-trust-item {
  font-size: 11px;
  font-weight: 300;
  color: var(--w45);
}
.ba-trust-sep {
  color: var(--w20);
  font-size: 10px;
}

/* ── BOOK SECTION TRUST SIGNALS ── */
.book-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(176,141,87,0.06);
  border: 1px solid rgba(176,141,87,0.15);
  border-radius: 6px;
}
.bt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--w70);
  line-height: 1.4;
}
.bt-icon {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

@media (max-width: 860px) {
  .booking-anchor { padding: 16px 20px; }
  .booking-anchor-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ba-right { align-items: flex-start; width: 100%; }
  .ba-btn { width: 100%; justify-content: center; padding: 14px; font-size: 13px; }
  .ba-trust { display: none; }
}
@media (max-width: 580px) {
  .ba-detail { display: none; }
}

/* Reviews header right column — rating + link stacked */
.reviews-hd-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.reviews-hd-right .reviews-more-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-bdr);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.reviews-hd-right .reviews-more-link:hover {
  color: var(--gold-lt);
  border-color: var(--gold);
}
@media (max-width: 860px) {
  .reviews-hd-right { align-items: flex-start; }
}
