/* ============================================================
   TREMOSINE HOLIDAY — Stylesheet
   Brand: Olive #918469 | Avocado #D1C481 | Garden #929673
          Blue Sky #718EAF | Cream #F5EBE0 | Warm Clay #BC7942
   Fonts: Cormorant Garamond (display) + Raleway (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --olive:   #918469;
  --avocado: #D1C481;
  --garden:  #929673;
  --sky:     #718EAF;
  --cream:   #F5EBE0;
  --clay:    #BC7942;
  --dark:    #2C2A27;
  --mid:     #6B6560;
  --light-bg:#FDFAF6;
  --white:   #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(44,42,39,0.10);
  --shadow-lg: 0 8px 40px rgba(44,42,39,0.16);
  --transition: 0.3s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 780px; }
section { padding: 5rem 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
}
.btn-primary:hover { background: #a36538; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-outline:hover { background: var(--olive); color: var(--white); }

.btn-light {
  background: var(--cream);
  color: var(--dark);
}
.btn-light:hover { background: var(--avocado); }

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(253,250,246,0.97);
  box-shadow: 0 2px 16px rgba(44,42,39,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 2rem;
  max-width: 1260px;
  margin: 0 auto;
}
.nav-logo img, .nav-logo svg {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--clay); color: var(--clay); }

.nav-links .btn-nav {
  background: var(--clay);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  border-bottom: none;
  font-size: 0.75rem;
}
.nav-links .btn-nav:hover { background: #a36538; transform: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-content .section-label { color: var(--avocado); }
.hero-content h1 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Search bar inside hero */
.hero-search {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 10;
  width: 90%;
  max-width: 700px;
}
.search-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.search-field {
  flex: 1;
  min-width: 160px;
}
.search-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 0.4rem;
}
.search-field input {
  width: 100%;
  border: 1.5px solid #e0d9d0;
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light-bg);
  transition: border-color var(--transition);
}
.search-field input:focus { outline: none; border-color: var(--olive); }
.search-card .btn { white-space: nowrap; padding: 0.7rem 1.8rem; }

/* ── SECTION: Intro ──────────────────────────────────────── */
.intro-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--light-bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { color: var(--mid); }
.intro-image-wrap {
  position: relative;
}
.intro-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
}
.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--clay);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-display);
  text-align: center;
  box-shadow: var(--shadow);
}
.intro-badge strong { font-size: 2rem; display: block; line-height: 1; }
.intro-badge span { font-size: 0.8rem; font-family: var(--font-body); opacity: 0.9; }

/* ── SECTION: Features / Highlights ─────────────────────── */
.highlights {
  background: var(--cream);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.highlight-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.highlight-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon img { width: 26px; filter: brightness(0) invert(1); }
.highlight-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.highlight-card p { font-size: 0.9rem; color: var(--mid); margin: 0; }

/* ── SECTION: Featured Properties ───────────────────────── */
.featured-props {
  background: var(--light-bg);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header h2 { margin-bottom: 0; }

/* ── Property Cards ──────────────────────────────────────── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.props-grid--2col { grid-template-columns: repeat(2, 1fr); }
.props-grid--4col { grid-template-columns: repeat(4, 1fr); }

.prop-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,42,39,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.prop-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.04); }

.prop-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--clay);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}
.prop-price-badge {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  background: rgba(44,42,39,0.82);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.prop-price-badge small { font-size: 0.65rem; font-family: var(--font-body); opacity: 0.8; }

.prop-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.prop-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.prop-location img { width: 12px; opacity: 0.7; }
.prop-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.prop-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ede7df;
}
.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--mid);
}
.prop-meta-item img { width: 14px; opacity: 0.65; }
.prop-amenities {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.amenity-tag {
  background: var(--cream);
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

/* ── SECTION: Tremosine ──────────────────────────────────── */
.tremosine-section { background: var(--dark); color: var(--white); }
.tremosine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tremosine-text .section-label { color: var(--avocado); }
.tremosine-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tremosine-text p { color: rgba(255,255,255,0.75); }
.tremosine-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
}
.village-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.village-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── SECTION: Year-round ─────────────────────────────────── */
.seasons-section { background: var(--cream); }
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.season-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--avocado);
}
.season-card.clay { border-top-color: var(--clay); }
.season-card.sky  { border-top-color: var(--sky); }
.season-card.olive{ border-top-color: var(--olive); }
.season-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.season-card h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.season-card p { font-size: 0.85rem; color: var(--mid); margin: 0; }

/* ── SECTION: Welcome Card ───────────────────────────────── */
.welcome-card-section { background: var(--olive); color: var(--white); padding: 4rem 0; }
.welcome-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.welcome-card-img img { height: 180px; border-radius: 6px; box-shadow: var(--shadow); }
.welcome-card-text .section-label { color: var(--avocado); }
.welcome-card-text h2 { color: var(--white); margin-bottom: 1rem; }
.welcome-card-text p { color: rgba(255,255,255,0.82); }

/* ── SECTION: CTA Banner ─────────────────────────────────── */
.cta-banner {
  background: var(--cream);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--mid); max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--avocado); }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.footer-contact-item img { width: 14px; margin-top: 3px; opacity: 0.6; filter: invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); font-style: italic; }
.page-hero-content .section-label { color: var(--avocado); }

/* ── PROPERTIES PAGE ─────────────────────────────────────── */
.props-all { background: var(--light-bg); padding: 4rem 0 6rem; }
.props-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  border: 1.5px solid #ddd5ca;
  color: var(--mid);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-section { background: var(--light-bg); padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}
.about-values {
  background: var(--cream);
  padding: 5rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 6px;
  border-left: 3px solid var(--clay);
}
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--mid); margin: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section { background: var(--light-bg); padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon img { width: 18px; }
.contact-detail-text strong { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.2rem; }
.contact-detail-text p { margin: 0; font-size: 0.9rem; }

.contact-form-wrap { background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1.5px solid #ddd5ca;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light-bg);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ── GALLERY Lightbox ────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Gallery on property detail ─────────────────────────── */
.prop-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}
.prop-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: filter var(--transition);
}
.prop-gallery-grid img:hover { filter: brightness(0.85); }
.prop-gallery-grid img:first-child { grid-row: 1 / 3; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream);
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: var(--mid);
}
.breadcrumb a { color: var(--olive); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; position: fixed; inset: 0; top: 80px; background: var(--white); flex-direction: column; justify-content: flex-start; padding: 2.5rem 2rem; gap: 2rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero-search { position: static; transform: none; width: 100%; padding: 0 1rem; margin-top: 2rem; }
  .hero { min-height: 100svh; padding-bottom: 1rem; flex-direction: column; justify-content: center; }

  .intro-grid, .tremosine-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-badge { left: 0; bottom: -1rem; }
  .highlights-grid, .seasons-grid { grid-template-columns: 1fr; }
  .props-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-card-inner { grid-template-columns: 1fr; }
  .welcome-card-img img { height: 120px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .search-card { flex-direction: column; }
  .search-field { width: 100%; }
  .intro-image-wrap img { height: 300px; }
  .tremosine-image img { height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .props-grid--4col { grid-template-columns: 1fr; }
  .prop-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .prop-gallery-grid img:first-child { grid-row: auto; }
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.site-header:not(.scrolled) .lang-switcher { border-left-color: rgba(255,255,255,0.25); }
.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.2rem 0.45rem;
  transition: all 0.18s;
  line-height: 1;
}
.site-header.scrolled .lang-btn { color: var(--mid); }
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.site-header.scrolled .lang-btn:hover { color: var(--dark); background: var(--cream); }
.lang-btn.active {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
}
.site-header.scrolled .lang-btn.active {
  color: var(--olive);
  border-color: var(--olive);
  background: transparent;
}
/* mobile: hide lang switcher inside collapsed nav */
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 0.5rem;
    justify-content: center;
  }
}

/* ================================================================
   REDESIGN V2 — estetica sito live tremosineholiday.com
   ================================================================ */

/* Nuova palette aggiuntiva */
:root {
  --live-bg:       #F3F3F0;
  --live-dark-ol:  #5E5E4E;
  --live-greige:   #9C9B8A;
  --live-gold:     #C5B87A;
  --live-text:     #3D3D30;
  --live-mid:      #666666;
}

body { background: var(--live-bg); }

/* ── HERO MOSAIC ─────────────────────────────────────────────── */
.hero-mosaic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 0;
}

.mos-panel {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* col 1: foto full-height */
.mos-p1 { grid-row: 1 / 3; }

/* col 2: stacked */
.mos-p2a { }
.mos-p2b {
  background: var(--live-dark-ol);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
}
.mos-p2b img { width: 64px; height: 64px; opacity: 0.85; }
.mos-p2b span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(243,243,240,0.7);
}

/* col 3: crema botanica full-height */
.mos-p3 {
  grid-row: 1 / 3;
  background: var(--live-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mos-p3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.55;
  padding: 2rem;
}

/* col 4: stacked */
.mos-p4a {
  background: var(--live-greige);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}
.mos-p4a img { width: 80px; opacity: 0.6; }
.mos-p4b { }

/* overlay centrale */
.mosaic-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(94, 94, 78, 0.96);
  padding: 3rem 4rem;
  text-align: center;
  color: #F3F3F0;
  min-width: 360px;
  z-index: 20;
  backdrop-filter: blur(2px);
}
.mosaic-overlay .mo-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
  line-height: 1.1;
}
.mosaic-overlay .mo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(243,243,240,0.65);
  margin: 0 0 1.6rem;
}
.mosaic-overlay .mo-mark {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  opacity: 0.9;
}

/* DISCOVER cta */
.discover-cta {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 20;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F3F3F0;
  border: 1px solid rgba(243,243,240,0.6);
  padding: 0.55rem 1.6rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.discover-cta:hover {
  background: rgba(243,243,240,0.18);
}

/* ── PROPERTY SECTION (homepage + proprieta) ─────────────────── */
.prop-section-live {
  background: var(--live-bg);
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

/* decorazioni botaniche laterali */
.bot-deco {
  position: absolute;
  top: 8%;
  width: 160px;
  pointer-events: none;
  user-select: none;
}
.bot-deco-l { left: -20px; }
.bot-deco-r { right: -20px; transform: scaleX(-1); }
.bot-deco-l2 { left: -20px; top: 55%; }
.bot-deco-r2 { right: -20px; top: 55%; transform: scaleX(-1); }

/* grid 3 colonne proprietà */
.prop-grid-live {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* card proprietà */
.pcard {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pcard-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--live-greige) center / cover no-repeat;
}
.pcard-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(30,30,25,0.55));
  pointer-events: none;
}
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-name {
  position: absolute;
  bottom: 0.8rem; left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.pcard-specs {
  text-align: center;
  padding: 1rem 0.5rem 0;
}
.pcard-loc {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--live-text);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}
.pcard-detail {
  font-size: 0.78rem;
  color: var(--live-mid);
  line-height: 1.75;
  font-family: var(--font-body);
}

/* ── SPLIT GARDASEE ──────────────────────────────────────────── */
.gs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.gs-text {
  background: var(--live-gold);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gs-text blockquote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  color: #3D3D1A;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
.gs-text p {
  font-size: 0.9rem;
  color: rgba(61,61,26,0.82);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.gs-text .gs-bot-deco {
  position: absolute;
  right: 1.5rem; bottom: 1rem;
  width: 120px; opacity: 0.25;
}
.gs-btn {
  display: inline-block;
  border: 1.5px solid #3D3D1A;
  color: #3D3D1A;
  padding: 0.65rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
  align-self: flex-start;
}
.gs-btn:hover { background: #3D3D1A; color: #F3F3F0; }
.gs-photo {
  background: center / cover no-repeat;
  min-height: 350px;
}

/* ── GIULIA TESTIMONIAL ──────────────────────────────────────── */
.giulia-section {
  background: var(--live-greige);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 5rem 7rem;
}
.giulia-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.giulia-q {
  color: #F3F3F0;
}
.giulia-q .qq {
  font-size: 5rem;
  line-height: 1;
  color: rgba(243,243,240,0.3);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -1rem;
}
.giulia-q blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.giulia-q cite {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,243,240,0.65);
  font-style: normal;
}

/* ── FEATURES 4-COL ─────────────────────────────────────────── */
.features-live {
  background: var(--live-bg);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feat-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(94,94,78,0.08);
}
.feat-card .feat-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  display: block;
  opacity: 0.75;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--live-text);
  margin-bottom: 0.6rem;
}
.feat-card p {
  font-size: 0.83rem;
  color: var(--live-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── I ❤ GARDASEE ────────────────────────────────────────────── */
.gardasee-love {
  background: var(--live-text);
}
.ulivi-banner {
  background: center / cover no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}
.ulivi-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,45,30,0.42);
}
.love-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: #F3F3F0;
  letter-spacing: 0.18em;
  margin: 0;
}
.garda-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}
.garda-photo-cell {
  background: center / cover no-repeat;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.garda-photo-cell:hover { transform: scale(1.03); }

/* ── OVERRIDE: nav trasparente sul mosaic hero ───────────────── */
.site-header {
  background: transparent;
  box-shadow: none;
}
.site-header.scrolled {
  background: rgba(61,61,48,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mosaic-grid { grid-template-columns: 1fr 1fr; }
  .mos-p1, .mos-p3 { display: none; }
  .prop-grid-live { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; }
  .gs-split { grid-template-columns: 1fr; }
  .gs-photo { min-height: 300px; }
  .giulia-section { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .garda-photos { grid-template-columns: repeat(2, 1fr); height: 360px; }
  .mosaic-overlay { min-width: 280px; padding: 2rem 2.5rem; }
  .mosaic-overlay .mo-title { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .prop-grid-live { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .garda-photos { grid-template-columns: repeat(2, 1fr); }
  .mosaic-overlay { min-width: 240px; padding: 1.5rem 1.8rem; }
}

/* ================================================================
   HERO MOSAIC — Brand Board Panels (v3)
   ================================================================ */

/* Override griglia: 4 col, col 1 e col 3 full-height */
.hero-mosaic .mosaic-grid {
  grid-template-columns: 1.15fr 0.9fr 1.25fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: #2a2a20;  /* gap color tra i pannelli */
}

/* Pannelli colorati brand */
.mos-bb-olive  { background: #918469; grid-row: 1 / 3; }
.mos-bb-avocado{ background: #D1C481; }
.mos-bb-garden { background: #929673; }
.mos-bb-cream  { background: #F5EBE0; grid-row: 1 / 3; }
.mos-bb-sky    { background: #718EAF; }
.mos-bb-clay   { background: #BC7942; }

/* Tutti i pannelli: flex centrato */
.mos-bb-olive,
.mos-bb-avocado,
.mos-bb-garden,
.mos-bb-cream,
.mos-bb-sky,
.mos-bb-clay {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo sizes */
.bb-logo { display: block; }
.bb-logo-primary   { width: min(55%, 180px); }
.bb-logo-secondary { width: min(65%, 130px); }
.bb-logo-mark      { width: min(55%, 110px); }
.bb-logo-sub       { width: min(50%, 90px);  }

/* Decorativo botanico: quasi full-panel, tenue */
.bb-deco {
  width: 85%;
  height: 85%;
  object-fit: contain;
  opacity: 0.55;
}

/* Hover leggero sui pannelli */
.mos-bb-olive:hover,
.mos-bb-avocado:hover,
.mos-bb-garden:hover,
.mos-bb-sky:hover,
.mos-bb-clay:hover {
  filter: brightness(1.06);
  transition: filter 0.3s ease;
}

/* Nascondi i vecchi pannelli con foto (non esistono più nel markup) */
.mos-p1, .mos-p2a, .mos-p2b, .mos-p3, .mos-p4a, .mos-p4b { display: none; }

/* Overlay centrato: usa Garden come base per contrasto */
.mosaic-overlay {
  background: rgba(70, 72, 58, 0.94);
  border: 2px solid rgba(245,235,224,0.18);
}

/* Responsive brand board hero */
@media (max-width: 900px) {
  .hero-mosaic .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .mos-bb-olive { grid-row: 1 / 2; }
  .mos-bb-cream { grid-row: 2 / 3; grid-column: 1 / 3; }
  .mos-bb-garden, .mos-bb-sky { display: none; }
}
@media (max-width: 600px) {
  .hero-mosaic .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .mos-bb-cream { display: none; }
  .mos-bb-olive { grid-row: 1 / 3; }
  .mosaic-overlay { min-width: 240px; padding: 1.5rem 2rem; }
}

/* ================================================================
   NAV REDESIGN — orizzontale, visibile, lang-switcher a destra
   ================================================================ */

/* Struttura a 3 zone: logo | link | lang */
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  /* logo | nav-links (flex:1) | lang-switcher | hamburger */
  align-items: center;
  gap: 0;
  height: 74px;
  padding: 0 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

/* Logo: più piccolo e compatto */
.nav-logo img { height: 44px; width: auto; }

/* Link nav — orizzontali, centrati, visibili */
.nav-links {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 0 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F3F3F0;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.nav-links a.active { color: #fff; border-bottom-color: #fff; }

/* Scrolled: testo scuro */
.site-header.scrolled .nav-links a {
  color: var(--live-text);
  text-shadow: none;
}
.site-header.scrolled .nav-links a:hover { color: var(--olive); border-bottom-color: var(--olive); }
.site-header.scrolled .nav-links a.active { color: var(--olive); border-bottom-color: var(--olive); }

/* btn-nav (Kontakt) */
.nav-links .btn-nav {
  background: rgba(245,235,224,0.18);
  border: 1.5px solid rgba(245,235,224,0.55);
  color: #F3F3F0 !important;
  padding: 0.45rem 1.3rem;
  border-radius: 3px;
  text-shadow: none !important;
  border-bottom: none !important;
  letter-spacing: 0.14em;
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .btn-nav:hover {
  background: rgba(245,235,224,0.32);
  border-color: rgba(245,235,224,0.85);
}
.site-header.scrolled .nav-links .btn-nav {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff !important;
}
.site-header.scrolled .nav-links .btn-nav:hover { background: #7a6f5a; }

/* ── Lang Switcher con bandiere ─────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1.5rem;
  padding: 0;
  border: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243,243,240,0.7);
  padding: 0.25rem 0.5rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.lang-btn.active {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
}

/* Scrolled */
.site-header.scrolled .lang-btn { color: var(--mid); }
.site-header.scrolled .lang-btn:hover { color: var(--dark); border-color: var(--olive); }
.site-header.scrolled .lang-btn.active {
  color: var(--live-text);
  border-color: var(--olive);
  background: rgba(145,132,105,0.12);
}

/* Hamburger — nascosto su desktop */
.nav-toggle { display: none !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto auto;
    height: 64px;
    padding: 0 1.2rem;
  }
  .nav-links { display: none !important; }
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #F3F3F0;
    border-radius: 2px;
  }
  .site-header.scrolled .nav-toggle span { background: var(--live-text); }
  .nav-links.open {
    display: flex !important;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(61,61,48,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 200;
  }
  .nav-links.open a { font-size: 0.9rem; color: #F3F3F0 !important; text-shadow: none; }
  .lang-switcher { margin-left: 0.5rem; }
  .lang-btn { font-size: 0.6rem; padding: 0.2rem 0.35rem; }
}

/* ================================================================
   FOOTER FIX — allinea classi HTML alle regole CSS
   ================================================================ */

/* .footer-top si comporta come .footer-grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1260px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
}

/* .footer-nav / .footer-props / .footer-contact si comportano come .footer-col */
.footer-nav h4,
.footer-props h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-props ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a,
.footer-props a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-nav a:hover,
.footer-props a:hover { color: var(--avocado); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

/* brand nel footer */
.footer-brand .footer-logo {
  height: 42px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* footer-bottom centrato dentro la larghezza */
.footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.footer-credits-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 1rem 1.5rem 0; }
}

/* ================================================================
   NAV LEGGIBILITÀ FIX — testo sempre chiaro, gradiente su hero
   ================================================================ */

/* Sfondo solido scuro sempre visibile */
.site-header {
  background: rgba(35, 34, 25, 0.92) !important;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18) !important;
}

/* Scrolled: sfondo pieno scuro */
.site-header.scrolled {
  background: rgba(52, 50, 38, 0.97) !important;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18) !important;
}

/* Link nav — sempre chiari in entrambi gli stati */
.nav-links a {
  color: rgba(245, 235, 224, 0.92) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.nav-links a:hover {
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,0.7) !important;
}
.nav-links a.active {
  color: #fff !important;
  border-bottom-color: #fff !important;
}

/* Scrolled: link ancora chiari, rimuovi text-shadow */
.site-header.scrolled .nav-links a {
  color: rgba(245, 235, 224, 0.88) !important;
  text-shadow: none !important;
}
.site-header.scrolled .nav-links a:hover {
  color: #fff !important;
  border-bottom-color: var(--avocado) !important;
}
.site-header.scrolled .nav-links a.active {
  color: #fff !important;
  border-bottom-color: var(--avocado) !important;
}

/* btn-nav Kontakt — sempre visibile */
.nav-links .btn-nav {
  background: rgba(209, 196, 129, 0.22) !important;
  border: 1.5px solid rgba(209, 196, 129, 0.65) !important;
  color: #fff !important;
  text-shadow: none !important;
}
.nav-links .btn-nav:hover {
  background: rgba(209, 196, 129, 0.38) !important;
  border-color: rgba(209, 196, 129, 0.9) !important;
}
.site-header.scrolled .nav-links .btn-nav {
  background: var(--avocado) !important;
  border-color: var(--avocado) !important;
  color: var(--dark) !important;
}

/* Lang buttons — sempre chiari */
.lang-btn {
  color: rgba(245, 235, 224, 0.75) !important;
}
.lang-btn:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.4) !important;
}
.lang-btn.active {
  color: #fff !important;
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.14) !important;
}

/* Logo: sempre visibile (gestito da main.js per swap cream/olive,
   ma forziamo opacity piena) */
.nav-logo img { opacity: 1 !important; }

/* Hamburger linee sempre chiare */
.nav-toggle span {
  background: rgba(245,235,224,0.9) !important;
}

/* ── Flag icons nel lang switcher ───────────────────────────── */
.flag-icon {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.lang-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}

/* ================================================================
   PROPERTY CARDS — riquadri colorati brand (no foto)
   ================================================================ */

/* Nascondi la foto */
.pcard-img img {
  display: none !important;
}

/* Il riquadro diventa il colore di sfondo */
.pcard-img {
  aspect-ratio: 4 / 3 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: filter 0.3s ease;
}

/* Rimuovi il gradiente foto — non serve più */
.pcard-img::after { display: none !important; }

/* Decorativo SVG centrato, grande e tenue */
.pcard-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('loghi/SVG/decorativo_cream.svg') center / 65% no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

/* Nome proprietà — centrato nel riquadro, non più in basso */
.pcard-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
  padding: 0 1rem;
  bottom: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

/* Hover: schiarisce leggermente */
.pcard:hover .pcard-img {
  filter: brightness(1.08);
}

/* ── Colori per colonna (griglia 3 col, 3 colori) ── */
/* Col 1 (1, 4, 7, 10, 13) → Olive */
.prop-grid-live .pcard:nth-child(3n+1) .pcard-img { background: #918469; }
/* Col 2 (2, 5, 8, 11) → Blue Sky */
.prop-grid-live .pcard:nth-child(3n+2) .pcard-img { background: #718EAF; }
/* Col 3 (3, 6, 9, 12) → Garden */
.prop-grid-live .pcard:nth-child(3n+3) .pcard-img { background: #929673; }

/* ── Grid più larga, card più grandi ── */
.prop-grid-live {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 3px !important;           /* gap minimo come nel hero */
  max-width: 1300px !important;
  padding: 0 !important;
}

/* Rimuovi le decorazioni botaniche laterali
   (le foto erano il contenuto, ora i colori sono il design) */
.bot-deco { display: none !important; }

/* Specs sotto la card — testo più pulito */
.pcard-specs {
  padding: 0.9rem 0.6rem 0 !important;
}
.pcard-loc {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--live-text) !important;
  margin-bottom: 0.25rem !important;
}
.pcard-detail {
  font-size: 0.74rem !important;
  color: #888 !important;
  line-height: 1.6 !important;
}

/* Padding sezione ridotto — le card toccano i bordi come nel hero */
.prop-section-live {
  padding: 0 !important;
  background: var(--live-bg) !important;
}
/* Aggiunge spazio sopra e sotto per le specs */
.prop-grid-live {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 3rem !important;
}

/* ================================================================
   PROPERTY SECTION — Revert v2: foto nelle card, colori nel BACKGROUND
   ================================================================ */

/* 1. Ripristina foto nelle card */
.pcard-img img {
  display: block !important;
}
/* Ripristina il gradiente sfumato in basso */
.pcard-img::after {
  display: block !important;
}
/* Rimuovi il decorativo SVG centrato (era per i riquadri colorati) */
.pcard-img::before {
  display: none !important;
}

/* 2. Ripristina il nome in basso (come era prima) */
.pcard-name {
  position: absolute !important;
  bottom: 0.8rem !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  text-align: center !important;
  font-size: 1.35rem !important;
}

/* 3. Rimuovi i colori di sfondo dalle singole card
      (erano per coprire le foto, ora non servono) */
.prop-grid-live .pcard:nth-child(3n+1) .pcard-img,
.prop-grid-live .pcard:nth-child(3n+2) .pcard-img,
.prop-grid-live .pcard:nth-child(3n+3) .pcard-img {
  background: var(--live-greige, #9C9B8A) center / cover no-repeat;
}

/* 4. SFONDO DELLA SEZIONE — 3 strisce verticali, una per colonna:
      Olive | Blue Sky | Garden
      Visibili attraverso i 3px di gap tra le card e negli spazi vuoti
      dell'ultima riga (es. card 13 di 13: 2 slot vuoti in basso a destra) */
.prop-section-live {
  position: relative !important;
  overflow: hidden !important;
  background: transparent !important;
  padding: 0 !important;
}
.prop-section-live::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right,
    #918469   0%      33.33%,
    #718EAF  33.33%   66.66%,
    #929673  66.66%  100%
  );
}

/* La griglia deve stare sopra lo sfondo */
.prop-grid-live {
  position: relative !important;
  z-index: 1 !important;
}
/* Anche le decorazioni botaniche (se riabilitate) stiano sopra */
.bot-deco {
  position: relative !important;
  z-index: 1 !important;
}

/* 5. Padding / gap – rimangono come prima (3px) */
.prop-grid-live {
  gap: 3px !important;
  padding-bottom: 0 !important;
}

/* ================================================================
   PROPERTY SECTION — v3: 6 riquadri colorati nel background (3×2)
   Colori molto più chiari — gap più ampio = sfondo più visibile
   ================================================================ */

/* --- Sezione: 6 pannelli in 3 colonne × 2 righe ---- */
.prop-section-live {
  position: relative !important;
  overflow: hidden !important;
  background: transparent !important;
  padding: 0 !important;
}

/* Riga superiore (top 50%): Olive chiaro | Sky chiaro | Garden chiaro */
.prop-section-live::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 50% !important;
  height: auto !important;
  z-index: 0 !important;
  background: linear-gradient(to right,
    #E8E0D4   0%      33.33%,   /* Olive chiarissimo */
    #D5E8F8  33.33%   66.66%,   /* Sky chiarissimo  */
    #DDE3D4  66.66%   100%      /* Garden chiarissimo */
  ) !important;
  pointer-events: none !important;
}

/* Riga inferiore (bottom 50%): Avocado chiaro | Cream | Clay chiaro */
.prop-section-live::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  z-index: 0 !important;
  background: linear-gradient(to right,
    #F0EBC4   0%      33.33%,   /* Avocado chiarissimo */
    #FAF5EE  33.33%   66.66%,   /* Cream               */
    #F2DCC8  66.66%   100%      /* Clay chiarissimo    */
  ) !important;
  pointer-events: none !important;
}

/* Griglia sopra i pannelli colorati */
.prop-grid-live {
  position: relative !important;
  z-index: 1 !important;
  gap: 8px !important;   /* gap più ampio = sfondo ben visibile tra le card */
  padding-bottom: 0 !important;
}

/* Rimuovi background dal nodo grid (era trasparente ma forziamo) */
.prop-grid-live { background: transparent !important; }

/* Le card non hanno sfondo proprio → i pannelli si vedono
   anche attraverso la zona specs sotto la foto */


/* ── #uber-uns in homepage: leggera distinzione visiva ── */
#uber-uns.about-section {
  background: var(--cream, #F5EBE0);
  padding: 5rem 0 4rem;
}
#uber-uns .values-grid {
  margin-top: 2rem;
}

/* ================================================================
   GARDASEE GALLERY — sezione combinata (quote + gallery foto)
   ================================================================ */

.gardasee-gallery {
  display: grid;
  grid-template-columns: 41% 1fr;
}

/* ── Pannello sinistro: testo + citazione ── */
.gg-left {
  background: var(--live-gold, #C5B87A);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gg-heart {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3D3D1A;
  margin-bottom: 2rem;
}

.gg-left blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: #3D3D1A;
  line-height: 1.45;
  margin: 0 0 1.5rem;
}

.gg-left p {
  font-size: 0.88rem;
  color: rgba(61,61,26,0.8);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.gg-deco {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  width: 110px;
  opacity: 0.22;
  pointer-events: none;
}

/* ── Galleria destra: mosaic grid 3-colonne ── */
.gg-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 155px;
  gap: 4px;
  overflow: hidden;
}

.gg-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  cursor: zoom-in;
}

.gg-gallery img:hover { transform: scale(1.05); }

/* Foto panoramiche wide (span 2 colonne) */
.gg-gallery img:nth-child(1)  { grid-column: span 2; }
.gg-gallery img:nth-child(8)  { grid-column: span 2; }

/* Foto verticali alte (span 2 righe) */
.gg-gallery img:nth-child(3)  { grid-row: span 2; }
.gg-gallery img:nth-child(10) { grid-row: span 2; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .gardasee-gallery { grid-template-columns: 1fr; }
  .gg-gallery { grid-auto-rows: 130px; }
  /* rimuovi col-span su mobile: troppo stretto */
  .gg-gallery img:nth-child(1),
  .gg-gallery img:nth-child(8)  { grid-column: span 1; }
}


/* ── Citazione Giulia inline nel blocco #uber-uns ── */
.giulia-inline-q {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(145,132,105,0.25);
}
.giulia-inline-q .qq {
  font-size: 4rem;
  line-height: 1;
  color: rgba(145,132,105,0.28);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -0.75rem;
}
.giulia-inline-q blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--live-dark-ol, #5E5E4E);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}
.giulia-inline-q cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive, #918469);
  font-style: normal;
}

/* ================================================================
   GARDASEE GALLERY — gg-left: mosaico 6 riquadri brand (3×2)
   ================================================================ */

.gg-left {
  /* 2 fasce orizzontali: Olive (top) + Garden (bottom) */
  background: linear-gradient(
    to bottom,
    #918469 0% 50%,
    #929673 50% 100%
  ) !important;
}

/* Testo: da scuro-oliva a crema chiaro per leggibilità sul mosaico */
.gg-heart {
  color: #F5EBE0 !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.gg-left blockquote {
  color: #F5EBE0 !important;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.gg-left p {
  color: rgba(245,235,224,0.88) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.gs-btn {
  border-color: rgba(245,235,224,0.75) !important;
  color: #F5EBE0 !important;
}
.gs-btn:hover {
  background: rgba(245,235,224,0.15) !important;
  border-color: #F5EBE0 !important;
  color: #fff !important;
}
.gg-deco { opacity: 0.18 !important; }

/* ================================================================
   PROPERTY DETAIL PAGES — card info centralizzata
   ================================================================ */

/* Alias per compatibilità --skyblue → --sky */
:root { --skyblue: #718EAF; }

/* Layout descrizione + card */
.prop-detail-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 3.5rem;
  align-items: start;
  padding: 3.5rem 0 5rem;
}

/* ── Card sticky a destra ── */
.prop-detail-card {
  position: sticky;
  top: 5.5rem;
  background: var(--white, #fff);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(44,42,39,0.13), 0 1px 4px rgba(44,42,39,0.06);
  border: 1px solid rgba(145,132,105,0.13);
  padding: 0 1.5rem 1.5rem;
}

/* ── Specs in cima: sfondo olive scuro, testo cream ── */
.prop-detail-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--live-dark-ol, #5E5E4E);
  padding: 1.5rem 0;
  margin: 0 -1.5rem 1.25rem; /* full-width, annulla il padding laterale card */
  border-bottom: none !important;
  padding-bottom: 1.5rem !important;
}

.spec-item {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.13);
}
.spec-item:last-child { border-right: none; }

.spec-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream, #F5EBE0);
  line-height: 1.1;
}

.spec-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,235,224,0.58);
  margin-top: 0.25rem;
}

/* ── Highlight badges (cani, piscina, wifi…) ── */
.prop-detail-card > div:not(.prop-detail-specs):first-of-type {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.4rem !important;
  margin: 0 0 0.5rem !important;
}

/* ── Lista amenità ── */
.prop-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin-top: 0 !important;
  margin-bottom: 0.75rem;
}

/* ── Amenity tag: stile base già in style.css, raffiniamo ── */
.amenity-tag {
  font-size: 0.67rem !important;
  padding: 0.28rem 0.65rem !important;
  border-radius: 20px !important;      /* pill */
  font-weight: 600 !important;
}

/* ── Gallery grid per le pagine appartamento ── */
.prop-gallery-section { padding: 2.5rem 0 0; }

/* Responsive */
@media (max-width: 960px) {
  .prop-detail-layout {
    grid-template-columns: 1fr;
    padding: 2.5rem 0 3rem;
  }
  .prop-detail-card { position: static; }
}
@media (max-width: 600px) {
  .prop-detail-specs { margin: 0 -1rem 1.25rem; }
  .prop-detail-card  { padding: 0 1rem 1rem; }
}


/* ─────────────────────────────────────────────────────────────────
   IMMOBILIEN SECTION — 4-card "In den Gardasee verliebt?" strip
   ───────────────────────────────────────────────────────────────── */
.immo-section {
  background: var(--live-bg, #F3F3F0);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Large botanical decoration — left edge */
.immo-section::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: url('../loghi/SVG/brandmark_garden.svg') center / contain no-repeat;
  opacity: 0.10;
  pointer-events: none;
}

.immo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.immo-card {
  text-align: center;
  padding: 2.2rem 1.5rem 2rem;
  background: #fff;
  border: 1px solid rgba(94, 94, 78, 0.08);
  border-radius: 2px;
}

.immo-card .immo-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.3rem;
  display: block;
  opacity: 0.70;
}

.immo-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--live-dark-ol, #5E5E4E);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.immo-card p {
  font-size: 0.83rem;
  color: var(--live-mid, #9C9B8A);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 860px) {
  .immo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .immo-grid { grid-template-columns: 1fr; }
  .immo-section::before { display: none; }
}
