:root {

      --bg: #F8D8A5;

      --surface: #fff7ea;

      --text: #234244;

      --muted: #4c6668;

      --line: rgba(38, 112, 118, 0.18);

      --primary: #267076;

      --primary-dark: #1f5d62;

      --accent: #47A7A9;

      --shadow: 0 12px 30px rgba(38, 112, 118, 0.12);

      --shadow-soft: 0 8px 20px rgba(38, 112, 118, 0.08);

      --radius: 24px;

      --container: 1480px;

    }



    * { box-sizing: border-box; }



    html { scroll-behavior: smooth; }



    body {

      margin: 0;

      font-family: "Inter", sans-serif;

      color: var(--text);

      background: var(--bg);

      line-height: 1.6;

    }



    body.modal-open { overflow: hidden; }



    a {

      color: inherit;

      text-decoration: none;

    }



    img {

      display: block;

      max-width: 100%;

    }



    button { font: inherit; }



    .container {

      width: min(calc(100% - 60px), var(--container));

      margin: 0 auto;

    }



    h1, h2, h3 {

      margin: 0;

      line-height: 1.1;

      font-family: "Playfair Display", serif;

      color: var(--primary);

    }



    h1 {

      font-size: clamp(2.8rem, 5vw, 5.3rem);

      margin-bottom: 22px;

      letter-spacing: -0.03em;

    }



    h2 {

      font-size: clamp(2rem, 4vw, 3rem);

      margin-bottom: 16px;

    }



    h3 {

      font-size: 1.35rem;

      margin-bottom: 10px;

    }



    .section-title {

      margin: 0 0 28px;

      color: var(--primary);

      font-size: 0.85rem;

      font-weight: 700;

      letter-spacing: 0.08em;

      text-transform: uppercase;

      font-family: "Inter", sans-serif;

    }



    .btn {

      display: inline-flex;

      align-items: center;

      justify-content: center;

      min-height: 54px;

      padding: 0 30px;

      border-radius: 999px;

      font-weight: 700;

      transition: all 0.2s ease;

      border: none;

      cursor: pointer;

      font-size: 0.98rem;

    }
    
   .btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.btn-modal {
  margin-top: 12px;
  width: 100%;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.modal-actions .btn {
  flex: 1;
  width: auto;
}



    .btn-primary {

      background: var(--primary);

      color: #fff;

      box-shadow: var(--shadow);

    }



    .btn-primary:hover {

      background: var(--primary-dark);

      transform: translateY(-1px);

    }



    .btn-secondary {

      background: transparent;

      color: var(--primary);

      border: 2px solid var(--primary);

    }



    .btn-secondary:hover {

      background: rgba(71, 167, 169, 0.08);

    }



    .btn-full { width: 100%; }



    .site-header {

      position: sticky;

      top: 0;

      z-index: 50;

      background: rgba(248, 216, 165, 0.96);

      backdrop-filter: blur(10px);

      border-bottom: 1px solid var(--line);

    }



    .nav {

      display: grid;

      grid-template-columns: auto 1fr auto;

      align-items: center;

      gap: 28px;

      min-height: 112px;

    }



    .brand {

      display: flex;

      align-items: center;

      min-width: 0;

    }



    .brand-horizontal-logo {

      width: min(22vw, 320px);

      max-width: 100%;

      height: auto;

      display: block;

    }



    .header-right {

      display: flex;

      align-items: center;

      justify-content: flex-end;

      gap: 34px;

    }



    .menu {

      display: flex;

      align-items: center;

      gap: 34px;

    }



    .menu a {

      color: var(--primary);

      font-size: 0.95rem;

      font-weight: 600;

      transition: color 0.2s ease;

      white-space: nowrap;

    }



    .menu a:hover { color: var(--primary-dark); }



    .top-banner {

      width: 100%;

      height: 40vh;

      min-height: 540px;

      max-height: 980px;

      background:

        linear-gradient(rgba(38,112,118,0.16), rgba(38,112,118,0.07)),

        url("https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&w=2200&q=80") center center / cover no-repeat;

      position: relative;

    }



    .top-banner::after {

      content: "";

      position: absolute;

      inset: 0;

      background: linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(0,0,0,0.04));

    }



    .top-banner-logo {

      position: absolute;

      inset: 0;

      display: flex;

      align-items: center;

      justify-content: center;

      z-index: 2;

      pointer-events: none;

      padding: 24px;

    }



    .top-banner-logo img {

      width: min(28vw, 340px);

      min-width: 170px;

      max-width: 90%;

      height: auto;

      opacity: 0.98;

      filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.20));

    }



    .hero {

      padding: 82px 0 52px;

    }



    .hero-grid {

      display: grid;

      grid-template-columns: 1fr;

      gap: 54px;

      align-items: center;

    }



    .hero-copy {

      max-width: none;

    }



    .hero-text,

    .contact-section p,

    .faq-list p,

    .intro-card p,

    .service-card p,

    .about-body {

      color: var(--muted);

    }



    .hero-text {

      font-size: 1.06rem;

      max-width: none;

      margin: 0;

    }



    .hero-actions {

      display: flex;

      gap: 16px;

      flex-wrap: wrap;

      margin-top: 30px;

    }



    .hero-info-grid {

      display: grid;

      grid-template-columns: repeat(2, 1fr);

      gap: 18px;

      margin-top: 30px;

    }



    .section {

      padding: 72px 0;

    }
    .section-tight {
  padding: 35px 0;
}

.section-large {
  padding: 92px 0;
}



    .section-soft {

      background: rgba(255, 247, 234, 0.26);

    }



    .intro-card {

      background: var(--surface);

      border: 1px solid var(--line);

      border-radius: 24px;

      padding: 28px;

      box-shadow: var(--shadow-soft);

    }



    .intro-card strong {

      color: var(--primary);

      font-size: 1.05rem;

      display: block;

      margin-bottom: 8px;

    }



    .services-grid {

      display: grid;

      grid-template-columns: repeat(3, 1fr);

      gap: 28px;

      align-items: stretch;

    }



    .service-card {

      background: linear-gradient(180deg, rgba(255,247,234,0.98), rgba(255,243,224,0.94));

      border: 1px solid var(--line);

      border-radius: 30px;

      padding: 34px 32px 36px;

      box-shadow: var(--shadow);

      position: relative;

      overflow: hidden;

      display: flex;

      flex-direction: column;

    }



    .service-card::before {

      content: "";

      position: absolute;

      inset: 0 auto auto 0;

      width: 100%;

      height: 7px;

      background: linear-gradient(90deg, var(--primary), var(--accent));

    }



    .service-top {

      display: flex;

      align-items: flex-start;

      gap: 18px;

      margin-bottom: 18px;

    }



    .service-icon {

      width: 72px;

      height: 72px;

      border-radius: 22px;

      background: rgba(71, 167, 169, 0.10);

      display: flex;

      align-items: center;

      justify-content: center;

      flex-shrink: 0;

      border: 1px solid rgba(38, 112, 118, 0.08);

    }



    .service-icon svg {

      width: 34px;

      height: 34px;

      stroke: var(--primary);

      stroke-width: 1.8;

      fill: none;

      stroke-linecap: round;

      stroke-linejoin: round;

    }



    .service-head h3 {

      font-size: 1.42rem;

      margin-bottom: 6px;

    }



    .service-sub {

      color: var(--accent);

      font-size: 0.92rem;

      font-weight: 700;

    }



    .service-card p {

      margin: 0 0 20px;

      font-size: 0.98rem;

    }



    .service-list {

      display: grid;

      gap: 10px;

      margin-top: auto;

    }



    .service-list span {

      display: inline-flex;

      align-items: center;

      gap: 10px;

      color: var(--text);

      font-size: 0.96rem;

      font-weight: 600;

    }



    .service-list span::before {

      content: "";

      width: 9px;

      height: 9px;

      border-radius: 50%;

      background: var(--accent);

      flex-shrink: 0;

    }



    .about-story {

      display: grid;

      grid-template-columns: 0.92fr 1.08fr;

      gap: 54px;

      align-items: center;

    }



    .about-image-card {

      background: rgba(255, 247, 234, 0.62);

      border-radius: 34px;

      padding: 18px;

      box-shadow: var(--shadow);

      border: 1px solid rgba(255,255,255,0.35);

    }



    .about-image {

      min-height: 540px;

      border-radius: 28px;

      background:

        url("img/WhatsApp Image 2026-04-24 at 17.15.14.jpeg") center center / cover;

      position: relative;

      overflow: hidden;

    }



    .about-body {

      font-size: clamp(1.1rem, 1.6vw, 1.35rem);

      line-height: 1.65;

      max-width: 720px;

      margin: 0;

    }
    .contact-actions {
  display: flex;
  gap: 4px;
  margin-top: 3px;
  margin-bottom: 20px;
}

.btn-half {
  flex: 1;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: visible; /* importante per il pulse */
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
 
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}






    



    



    



    


   



    .faq-list {

      display: grid;

      gap: 14px;

    }



    .faq-list details {

      background: var(--surface);

      border: 1px solid var(--line);

      border-radius: 18px;

      padding: 18px 20px;

      box-shadow: var(--shadow-soft);

    }



    .faq-list summary {

      cursor: pointer;

      font-weight: 700;

      list-style: none;

      color: var(--primary);

    }



    .faq-list summary::-webkit-details-marker {

      display: none;

    }



    .faq-list details p {

      margin: 12px 0 0;

    }



   .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 28px;
  align-items: stretch; /* 👈 fondamentale */
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
    .contact-grid > div {
  display: flex;
  flex-direction: column;
}


   .contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;        /* 👈 ridotto da 28 */
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;            /* 👈 controlla lo spacing interno */
}
.contact-map {
  height: 100%;
}

.contact-map .map-container {
  height: 100%;
}

.contact-map iframe {
  height: 100%;
  min-height: 100%;
}
    



 .contact-row {
  padding-bottom: 5px;
  margin-bottom: 5px;
}



    .contact-row:last-of-type {

      margin-bottom: 24px;

    }



    .contact-row span {

      display: block;

      font-size: 0.82rem;

      text-transform: uppercase;

      letter-spacing: 0.08em;

      color: var(--accent);

      font-weight: 700;

      margin-bottom: 6px;

    }



    .contact-row a {

      font-weight: 700;

      color: var(--primary);

    }



    .site-footer {

      padding: 28px 0 40px;
      background: rgba(255, 247, 234, 0.4);

      border-top: 1px solid var(--line);

    }
 .footer-grid {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}

/* logo */
.footer-logo img {
   width: 160px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* links + copyright wrapper */
.footer-links-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* <- sposta tutto a destra */
  justify-content: space-between;
}

/* links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* copyright */
.footer-bottom {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  width: 100%;
}
    .footer-inner {

      display: flex;

      justify-content: space-between;

      gap: 20px;

      flex-wrap: wrap;

      color: var(--muted);

      font-size: 0.95rem;

    }



    .booking-modal {

      position: fixed;

      inset: 0;

      background: rgba(38, 112, 118, 0.96);

      z-index: 100;

      display: flex;

      align-items: center;

      justify-content: center;

      padding: 24px;

      opacity: 0;

      visibility: hidden;

      transition: 0.25s ease;

    }



    .booking-modal.active {

      opacity: 1;

      visibility: visible;

    }



    .booking-modal-content {

      width: min(100%, 760px);

      background: #fff7ea;

      color: var(--text);

      border-radius: 30px;

      padding: 42px;

      text-align: center;

      box-shadow: 0 20px 50px rgba(0,0,0,0.18);

      position: relative;

    }



    .booking-modal-content h2 {

      margin-bottom: 14px;

    }



    .booking-modal-content p {

      max-width: 560px;

      margin: 0 auto 24px;

      color: var(--muted);

      font-size: 1.02rem;

    }
   .map-container {
  background: #fff7ea; /* uguale al tuo surface */
  border-radius: 24px;
  overflow: hidden;
  padding: 0; /* importantissimo */
  border: none; /* eviti doppio bordo percepito */
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0; /* fondamentale */
}



    .modal-close {

      position: absolute;

      top: 16px;

      right: 16px;

      width: 44px;

      height: 44px;

      border-radius: 50%;

      border: none;

      background: rgba(38, 112, 118, 0.10);

      color: var(--primary);

      font-size: 1.35rem;

      cursor: pointer;

      font-weight: 700;

    }



    .modal-mini {

      margin-top: 18px;

      color: var(--accent);

      font-size: 0.92rem;

      font-weight: 700;

    }
    
    @media (min-width: 1400px) {
  .container {
    max-width: 1800px;
  }
}



    @media (max-width: 1200px) {

      .about-story,

      .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map .map-container iframe {
    height: 320px;
  }

      .services-grid {

        grid-template-columns: 1fr;

      }



      .about-image {

        min-height: 420px;

      }

    }



    @media (max-width: 1024px) {

      .menu {

        display: none;

      }



      .nav {

        grid-template-columns: 1fr auto;

        min-height: 96px;

      }



      .carousel-slide {

        width: 300px;

        height: 360px;

      }

    }



    @media (max-width: 760px) {

      .hero-info-grid {

        grid-template-columns: 1fr;

      }
        .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    margin: 0 auto;
  }
  .footer-links-wrap {
    align-items: center;
  }

  .footer-links {
    text-align: center;
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
  }

    }



    @media (max-width: 640px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-horizontal-logo {
    width: min(62vw, 320px);
  }

  .btn {
    width: 100%;
  }
   .modal-actions {
    flex-direction: column;
  }
  .map-container iframe {
    height: 260px;
  }
  

  .top-banner {
    height: 56vh;
    min-height: 420px;
  }

  .top-banner-logo img {
    width: 170px;
    min-width: 0;
  }

  .hero {
    padding: 52px 0 24px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .booking-modal-content {
    padding: 32px 22px;
  }

  .carousel-slide {
    width: 240px;
    height: 320px;
  }

  .service-card {
    padding: 28px 24px 30px;
  }

  .service-top {
    gap: 14px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }
}

/* =======================
   GALLERY
======================= */

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 10px 0;
}


.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 320px;
  width: 320px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff7ea;
  
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 18px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 42px;
  cursor: pointer;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  font-size: 42px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  transition: 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* responsive gallery */
@media (max-width: 640px) {

  .gallery-btn {
    display: none;
  }

  .gallery-item {
    flex: 0 0 240px;
    width: 240px;
    height: 320px;
  }
  
}