/*
 * style.css — Stylesheet for "I Menhir nel Bosco" B&B website
 * Località Monti Branzi, Lerici (SP) — Liguria, Italy
 * Mediterranean flora & sea palette, responsive single-page layout
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Crimson Pro', 'Times New Roman', serif;
  --font-ui:      'Jost', system-ui, sans-serif;

  /* Macchia mediterranea — flora */
  --color-rosmarino:     #4A7C59;
  --color-leccio:        #6B8C5A;
  --color-mirto:         #2D4A3E;
  --color-lavanda:       #A89BBF;
  --color-cisto:         #C97B84;
  --color-ginestra:      #E8C84A;
  --color-timo:          #8FA67A;

  /* Mare e costa ligure */
  --color-mare-profondo: #1B3A5C;
  --color-mare-medio:    #2E6B8A;
  --color-mare-chiaro:   #7ABDD6;
  --color-schiuma:       #D9EDF5;
  --color-scoglio:       #8C7B6E;
  --color-sabbia:        #E8DCC8;
  --color-sale:          #F5F1EB;

  /* Testi e neutri */
  --color-terra:         #3B2F2F;
  --color-ombra:         #6B5B4E;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-terra);
  background-color: var(--color-sale);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-mare-medio);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-cisto);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.15;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}

.text-en {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  color: var(--color-ombra);
  font-size: 0.95em;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.bg-sale {
  background-color: var(--color-sale);
}

.bg-sabbia {
  background-color: var(--color-sabbia);
}

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

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botanical divider */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem;
}

.botanical-divider::before,
.botanical-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background-color: var(--color-timo);
}

.botanical-divider svg {
  flex-shrink: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(45, 74, 62, 0.95);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(27, 58, 92, 0.15);
  backdrop-filter: blur(8px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sale);
  text-decoration: none;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar__links a {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sale);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-ginestra);
  transition: width 0.3s ease;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--color-ginestra);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-ginestra);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navbar right-hand group (language switcher + hamburger) */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(245, 241, 235, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-sale);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lang-switcher__btn:hover,
.lang-switcher__btn[aria-expanded="true"] {
  border-color: var(--color-ginestra);
  background-color: rgba(245, 241, 235, 0.08);
}

.lang-switcher__flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-switcher__code {
  text-transform: uppercase;
}

.lang-switcher__chevron {
  transition: transform 0.3s ease;
}

.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 170px;
  list-style: none;
  background-color: var(--color-sale);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(27, 58, 92, 0.2);
  padding: 0.4rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

.lang-switcher__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__dropdown li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--color-terra);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lang-switcher__dropdown li:hover,
.lang-switcher__dropdown li.active {
  background-color: var(--color-sabbia);
}

.lang-switcher__dropdown li .lang-switcher__flag {
  font-size: 1.05rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/immagine_header.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 74, 62, 0.75) 0%,
    rgba(45, 74, 62, 0.62) 50%,
    rgba(45, 74, 62, 0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero__title {
  color: var(--color-sale);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.75), 0 1px 6px rgba(0, 0, 0, 0.55);
}

.hero__tagline {
  color: var(--color-schiuma);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
}

.hero__tagline-en {
  color: rgba(217, 237, 245, 0.7);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  margin-bottom: 2.5rem;
}

.btn-cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--color-cisto);
  color: var(--color-sale);
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: var(--color-ginestra);
  color: var(--color-terra);
  transform: translateY(-1px);
}

/* ============================================
   CHI SIAMO (ABOUT)
   ============================================ */
.about__text {
  max-width: 750px;
  margin: 0 auto;
}

.about__text p {
  margin-bottom: 1.5rem;
}

.about__text .text-en {
  display: block;
  margin-top: -0.75rem;
  margin-bottom: 2rem;
}

.about__welcome {
  margin-top: 2rem;
}

/* ============================================
   GALLERIA
   ============================================ */

/* Tabs */
.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  border-bottom: 1px solid var(--color-timo);
}

.gallery__tab {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--color-ombra);
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.gallery__tab:hover {
  color: var(--color-mirto);
}

.gallery__tab.active {
  color: var(--color-mirto);
  border-bottom-color: var(--color-mirto);
  font-weight: 500;
}

/* Panels */
.gallery__panel {
  display: none;
}

.gallery__panel.active {
  display: block;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(27, 58, 92, 0.8));
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-schiuma);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(27, 58, 92, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-schiuma);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--color-schiuma);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox__close:hover {
  color: var(--color-ginestra);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-schiuma);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  font-family: var(--font-ui);
  font-weight: 300;
  transition: color 0.3s ease;
}

.lightbox__nav:hover {
  color: var(--color-ginestra);
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

/* ============================================
   SERVIZI (SERVICES)
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.services__column h3 {
  color: var(--color-mirto);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services__column h3 svg {
  flex-shrink: 0;
}

.services__list {
  list-style: none;
}

.services__list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-timo);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.services__list li:last-child {
  border-bottom: none;
}

.services__icon {
  flex-shrink: 0;
  margin-top: 0.3rem;
  color: var(--color-mirto);
}

.services__label {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-terra);
  display: block;
  margin-bottom: 0.25rem;
}

.services__desc {
  font-size: 1rem;
}

/* ============================================
   TARIFFE & PRENOTAZIONE
   ============================================ */
.tariffe__subtitle {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ombra);
  margin-top: 0.25rem;
}

.tariffe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 3.5rem;
}

.tariffa-card {
  background: #fff;
  border: 1px solid var(--color-timo);
  border-radius: 6px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariffa-card__tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-timo);
  display: block;
  margin-bottom: 0.75rem;
}

.tariffa-card__months {
  font-size: 0.95rem;
  color: var(--color-ombra);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tariffa-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-mirto);
  font-weight: 700;
  line-height: 1;
}

.tariffa-card__price::after {
  content: 'per notte';
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-timo);
  font-weight: 400;
  margin-top: 0.5rem;
}

.tariffe__info {
  border-top: 1px solid var(--color-timo);
  padding-top: 3rem;
}

.tariffe__notices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(143, 166, 122, 0.5);
  border-radius: 6px;
  background: rgba(143, 166, 122, 0.07);
}

.tariffe__notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tariffe__notice-icon {
  flex-shrink: 0;
  color: var(--color-ombra);
  margin-top: 0.15rem;
}

.tariffe__notice-label {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-terra);
  display: block;
  margin-bottom: 0.4rem;
}

.tariffe__notice-text {
  font-size: 0.95rem;
  color: var(--color-ombra);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   COME RAGGIUNGERCI (DIRECTIONS)
   ============================================ */
.directions__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.directions__text p {
  margin-bottom: 1.25rem;
}

.directions__map {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 2px;
  overflow: hidden;
}

.directions__map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-consent {
  position: absolute;
  inset: 0;
  background: var(--color-sabbia);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.map-consent.hidden {
  opacity: 0;
  pointer-events: none;
}

.map-consent__inner {
  text-align: center;
  padding: 2rem;
  max-width: 300px;
}

.map-consent__icon {
  color: var(--color-mirto);
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.map-consent__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-terra);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.map-consent__text a {
  color: var(--color-mirto);
}

.map-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-mirto);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.map-consent__btn:hover {
  background: var(--color-rosmarino);
}

.directions__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-mirto);
  margin-bottom: 1.75rem;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-mirto);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  margin-top: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-directions:hover {
  background: var(--color-rosmarino);
  color: #fff;
}

/* ============================================
   CONTATTI (CONTACT)
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.contact__form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-ombra);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-terra);
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-timo);
  background-color: var(--color-sale);
  border-radius: 2px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-mare-chiaro);
  box-shadow: 0 0 0 3px rgba(122, 189, 214, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.field-error {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

.form-success {
  display: none;
  padding: 1.5rem;
  background-color: rgba(74, 124, 89, 0.1);
  border: 1px solid var(--color-rosmarino);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-mirto);
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-error {
  display: none;
  padding: 1.5rem;
  background-color: rgba(192, 57, 43, 0.08);
  border: 1px solid #c0392b;
  border-radius: 2px;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.95rem;
  color: #c0392b;
  text-align: center;
}

.form-error.visible {
  display: block;
}

.contact__info {
  padding-top: 1rem;
}

.contact__info h3 {
  color: var(--color-mirto);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.95rem;
}

.contact__detail svg {
  flex-shrink: 0;
  color: var(--color-mirto);
}

.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-timo);
  border-radius: 50%;
  color: var(--color-mirto);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact__social a:hover {
  background-color: var(--color-mirto);
  color: var(--color-sale);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-mare-profondo);
  color: var(--color-schiuma);
  padding: 3rem 0 2rem;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--color-schiuma);
}

.footer__text {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-schiuma);
  opacity: 0.75;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-schiuma);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--color-schiuma);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(45, 74, 62, 0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    backdrop-filter: blur(12px);
  }

  .navbar__links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .tariffe__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .services__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

/* Mobile overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(27, 58, 92, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}
