/* ===================================================
   VENETOGEMS — MAIN STYLESHEET
   Venetian luxury aesthetic: gold, dark navy, warm cream
   Fonts: Cormorant Garamond (display) + Jost (body)
=================================================== */

:root {
  --gold: #B8860B;
  --gold-light: #D4AF37;
  --gold-pale: #F5E6B2;
  --dark: #0F0F1A;
  --dark-mid: #1A1A2E;
  --navy: #0D2B4E;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D5;
  --text: #2C2422;
  --text-mid: #5C4E44;
  --text-light: #8C7E74;
  --white: #FFFFFF;
  --terracotta: #C4622D;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --radius: 2px;
  --radius-lg: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 32px rgba(15, 15, 26, 0.12);
  --shadow-lg: 0 12px 60px rgba(15, 15, 26, 0.22);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--dark); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.btn-ghost-white:hover { border-color: var(--white); }

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }

.btn-small {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-small:hover { background: var(--gold); }

.btn-whatsapp { gap: 0.6rem; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(12, 12, 22, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 134, 11, 0.25);
}
/* On guide/light pages the navbar starts scrolled — always keep dark */
body:not(.has-hero) #navbar,
#navbar.scrolled {
  background: rgba(12, 12, 22, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184, 134, 11, 0.25);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.logo-vg { color: var(--white); }
.logo-gems { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
#navbar.scrolled .nav-links li a { color: rgba(255,255,255,0.9); }
#navbar.scrolled .nav-links li a:hover { color: var(--gold); }
.nav-book {
  padding: 0.55rem 1.4rem !important;
  background: var(--gold);
  color: var(--white) !important;
  font-size: 0.7rem !important;
  transition: background var(--transition) !important;
}
.nav-book:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1.5rem 2rem 2rem;
  gap: 1.25rem;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 8, 18, 0.72) 0%,
    rgba(10, 8, 18, 0.4) 60%,
    rgba(10, 8, 18, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 72px;
  animation: heroFadeUp 1.2s ease-out 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-mid);
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
}
.trust-item > div {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
}
.trust-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.trust-icon {
  color: var(--gold);
  font-size: 1.25rem;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ── BIENNALE BANNER ── */
.biennale-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  border-top: 1px solid rgba(184,134,11,0.3);
  border-bottom: 1px solid rgba(184,134,11,0.3);
  padding: 1.25rem 2rem;
}
.biennale-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.biennale-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.biennale-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
.biennale-text strong {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}
.biennale-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin: 0;
}

/* ── PROPERTIES ── */
.properties {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.properties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--cream-dark);
}
.prop-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prop-img-link { display: block; }
.prop-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.prop-featured .prop-img-wrap { aspect-ratio: 4/3; }
.prop-img-wrap img {
  transition: transform 0.6s ease;
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.04); }
.prop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.prop-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prop-location {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.prop-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.prop-name a { color: var(--text); transition: color var(--transition); }
.prop-name a:hover { color: var(--gold); }
.prop-tagline {
  color: var(--text-mid);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex: 1;
}
.prop-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.prop-details span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.3rem 0.7rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}
.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}
.prop-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-mid);
}
.prop-price strong {
  font-size: 1.6rem;
  color: var(--dark);
  font-weight: 500;
}
.prop-price span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── WHY DIRECT ── */
.why-direct {
  background: var(--dark-mid);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.why-direct::before {
  content: 'DIRECT';
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 600;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.why-text .section-title { color: var(--white); margin-bottom: 1.5rem; }
.why-text .section-eyebrow { color: var(--gold-light); }
.why-body {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.why-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.perk {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.perk-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.perk strong {
  display: block;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.perk p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 8rem 2rem;
  background: var(--cream);
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5px;
  background: var(--cream-dark);
  margin-top: 3rem;
  text-align: left;
}
.review-card {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-large { padding: 3rem; }
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.review-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.review-large p { font-size: 1.2rem; }
.review-card footer {
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}
.review-card footer strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}
.review-card footer span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ── DESTINATIONS ── */
.destinations { overflow: hidden; }
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dest-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.dest-venice {
  background-image: url('images/San Lorenzo/San Lorenzo - Exterior 2.jpg');
  background-size: cover;
  background-position: center;
}
.dest-albarella {
  background-image: url('images/Albarella/enhanced_Backyard-4-upd-standard v2-4x.jpg');
  background-size: cover;
  background-position: center;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,18,0.85) 0%, rgba(10,8,18,0.2) 60%, transparent 100%);
  transition: background var(--transition);
}
.dest-item:hover .dest-overlay {
  background: linear-gradient(to top, rgba(10,8,18,0.9) 0%, rgba(10,8,18,0.35) 60%, rgba(10,8,18,0.1) 100%);
}
.dest-content {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 2;
}
.dest-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.dest-content h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.dest-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

/* ── CONTACT ── */
.contact-section {
  padding: 8rem 2rem;
  background: var(--dark);
  text-align: center;
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}
.contact-inner .section-title { color: var(--white); }
.contact-inner .section-eyebrow { color: var(--gold-light); }
.contact-body {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: #080810;
  padding: 5rem 2rem 0;
  border-top: 1px solid rgba(184,134,11,0.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-links {
  display: contents;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-col strong {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.2);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ── PROPERTY PAGE STYLES ── */
.prop-hero {
  height: 80vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.prop-hero-img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}
.prop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,18,0.3) 0%, rgba(10,8,18,0.6) 100%);
}
.prop-hero-content {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  z-index: 2;
}
.prop-hero-content .section-eyebrow { 
  margin-bottom: 0.75rem;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.35);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.18em;
}
.prop-hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.prop-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 500px;
}

.prop-page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}

.prop-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 4px;
  margin-bottom: 4px;
}
.prop-gallery.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}
.prop-gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.prop-gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.prop-gallery img { transition: transform 0.5s ease; }
.prop-gallery-thumb:hover img,
.prop-gallery-main:hover img { transform: scale(1.04); }

.prop-desc h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark);
}
.prop-desc p {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}
.prop-desc ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
}
.prop-desc ul li {
  color: var(--text-mid);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prop-desc ul li::before {
  content: '◎';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.prop-quick-facts {
  display: flex;
  gap: 0;
  border: 1px solid var(--cream-dark);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.quick-fact {
  flex: 1;
  padding: 1.25rem;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}
.quick-fact:last-child { border-right: none; }
.quick-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
}
.quick-fact span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* BOOKING SIDEBAR */
.booking-sidebar {
  position: sticky;
  top: 90px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.booking-sidebar-header {
  background: var(--dark);
  padding: 1.75rem;
  text-align: center;
}
.booking-sidebar-header .price-from {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.booking-sidebar-header .price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.booking-sidebar-header .price-night {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.booking-sidebar-header .price-label {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.booking-sidebar-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-sidebar-body .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.75rem;
  padding: 1rem;
}
.booking-perks {
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.booking-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.booking-perk span:first-child {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.booking-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  border: 1px solid #25D366;
  color: #25D366;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  width: 100%;
}
.booking-whatsapp:hover { background: #25D366; color: var(--white); }

/* ── VENICE GUIDE PAGE ── */
.guide-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.guide-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.guide-body h2 {
  font-size: 2rem;
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.guide-body h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.guide-body p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.guide-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.guide-body ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.88rem;
  display: flex;
  gap: 0.75rem;
}
.guide-body ul li::before {
  content: '◎';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .properties-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prop-featured {
    grid-column: 1 / -1;
  }
  .prop-featured .prop-img-wrap { aspect-ratio: 4/3; }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-large { grid-row: 1; }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .prop-page-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 700px) {
  h1 { font-size: 3rem; }
  .hero-sub { font-size: 0.9rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .prop-featured { grid-column: auto; }
  .properties { padding: 4rem 1.25rem; }
  .why-direct, .reviews-section, .contact-section { padding: 5rem 1.25rem; }
  .why-perks { grid-template-columns: 1fr; }
  .trust-inner {
    gap: 1rem;
    flex-direction: column;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 0; }
  .biennale-inner { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .prop-gallery { grid-template-columns: 1fr; }
  .prop-gallery-main { grid-column: auto; }
  .prop-desc ul { grid-template-columns: 1fr; }
  .prop-quick-facts { flex-wrap: wrap; }
  .quick-fact { min-width: 50%; }
  .contact-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* =============================================
   LIGHTBOX
   ============================================= */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.active { display: flex; }

#lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 80px);
  padding: 60px 80px 20px;
  box-sizing: border-box;
}
#lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  transition: opacity 0.25s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

#lb-close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10001;
  font-family: sans-serif;
}
#lb-close:hover { opacity: 1; }

#lb-prev, #lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-prev:hover, #lb-next:hover { opacity: 1; background: rgba(255,255,255,0.22); }

#lb-counter {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
}

/* Filmstrip */
#lb-filmstrip-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  overflow: hidden;
  z-index: 10001;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#lb-filmstrip {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px 12px;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
#lb-filmstrip::-webkit-scrollbar { display: none; }
.lb-strip-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.lb-strip-thumb:hover { opacity: 0.75; }
.lb-strip-active {
  opacity: 1 !important;
  border-color: var(--gold, #b8860b) !important;
}

@media (max-width: 600px) {
  #lb-img-wrap { padding: 50px 16px; }
  #lb-prev { left: 6px; }
  #lb-next { right: 6px; }
}

/* ── AWARDS BAR ── */
.awards-bar {
  background: var(--dark-mid, #1a1a1a);
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  padding: 1.25rem 2rem;
}
.awards-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.award-badge-booking {
  background: #003580;
  color: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.85rem;
  text-align: center;
  flex-shrink: 0;
}
.award-score-num {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.award-score-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.award-badge-superhost {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,90,95,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.award-text strong {
  display: block;
  font-family: var(--font-body, sans-serif);
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}
.award-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.award-divider {
  width: 1px;
  height: 40px;
  background: rgba(184,134,11,0.25);
}
@media (max-width: 600px) {
  .awards-inner { gap: 1.5rem; flex-direction: column; align-items: flex-start; }
  .award-divider { width: 40px; height: 1px; }
}

/* ── PROP PAGE AWARDS ── */
.prop-awards {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream-dark, #f5f0e8);
  border: 1px solid #e0d8cc;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.prop-awards .award-text strong { color: var(--dark, #111); }
.prop-awards .award-text span { color: var(--text-mid, #666); }
.prop-awards .award-divider { background: #ddd; }
@media (max-width: 600px) {
  .prop-awards { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .prop-awards .award-divider { width: 40px; height: 1px; }
}

/* ── COMBINED OFFER BLOCK ── */
.combined-offer {
  margin: 3rem 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f0d 100%);
  border: 1px solid rgba(184,134,11,0.4);
  position: relative;
  overflow: hidden;
}
.combined-offer::before {
  content: 'VENICE · ALBARELLA';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(184,134,11,0.06);
  pointer-events: none;
  white-space: nowrap;
}
.combined-offer-inner {
  padding: 2.5rem;
}
.combined-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light, #c9a84c);
  margin-bottom: 0.5rem;
}
.combined-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.combined-title em { color: var(--gold, #b8860b); font-style: normal; }
.combined-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 0 0 2rem;
}
.combined-offer-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.15);
}
.combined-prop-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light, #c9a84c);
  margin-bottom: 0.35rem;
}
.combined-prop-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.combined-prop p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.83rem !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}
.combined-arrow {
  font-size: 2rem;
  color: var(--gold, #b8860b);
  text-align: center;
  opacity: 0.7;
}
.combined-offer-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.combined-note {
  flex: 1;
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
  line-height: 1.75;
  margin: 0;
  min-width: 200px;
}
.combined-note em { color: rgba(255,255,255,0.8); font-style: italic; }
@media (max-width: 640px) {
  .combined-offer-cols { grid-template-columns: 1fr; }
  .combined-arrow { transform: rotate(90deg); text-align: left; }
  .combined-offer-footer { flex-direction: column; align-items: flex-start; }
}

/* ── COMBINED OFFER — ALBARELLA VARIANT ── */
.combined-offer-cols--three {
  grid-template-columns: 1fr auto 1.2fr;
}
.combined-prop--venice {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.combined-venice-choice {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.combined-venice-opt {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(184,134,11,0.2);
  background: rgba(255,255,255,0.03);
}
.combined-venice-opt + .combined-venice-opt {
  border-top: none;
}
.combined-venice-opt strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.combined-venice-opt span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.combined-venice-divider {
  text-align: center;
  padding: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light, #c9a84c);
  border-left: 1px solid rgba(184,134,11,0.2);
  border-right: 1px solid rgba(184,134,11,0.2);
  background: rgba(184,134,11,0.06);
}
@media (max-width: 640px) {
  .combined-offer-cols--three { grid-template-columns: 1fr; }
}

/* ── ISLAND GUIDE BANNER ── */
.island-guide-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #0a1628 0%, #0d2010 100%);
  border: 1px solid rgba(184,134,11,0.35);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.island-guide-banner::before {
  content: '⛵';
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: 0.06;
  pointer-events: none;
}
.island-guide-banner:hover {
  border-color: rgba(184,134,11,0.7);
  transform: translateY(-1px);
}
.island-guide-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.island-guide-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light, #c9a84c);
}
.island-guide-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}
.island-guide-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}
.island-guide-arrow {
  font-size: 1.8rem;
  color: var(--gold, #b8860b);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.island-guide-banner:hover .island-guide-arrow {
  transform: translateX(4px);
}
@media (max-width: 500px) {
  .island-guide-banner { padding: 1.25rem; }
  .island-guide-title { font-size: 1.1rem; }
}

/* ── GALLERY VIEW ALL BUTTON ── */
.gallery-view-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 6px 0 0 auto;
  padding: 0.55rem 1.25rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.gallery-view-all:hover {
  background: rgba(184,134,11,0.8);
  border-color: var(--gold);
}

/* LANGUAGE SWITCHER */

  .lang-switcher {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin-left: 1rem;
  }
  .lang-btn {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 0.2rem 0.45rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease;
  }
  .lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
  .lang-btn.lang-active { color: var(--gold-light); border-color: var(--gold-light); }
