/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

:root {
  /* Light theme */
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --surface-alt: #F2EDE6;
  --text: #2A2218;
  --text-muted: #7A7268;
  --border: #E2D8CE;
  --accent: #FF845C;
  --accent-bg: rgba(255, 132, 92, 0.08);
  --accent-33: rgba(255, 132, 92, 0.33);
  --accent-44: rgba(255, 132, 92, 0.44);
  --accent-11: rgba(255, 132, 92, 0.11);
}

[data-theme="dark"] {
  --bg: #1A1F24;
  --surface: #242A30;
  --surface-alt: #2C3339;
  --text: #E8E4DF;
  --text-muted: #9A9590;
  --border: #3A4046;
  --accent: #FF845C;
  --accent-bg: rgba(255, 132, 92, 0.12);
  --accent-33: rgba(255, 132, 92, 0.33);
  --accent-44: rgba(255, 132, 92, 0.44);
  --accent-11: rgba(255, 132, 92, 0.11);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent-33);
}

/* ─── Container ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container-narrow {
  max-width: 760px;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 0.6s ease-out both;
}

.fade-in-delay {
  animation: fadeUp 0.6s ease-out 0.15s both;
}

.fade-in-delay-2 {
  animation: fadeUp 0.6s ease-out 0.3s both;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 104px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: hidden;
  max-width: 100vw;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s;
  font-family: inherit;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active {
  font-weight: 500;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 8px;
}

/* ─── Language Switch ─── */
.lang-switch {
  display: flex;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.lang-btn {
  padding: 4px 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 3px;
  font-family: inherit;
  transition: all 0.15s;
  font-size: 12px;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

/* ─── Mobile Toggle ─── */


/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(20px, 4vw, 50px);
  padding-top: 104px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('photos/Garda_lake_view.webp') center center / cover no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}



.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(184, 101, 74, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(184, 101, 74, 0.5);
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

[data-theme="dark"] .hero-badge {
  background: var(--accent-bg);
  border-color: var(--accent-33);
  color: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 700px;
  color: #fff;
  text-shadow: 1px 5px 5px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.5);
}

[data-theme="dark"] .hero-title {
  color: var(--text);
  text-shadow: none;
}

.accent-italic {
  color: var(--accent);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  margin-bottom: 36px;
  text-shadow: 1px 5px 5px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.5);
}

[data-theme="dark"] .hero-desc {
  color: var(--text-muted);
  text-shadow: none;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
  letter-spacing: 0.01em;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px var(--accent-44);
}

.btn-outline {
  background: #f2d6c0;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 500;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: #ede5dd;
}

/* ─── Stats ─── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 5vw, 56px) 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 600;
  color: var(--text);
}

.stat-unit {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── Floor Plans ─── */
.floorplans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.floorplan-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floorplan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.floorplan-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/2;
  object-fit: contain;
  background: #f9f7f4;
}

.floorplan-label {
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-top: 1px solid var(--border);
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.gallery-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: white;
}

.gallery-card-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.gallery-card:hover .gallery-card-link {
  color: white;
}

/* ─── Gallery Subpage ─── */
.gallery-subpage-header {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.gallery-subpage-header h1 {
  margin-top: 16px;
  font-size: 2.5rem;
}

.gallery-subpage-desc {
  color: var(--text-muted);
  margin-top: 8px;
}

.gallery-subpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-subpage-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-subpage-img:hover {
  transform: scale(1.02);
}

.gallery-back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.gallery-back-link:hover {
  color: var(--accent);
}

/* ─── Floor Plan Modal ─── */
.floorplan-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.floorplan-modal.active {
  display: flex;
}

.floorplan-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.floorplan-modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplan-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.floorplan-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.floorplan-modal-close:hover {
  color: var(--accent);
}

.floorplan-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.floorplan-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.floorplan-nav-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  z-index: 2;
}

.floorplan-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.floorplan-nav-btn:active {
  transform: scale(0.95);
}

.floorplan-nav-prev svg,
.floorplan-nav-next svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .floorplan-modal-body {
    gap: 12px;
  }

  .floorplan-nav-row {
    gap: 12px;
  }

  .floorplan-nav-btn {
    padding: 8px;
  }

  .floorplan-nav-prev svg,
  .floorplan-nav-next svg {
    width: 24px;
    height: 24px;
  }
}

/* ─── Gallery Modal ─── */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.gallery-modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.gallery-modal-close:hover {
  color: var(--accent);
}

.gallery-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.gallery-modal-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.gallery-modal-nav-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  z-index: 2;
}

.gallery-modal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gallery-modal-nav-btn:active {
  transform: scale(0.95);
}

.gallery-modal-nav-prev svg,
.gallery-modal-nav-next svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .gallery-modal-body {
    gap: 12px;
  }

  .gallery-modal-nav-row {
    gap: 12px;
  }

  .gallery-modal-nav-btn {
    padding: 8px;
  }

  .gallery-modal-nav-prev svg,
  .gallery-modal-nav-next svg {
    width: 24px;
    height: 24px;
  }
}

/* ─── Section ─── */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}

/* ─── Options Grid ─── */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.option-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.option-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-11);
}

.option-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.option-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Playfair Display', Georgia, serif;
}

.option-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── Features Grid ─── */
.features-grid {
  padding: clamp(32px, 4vw, 48px);
  background: var(--surface-alt);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.feature-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.feature-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  max-height: 0;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── Agents ─── */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.agents-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bullet-item span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.agents-card {
  padding: 40px;
  background: var(--surface-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.agents-card-inner {
  text-align: center;
}

.agents-card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

.agents-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── Visit ─── */
.visit-content {
  text-align: center;
}

.visit-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.visit-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-whatsapp {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.visit-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(32px, 5vw, 48px) 0;
  text-align: center;
}

/* ─── Footer social share ─── */
.footer-share {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, transform 0.2s;
}
.share-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.share-btn:hover,
.share-btn:focus-visible {
  color: var(--surface);
  background: var(--accent);
  border-color: var(--accent);
}
.share-btn:hover {
  transform: translateY(-2px);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 82px;
  width: auto;
  display: block;
}

.footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
}

.footer-nav a {
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent);
}

/* ─── Map ─── */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

#map {
  height: 450px;
  width: 100%;
}

/* ─── iPad / Tablet (up to 1194px = iPad Pro 11" landscape; wider fits one line) ─── */
@media (max-width: 1194px) {
  .nav-logo-img {
    height: 48px;
    max-width: 200px;
  }

  .nav-inner {
    padding: 14px clamp(12px, 3vw, 40px) 10px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-links {
    flex: 1;
    border-left: 1px solid var(--border);
    padding-left: 16px;
  }

  .nav {
    height: auto;
    min-height: 80px;
  }

  .nav-divider {
    display: none;
  }

  /* Language selector on its own second line, centered */
  .lang-switch {
    flex-basis: 100%;
    justify-content: center;
  }

  /* Keep the cookie banner clear of the corner ribbon */
  .cookie-banner {
    bottom: 160px;
  }

  .hero {
    padding-top: 116px;
  }

  .nav-link {
    padding: 6px 8px;
    font-size: 13px;
  }

  .nav-divider {
    margin: 0 4px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 11px;
  }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 58px;
    max-width: 240px;
  }

  .nav {
    height: auto;
    min-height: 140px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 4px 8px;
    width: 100%;
    border-left: none !important;
    padding-left: 0 !important;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 14px;
  }

  .nav-divider {
    display: none;
  }

  .lang-switch {
    margin-top: 4px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    max-width: 100%;
  }

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

/* ─── Cookie banner (GDPR) ─── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9998;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 9px 18px !important;
  font-size: 0.85rem !important;
}


