/* ================================================================
   German Village Lofts — Homepage Styles
   ================================================================ */

/* ── RESET (scoped to .gvl-page) ── */
.gvl-page *,
.gvl-page *::before,
.gvl-page *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── VARIABLES ── */
:root {
  --gvl-ink: #1a1612;
  --gvl-cream: #faf6f0;
  --gvl-warm: #f0e8da;
  --gvl-brick: #a0522d;
  --gvl-brick-light: #c4845c;
  --gvl-brick-dark: #7a3b1e;
  --gvl-gold: #c9a84c;
  --gvl-gold-light: #e0cc82;
  --gvl-slate: #4a4640;
  --gvl-mist: #e8e2d8;
  --gvl-white: #ffffff;
  --gvl-shadow: 0 4px 30px rgba(26,22,18,.08);
  --gvl-shadow-lg: 0 12px 50px rgba(26,22,18,.12);
  --gvl-radius: 6px;
  --gvl-font-display: 'Cormorant Garamond', Georgia, serif;
  --gvl-font-body: 'DM Sans', system-ui, sans-serif;
}

.gvl-page {
  font-family: var(--gvl-font-body);
  color: var(--gvl-ink);
  background: var(--gvl-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.gvl-page img { max-width: 100%; display: block; }
.gvl-page a { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.gvl-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── ANIMATIONS ── */
@keyframes gvlFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gvlFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.gvl-animate { opacity: 0; animation: gvlFadeUp .8s ease forwards; animation-play-state: paused; }
.gvl-animate.is-visible { animation-play-state: running; }
.gvl-d1 { animation-delay: .1s; }
.gvl-d2 { animation-delay: .2s; }
.gvl-d3 { animation-delay: .3s; }
.gvl-d4 { animation-delay: .4s; }
.gvl-d5 { animation-delay: .5s; }

/* ── TOPBAR ── */
.gvl-topbar {
  background: var(--gvl-ink);
  color: var(--gvl-cream);
  font-size: .8rem;
  letter-spacing: .06em;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
}
.gvl-topbar a {
  color: var(--gvl-gold-light);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.gvl-topbar a:hover { border-color: var(--gvl-gold-light); }

/* ── NAV ── */
.gvl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gvl-mist);
  transition: box-shadow .3s;
}
.gvl-nav.scrolled { box-shadow: 0 2px 20px rgba(26,22,18,.06); }
.gvl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gvl-logo {
  font-family: var(--gvl-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gvl-ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.gvl-logo span {
  display: block;
  font-size: .7rem;
  font-family: var(--gvl-font-body);
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gvl-brick);
  margin-top: 2px;
}
.gvl-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.gvl-nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--gvl-slate);
  transition: color .2s;
  position: relative;
}
.gvl-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gvl-brick);
  transition: width .25s;
}
.gvl-nav-links a:hover { color: var(--gvl-ink); }
.gvl-nav-links a:hover::after { width: 100%; }

.gvl-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gvl-brick);
  color: var(--gvl-white) !important;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--gvl-radius);
  cursor: pointer;
  transition: all .25s;
  text-transform: uppercase;
}
.gvl-btn-book:hover {
  background: var(--gvl-brick-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(160,82,45,.25);
}
.gvl-btn-book::after { display: none !important; } /* override nav link underline */
.gvl-btn-book svg { width: 16px; height: 16px; }

/* Mobile toggle */
.gvl-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.gvl-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gvl-ink);
  margin: 5px 0;
  transition: all .3s;
}

/* ── HERO ── */
.gvl-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gvl-ink);
}
.gvl-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,22,18,.75) 0%, rgba(26,22,18,.45) 50%, rgba(26,22,18,.65) 100%),
    url('https://germanvillagelofts.com/wp-content/uploads/2021/04/IMG_6173-scaled.jpeg') center/cover no-repeat;
  filter: brightness(1.05);
}
.gvl-hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='.3' opacity='.05'/%3E%3C/svg%3E");
  opacity: .6;
}
.gvl-hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 60px 24px;
}
.gvl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  color: var(--gvl-gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: gvlFadeUp .8s ease forwards;
}
.gvl-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gvl-gold);
  border-radius: 50%;
}
.gvl-hero h1 {
  font-family: var(--gvl-font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gvl-white);
  line-height: 1.08;
  margin-bottom: 20px;
  animation: gvlFadeUp .8s ease .15s forwards;
  opacity: 0;
}
.gvl-hero h1 em {
  font-style: italic;
  color: var(--gvl-gold-light);
}
.gvl-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
  animation: gvlFadeUp .8s ease .3s forwards;
  opacity: 0;
}
.gvl-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: gvlFadeUp .8s ease .45s forwards;
  opacity: 0;
}
.gvl-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: var(--gvl-radius);
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  border: none;
  font-family: var(--gvl-font-body);
}
.gvl-btn-hero.primary {
  background: var(--gvl-brick);
  color: var(--gvl-white);
}
.gvl-btn-hero.primary:hover {
  background: var(--gvl-brick-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,82,45,.3);
}
.gvl-btn-hero.secondary {
  background: transparent;
  color: var(--gvl-white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.gvl-btn-hero.secondary:hover {
  border-color: var(--gvl-white);
  background: rgba(255,255,255,.08);
}

/* Hero stats */
.gvl-hero-stats {
  position: absolute;
  bottom: 48px; right: 48px;
  z-index: 2;
  display: flex;
  gap: 40px;
  animation: gvlFadeUp .8s ease .6s forwards;
  opacity: 0;
}
.gvl-hero-stat { text-align: center; color: var(--gvl-white); }
.gvl-hero-stat .num {
  font-family: var(--gvl-font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gvl-gold-light);
  line-height: 1;
}
.gvl-hero-stat .label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-top: 6px;
}

/* ── TRUST BAR ── */
.gvl-trust-bar {
  background: var(--gvl-white);
  border-bottom: 1px solid var(--gvl-mist);
  padding: 24px 0;
}
.gvl-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.gvl-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--gvl-slate);
  font-weight: 500;
}
.gvl-trust-item svg { width: 20px; height: 20px; color: var(--gvl-brick); flex-shrink: 0; }
.gvl-trust-divider { width: 1px; height: 24px; background: var(--gvl-mist); }

/* ── SECTION HEADERS ── */
.gvl-section-header { text-align: center; margin-bottom: 56px; }
.gvl-section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gvl-brick);
  margin-bottom: 14px;
}
.gvl-section-header .eyebrow::before,
.gvl-section-header .eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gvl-brick-light);
}
.gvl-section-header h2 {
  font-family: var(--gvl-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gvl-ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.gvl-section-header p {
  font-size: 1.05rem;
  color: var(--gvl-slate);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── PROPERTIES ── */
.gvl-properties { padding: 100px 0 80px; background: var(--gvl-cream); }
.gvl-property-grid { display: flex; flex-direction: column; gap: 80px; }
.gvl-property-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.gvl-property-card:nth-child(even) { direction: rtl; }
.gvl-property-card:nth-child(even) > * { direction: ltr; }
.gvl-property-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gvl-property-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.gvl-property-card:hover .gvl-property-img img { transform: scale(1.03); }
.gvl-property-img .badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  background: var(--gvl-ink);
  color: var(--gvl-white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
}
.gvl-property-info { padding: 8px 0; }
.gvl-property-type {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gvl-brick);
  margin-bottom: 10px;
}
.gvl-property-info h3 {
  font-family: var(--gvl-font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.gvl-property-info .desc {
  color: var(--gvl-slate);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.gvl-property-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.gvl-amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gvl-white);
  border: 1px solid var(--gvl-mist);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gvl-slate);
}
.gvl-amenity svg { width: 14px; height: 14px; color: var(--gvl-brick); }
.gvl-booking-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.gvl-btn-ota {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--gvl-radius);
  transition: all .25s;
  border: 1.5px solid transparent;
  font-family: var(--gvl-font-body);
}
.gvl-btn-ota.airbnb { background: #FF5A5F; color: var(--gvl-white); border-color: #FF5A5F; }
.gvl-btn-ota.airbnb:hover { background: #e04e53; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,90,95,.3); }
.gvl-btn-ota.vrbo { background: #3c67f6; color: var(--gvl-white); border-color: #3c67f6; }
.gvl-btn-ota.vrbo:hover { background: #2b55dd; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(60,103,246,.3); }
.gvl-btn-ota.booking { background: var(--gvl-white); color: #003580; border-color: #003580; }
.gvl-btn-ota.booking:hover { background: #003580; color: var(--gvl-white); transform: translateY(-1px); }
.gvl-btn-ota.contact { background: var(--gvl-white); color: var(--gvl-brick); border-color: var(--gvl-brick); }
.gvl-btn-ota.contact:hover { background: var(--gvl-brick); color: var(--gvl-white); transform: translateY(-1px); }

.gvl-lease-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--gvl-radius);
  font-size: .85rem;
  color: var(--gvl-slate);
  margin-bottom: 20px;
  line-height: 1.5;
}
.gvl-lease-notice svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--gvl-gold); margin-top: 2px; }
.gvl-lease-notice a { color: var(--gvl-brick); font-weight: 600; }

/* ── NEIGHBORHOOD ── */
.gvl-neighborhood { padding: 100px 0; background: var(--gvl-white); }
.gvl-hood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.gvl-hood-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--gvl-shadow-lg);
  aspect-ratio: 1/1;
}
.gvl-hood-map iframe { width: 100%; height: 100%; border: 0; }
.gvl-hood-content h3 {
  font-family: var(--gvl-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.gvl-hood-content > p {
  color: var(--gvl-slate);
  margin-bottom: 28px;
  line-height: 1.7;
}
.gvl-poi-group { margin-bottom: 28px; }
.gvl-poi-group h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gvl-brick);
  margin-bottom: 12px;
}
.gvl-poi-list { display: flex; flex-direction: column; gap: 8px; }
.gvl-poi {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gvl-slate);
}
.gvl-poi .dist {
  margin-left: auto;
  font-size: .78rem;
  color: var(--gvl-brick-light);
  font-weight: 500;
  white-space: nowrap;
}
.gvl-poi svg { width: 16px; height: 16px; color: var(--gvl-brick); flex-shrink: 0; }

/* ── REVIEWS ── */
.gvl-reviews { padding: 100px 0; background: linear-gradient(180deg, var(--gvl-cream) 0%, var(--gvl-warm) 100%); }
.gvl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gvl-review-card {
  background: var(--gvl-white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--gvl-shadow);
  transition: transform .3s, box-shadow .3s;
}
.gvl-review-card:hover { transform: translateY(-4px); box-shadow: var(--gvl-shadow-lg); }
.gvl-review-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.gvl-review-stars svg { width: 18px; height: 18px; color: var(--gvl-gold); fill: var(--gvl-gold); }
.gvl-review-text {
  font-size: .92rem;
  color: var(--gvl-slate);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.gvl-review-author { font-size: .82rem; font-weight: 600; color: var(--gvl-ink); }
.gvl-review-source { font-size: .72rem; color: var(--gvl-brick-light); margin-top: 2px; }

/* ── CTA BANNER ── */
.gvl-cta-banner {
  padding: 80px 0;
  background: var(--gvl-ink);
  position: relative;
  overflow: hidden;
}
.gvl-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='.8' fill='%23ffffff' opacity='.04'/%3E%3C/svg%3E");
}
.gvl-cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.gvl-cta-inner h2 {
  font-family: var(--gvl-font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gvl-white);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
.gvl-cta-inner p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.gvl-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.gvl-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--gvl-radius);
  cursor: pointer;
  transition: all .3s;
  border: none;
  text-transform: uppercase;
  font-family: var(--gvl-font-body);
}
.gvl-btn-cta.gold { background: var(--gvl-gold); color: var(--gvl-ink); }
.gvl-btn-cta.gold:hover { background: var(--gvl-gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.3); }
.gvl-btn-cta.outline { background: transparent; color: var(--gvl-white); border: 1.5px solid rgba(255,255,255,.3); }
.gvl-btn-cta.outline:hover { border-color: var(--gvl-white); background: rgba(255,255,255,.06); }

/* ── FOOTER ── */
.gvl-footer {
  background: var(--gvl-ink);
  color: rgba(255,255,255,.5);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.gvl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.gvl-footer-brand .gvl-logo { color: var(--gvl-white); margin-bottom: 12px; }
.gvl-footer-brand p { font-size: .85rem; line-height: 1.6; max-width: 320px; }
.gvl-footer-col h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}
.gvl-footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color .2s;
}
.gvl-footer-col a:hover { color: var(--gvl-gold-light); }
.gvl-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
}
.gvl-footer-social { display: flex; gap: 16px; }
.gvl-footer-social a { color: rgba(255,255,255,.45); transition: color .2s; }
.gvl-footer-social a:hover { color: var(--gvl-gold-light); }
.gvl-footer-social svg { width: 20px; height: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gvl-nav-links { display: none; }
  .gvl-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--gvl-cream); padding: 20px 24px; border-bottom: 1px solid var(--gvl-mist); box-shadow: var(--gvl-shadow); }
  .gvl-mobile-toggle { display: block; }
  .gvl-hero-stats { display: none; }
  .gvl-property-card,
  .gvl-property-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .gvl-property-card:nth-child(even) > * { direction: ltr; }
  .gvl-hood-grid { grid-template-columns: 1fr; }
  .gvl-hood-map { aspect-ratio: 16/10; }
  .gvl-reviews-grid { grid-template-columns: 1fr; }
  .gvl-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gvl-hero-content { padding: 80px 24px 100px; }
  .gvl-hero { min-height: 85vh; }
}
@media (max-width: 600px) {
  .gvl-trust-inner { gap: 20px; }
  .gvl-trust-divider { display: none; }
  .gvl-booking-btns { flex-direction: column; }
  .gvl-btn-ota { justify-content: center; }
  .gvl-hero-ctas { flex-direction: column; }
  .gvl-btn-hero { justify-content: center; }
  .gvl-prop-hero-btns { flex-direction: column; }
  .gvl-gallery-grid { grid-template-columns: 1fr; }
  .gvl-prop-hero { min-height: 55vh; }
  .gvl-prop-hero h1 { font-size: 2.2rem; }
}

/* ================================================================
   HOMEPAGE — "View Details" link on property cards
   ================================================================ */
.gvl-btn-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gvl-brick);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s, gap .2s;
  letter-spacing: .02em;
  margin-left: 4px;
}
.gvl-btn-details:hover { color: var(--gvl-brick-dark); gap: 10px; }
.gvl-btn-details svg { width: 16px; height: 16px; transition: transform .2s; }
.gvl-btn-details:hover svg { transform: translateX(3px); }

/* ================================================================
   PROPERTY PAGE — Hero
   ================================================================ */
.gvl-prop-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 60px 0 56px;
}
.gvl-prop-hero .gvl-container { position: relative; z-index: 2; }
.gvl-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  transition: color .2s;
}
.gvl-back-link:hover { color: var(--gvl-white); }
.gvl-back-link svg { width: 16px; height: 16px; }
.gvl-prop-hero-type {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gvl-gold-light);
  margin-bottom: 10px;
}
.gvl-prop-hero h1 {
  font-family: var(--gvl-font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gvl-white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.gvl-prop-hero > .gvl-container > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.gvl-prop-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.gvl-prop-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.gvl-prop-hero-meta svg { width: 18px; height: 18px; color: var(--gvl-gold-light); }
.gvl-prop-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── AMENITIES BAR ── */
.gvl-amenities-bar {
  background: var(--gvl-white);
  border-bottom: 1px solid var(--gvl-mist);
  padding: 20px 0;
}
.gvl-amenities-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* ── PHOTO GALLERY ── */
.gvl-gallery {
  padding: 80px 0 100px;
  background: var(--gvl-cream);
}
.gvl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.gvl-gallery-item { }
.gvl-gallery-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--gvl-shadow);
  transition: box-shadow .3s;
}
.gvl-gallery-item:hover .gvl-gallery-img { box-shadow: var(--gvl-shadow-lg); }
.gvl-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gvl-gallery-item:hover .gvl-gallery-img img { transform: scale(1.03); }
.gvl-gallery-caption {
  font-size: .88rem;
  color: var(--gvl-slate);
  line-height: 1.55;
  margin-top: 12px;
  padding: 0 4px;
}

/* ── PROPERTY PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .gvl-gallery-grid { grid-template-columns: 1fr; }
  .gvl-prop-hero { min-height: 60vh; }
}
