/* ═══════════════════════════════════════
   1. VARIABILI E IMPOSTAZIONI BASE
═══════════════════════════════════════ */
:root {
   --ink: #0C1B2A;
   --ink-mid: #1D3A52;
   --salt: #F7F3EC;
   --cream: #FDFAF5;
   --white: #FFFFFF;
   --terra: #C05440;
   --terra-deep: #9E3D2A;
   --gold: #C9934A;
   --sea: #2A6B9C;
   --border: #E4DDD2;
   --serif: 'Cormorant', Georgia, serif;
   --sans: 'Outfit', system-ui, sans-serif;
   --ease: cubic-bezier(0.22, 1, 0.36, 1);
   --r-sm: 4px;
   --r-md: 12px;
   --r-lg: 24px;
   --r-xl: 40px;
}

*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

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

body {
   font-family: var(--sans);
   background: var(--cream);
   color: var(--ink);
   line-height: 1.7;
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
}

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

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

button {
   cursor: pointer;
   border: none;
   background: none;
   font-family: var(--sans);
}

/* Effetto grana e barra scorrimento */
.scroll-bar {
   position: fixed;
   top: 0;
   left: 0;
   height: 2px;
   background: linear-gradient(90deg, var(--terra), var(--gold));
   z-index: 999;
   width: 0%;
   transition: width 0.1s linear;
}

body::after {
   content: '';
   position: fixed;
   inset: 0;
   pointer-events: none;
   z-index: 9997;
   opacity: 0.025;
   background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
   background-size: 200px 200px;
}

/* Classi di utilità */
.wrap {
   max-width: 1240px;
   margin: 0 auto;
   padding: 0 40px;
}

.eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 0.72rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 3.5px;
   color: var(--terra);
}

.eyebrow::before {
   content: '';
   width: 24px;
   height: 1px;
   background: currentColor;
   flex-shrink: 0;
}

.headline {
   font-family: var(--serif);
   font-weight: 400;
   color: var(--ink);
   line-height: 1.08;
   letter-spacing: -0.02em;
}

.headline em {
   font-style: italic;
   color: var(--sea);
}

.section-pad {
   padding: 130px 0;
}

/* ========================================================
   ANIMAZIONI E TRANSIZIONI (Premium Aesthetics) 
   ======================================================== */
.rv {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
   will-change: opacity, transform;
}

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

.d1 {
   transition-delay: 0.1s;
}

.d2 {
   transition-delay: 0.2s;
}

.d3 {
   transition-delay: 0.3s;
}

.d4 {
   transition-delay: 0.4s;
}

@keyframes kenburns {
   0% {
      transform: scale(1);
   }

   100% {
      transform: scale(1.15);
   }
}

@keyframes fadeUp {
   to {
      opacity: 1;
      transform: translateY(0);
   }

   from {
      opacity: 0;
      transform: translateY(30px);
   }
}

@keyframes needleDrop {
   0% {
      top: -100%;
   }

   100% {
      top: 100%;
   }
}

/* Bottoni */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 16px 36px;
   font-size: 0.78rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2.5px;
   border-radius: 40px;
   transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
   min-height: 48px;
}

.btn-solid {
   background: linear-gradient(135deg, var(--terra), #b24131);
   color: var(--white);
   box-shadow: 0 4px 15px rgba(192, 84, 64, 0.2);
}

.btn-solid:hover {
   background: linear-gradient(135deg, #b24131, var(--terra-deep));
   transform: translateY(-4px);
   box-shadow: 0 16px 35px rgba(192, 84, 64, 0.35);
}

.btn-ghost-white {
   background: transparent;
   color: rgba(255, 255, 255, 0.9);
   border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost-white:hover {
   background: rgba(255, 255, 255, 0.15);
   border-color: rgba(255, 255, 255, 0.9);
   color: var(--white);
   transform: translateY(-3px);
}

.btn-outline {
   border: 1.5px solid rgba(12, 27, 42, 0.3);
   color: var(--ink);
}

.btn-outline:hover {
   background: var(--ink);
   color: var(--white);
   border-color: var(--ink);
   transform: translateY(-3px);
   box-shadow: 0 10px 25px rgba(12, 27, 42, 0.1);
}

.btn-gold {
   background: transparent;
   color: var(--gold);
   border: 1.5px solid rgba(201, 147, 74, 0.45);
}

.btn-gold:hover {
   background: rgba(201, 147, 74, 0.1);
   border-color: var(--gold);
   transform: translateY(-3px);
}

.btn svg {
   width: 16px;
   height: 16px;
   fill: currentColor;
   flex-shrink: 0;
   transition: transform 0.3s;
}

.btn:hover svg {
   transform: translateX(3px);
}

/* ═══════════════════════════════════════
   2. NAVBAR & MENU
═══════════════════════════════════════ */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 400;
   padding: 28px 48px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: all 0.5s var(--ease);
}

.navbar.stuck {
   background: rgba(253, 250, 245, 0.97);
   backdrop-filter: blur(20px);
   box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(12, 27, 42, 0.07);
   padding: 16px 48px;
}

.nav-logo {
   font-family: var(--serif);
   font-size: 1.7rem;
   color: var(--white);
   transition: color 0.4s;
}

.navbar.stuck .nav-logo {
   color: var(--ink);
}

.nav-right {
   display: flex;
   align-items: center;
   gap: 24px;
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 32px;
   list-style: none;
}

.nav-links a {
   font-size: 0.72rem;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: rgba(255, 255, 255, 0.8);
   transition: color 0.3s;
}

.nav-links a:hover {
   color: var(--white);
}

.navbar.stuck .nav-links a {
   color: var(--ink);
}

.navbar.stuck .nav-links a:hover {
   color: var(--terra);
}

/* Switch Lingua */
.lang-switch {
   display: flex;
   align-items: center;
   gap: 4px;
}

.lang-btn {
   padding: 4px 8px;
   font-size: 0.7rem;
   font-weight: 600;
   color: rgba(255, 255, 255, 0.6);
   border-radius: var(--r-sm);
   transition: all 0.3s;
   letter-spacing: 1px;
}

.lang-btn:hover {
   color: var(--white);
}

.lang-btn.active {
   color: var(--white);
   background: rgba(255, 255, 255, 0.15);
}

.navbar.stuck .lang-btn {
   color: rgba(12, 27, 42, 0.5);
}

.navbar.stuck .lang-btn:hover {
   color: var(--ink);
}

.navbar.stuck .lang-btn.active {
   color: var(--ink);
   background: var(--salt);
}

/* Menu Mobile */
.nav-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   z-index: 491;
   padding: 6px;
}

.nav-toggle span {
   display: block;
   width: 22px;
   height: 1.5px;
   background: var(--white);
   transition: all 0.3s;
}

.navbar.stuck .nav-toggle span {
   background: var(--ink);
}

.nav-toggle.open span:nth-child(1) {
   transform: translateY(6.5px) rotate(45deg);
   background: var(--white) !important;
}

.nav-toggle.open span:nth-child(2) {
   opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
   transform: translateY(-6.5px) rotate(-45deg);
   background: var(--white) !important;
}

.mob-menu {
   position: fixed;
   inset: 0;
   background: var(--ink);
   z-index: 490;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   gap: 8px;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.4s;
   overflow-y: auto;
   padding: 100px 20px 60px;
}

.mob-menu.open {
   opacity: 1;
   pointer-events: all;
}

.mob-close {
   position: absolute;
   top: 24px;
   right: 28px;
   width: 44px;
   height: 44px;
   background: rgba(255, 255, 255, 0.08);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 2rem;
   line-height: 1;
   z-index: 500;
}

.mob-close:hover {
   background: rgba(255, 255, 255, 0.15);
}

.mob-lang {
   display: flex;
   justify-content: center;
   gap: 12px;
   margin-bottom: 20px;
   flex-shrink: 0;
}

.mob-lang .lang-btn {
   font-size: 0.9rem;
   padding: 8px 16px;
}

.mob-menu nav {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
   width: 100%;
   flex-shrink: 0;
}

.mob-menu a {
   font-family: var(--serif);
   font-size: clamp(2.8rem, 8vw, 4.2rem);
   font-style: italic;
   font-weight: 300;
   color: rgba(255, 255, 255, 0.7);
   padding: 8px 40px;
   display: block;
   width: 100%;
   text-align: center;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mob-menu-footer {
   margin-top: 40px;
   display: flex;
   gap: 24px;
}

/* ═══════════════════════════════════════
   3. HERO (Home e Pagine Interne)
═══════════════════════════════════════ */
.hero {
   position: relative;
   height: 100svh;
   min-height: 640px;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
}

.hero.internal-hero {
   height: 50svh;
   min-height: 400px;
   align-items: center;
   justify-content: center;
}

.hero-bg {
   position: absolute;
   inset: 0;
   background-color: var(--ink-mid);
}

.hero-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   animation: kenburns 25s infinite alternate linear;
   transform-origin: center center;
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(12, 27, 42, 0.85) 0%, rgba(12, 27, 42, 0.3) 50%, rgba(12, 27, 42, 0.15) 100%);
}

.hero-content {
   position: relative;
   z-index: 2;
   padding: 0 48px 80px;
   width: 100%;
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: flex-end;
   gap: 40px;
}

.internal-hero .hero-content {
   grid-template-columns: 1fr;
   text-align: center;
   padding-bottom: 0;
}

.internal-hero .hero-left {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.hero-tag {
   font-size: 0.7rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 4px;
   color: rgba(255, 255, 255, 0.55);
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.hero-tag::before {
   content: '';
   width: 20px;
   height: 1px;
   background: var(--gold);
}

.hero h1 {
   font-family: var(--serif);
   font-size: clamp(4.5rem, 10vw, 8.5rem);
   font-weight: 300;
   line-height: 0.95;
   letter-spacing: -0.03em;
   color: var(--white);
   margin: 0;
   text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
   font-style: italic;
   color: rgba(255, 255, 255, 0.6);
}

.hero-ctas {
   display: flex;
   gap: 14px;
   margin-top: 36px;
   flex-wrap: wrap;
}

.hero-right {
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 16px;
   padding-bottom: 8px;
}

.hero-badge {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.18);
   border-radius: var(--r-lg);
   padding: 24px 30px;
   text-align: right;
   min-width: 220px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-badge:hover {
   transform: translateY(-5px);
}

.hero-badge .val {
   font-family: var(--serif);
   font-size: 2.8rem;
   font-weight: 300;
   color: var(--white);
   line-height: 1;
}

.hero-badge .lbl {
   font-size: 0.68rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: rgba(255, 255, 255, 0.5);
   margin-top: 4px;
}

.hero-meta-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   text-align: right;
}

.hero-meta-list span {
   font-size: 0.72rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: rgba(255, 255, 255, 0.45);
}

.hero-scroll {
   position: absolute;
   bottom: 40px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}

.hero-scroll span {
   font-size: 0.62rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: rgba(255, 255, 255, 0.4);
}

.scroll-needle {
   width: 1px;
   height: 48px;
   background: rgba(255, 255, 255, 0.15);
   position: relative;
   overflow: hidden;
}

.scroll-needle::after {
   content: '';
   position: absolute;
   top: -100%;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.6);
   animation: needleDrop 2.2s infinite;
}

/* ═══════════════════════════════════════
   4. LAYOUT SEZIONI (Home, Info, Foto)
═══════════════════════════════════════ */
/* Striscia Statistiche */
.stats-strip {
   background: var(--white);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
}

.stats-strip .wrap {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   padding-top: 0;
   padding-bottom: 0;
}

.stat-cell {
   padding: 32px 44px;
   border-right: 1px solid var(--border);
   display: flex;
   align-items: center;
   gap: 16px;
}

.stat-cell:last-child {
   border-right: none;
}

.stat-break {
   flex-basis: 100%;
   height: 0;
   width: 0;
}

.stat-icon-ring {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   border: 1.5px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: var(--terra);
}

.stat-icon-ring svg {
   width: 20px;
   height: 20px;
   fill: currentColor;
}

.stat-lbl {
   font-size: 0.68rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--gold);
   font-weight: 600;
   margin-bottom: 3px;
}

.stat-val {
   font-family: var(--serif);
   font-size: 1.3rem;
   color: var(--ink);
   line-height: 1.1;
}

/* Sezione Chi Siamo / Appartamento */
.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 100px;
   align-items: center;
}

.about-copy p {
   font-size: 1.05rem;
   color: #4A5568;
   line-height: 1.9;
   margin-bottom: 22px;
}

.host-card {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 18px 22px;
   background: var(--salt);
   border-radius: var(--r-md);
   border: 1px solid var(--border);
   margin-top: 36px;
   box-shadow: 0 8px 32px rgba(12, 27, 42, 0.04);
}

.host-avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--terra), var(--gold));
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--serif);
   font-size: 1.4rem;
   color: var(--white);
}

.host-stars {
   color: var(--gold);
   font-size: 0.75rem;
   margin-bottom: 2px;
}

.host-name {
   font-weight: 600;
   font-size: 0.9rem;
   color: var(--ink);
}

.host-sub {
   font-size: 0.75rem;
   color: #718096;
}

.about-img-wrap {
   position: relative;
}

.about-img-main {
   width: 100%;
   height: 680px;
   object-fit: cover;
   border-radius: var(--r-lg);
   box-shadow: 0 40px 80px rgba(12, 27, 42, 0.16);
}

.about-img-float {
   position: absolute;
   bottom: -36px;
   left: -36px;
   width: 190px;
   background: var(--white);
   border-radius: var(--r-md);
   padding: 24px;
   box-shadow: 0 20px 60px rgba(12, 27, 42, 0.14);
   border: 1px solid var(--border);
}

.about-img-float .fig {
   font-family: var(--serif);
   font-size: 3rem;
   font-weight: 300;
   color: var(--terra);
   line-height: 1;
}

.about-img-float .fig-label {
   font-size: 0.65rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: #718096;
   margin-top: 6px;
   line-height: 1.4;
}

.about-cta-row {
   display: flex;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
   margin-top: 32px;
}

/* Griglia Servizi */
.amenities-sec {
   background: var(--ink);
   padding: 100px 0;
   position: relative;
   overflow: hidden;
}

.amenities-sec::before {
   content: '';
   position: absolute;
   top: -1px;
   left: 0;
   right: 0;
   height: 100px;
   background: var(--cream);
   clip-path: ellipse(60% 100% at 50% 0%);
}

.amenities-sec::after {
   content: '';
   position: absolute;
   bottom: -1px;
   left: 0;
   right: 0;
   height: 100px;
   background: var(--salt);
   clip-path: ellipse(60% 100% at 50% 100%);
}

.amenities-inner {
   position: relative;
   z-index: 1;
}

.amenities-head {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 24px;
   flex-wrap: wrap;
   margin-bottom: 64px;
}

.am-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2px;
}

.am-card {
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(255, 255, 255, 0.07);
   padding: 32px 26px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   transition: background 0.3s;
}

.am-card:hover {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(192, 84, 64, 0.3);
}

.am-icon {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: rgba(192, 84, 64, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
}

.am-icon svg {
   width: 20px;
   height: 20px;
   fill: var(--terra);
}

.am-name {
   font-size: 0.88rem;
   font-weight: 500;
   color: rgba(255, 255, 255, 0.85);
   line-height: 1.3;
}

.am-desc {
   font-size: 0.72rem;
   color: rgba(255, 255, 255, 0.35);
   line-height: 1.4;
}

/* Esperienze / Territorio */
.exp-header {
   text-align: center;
   max-width: 640px;
   margin: 0 auto 72px;
}

.exp-header p {
   font-size: 1.05rem;
   color: #4A5568;
   margin-top: 18px;
   line-height: 1.85;
}

.exp-track {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.exp-card {
   background: var(--white);
   border-radius: var(--r-lg);
   padding: 40px 32px 32px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   border: 1px solid var(--border);
   position: relative;
   overflow: hidden;
   box-shadow: 0 4px 24px rgba(12, 27, 42, 0.05), 0 1px 3px rgba(12, 27, 42, 0.02);
   transition: transform 0.4s;
}

.exp-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 60px rgba(12, 27, 42, 0.12), 0 4px 8px rgba(12, 27, 42, 0.06);
}

.exp-num {
   position: absolute;
   top: 22px;
   right: 26px;
   font-family: var(--serif);
   font-size: 4rem;
   font-weight: 300;
   font-style: italic;
   color: var(--border);
   line-height: 1;
}

.exp-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: var(--salt);
   border-radius: 40px;
   padding: 5px 12px 5px 8px;
   font-size: 0.65rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: var(--terra);
   border: 1px solid rgba(192, 84, 64, 0.15);
   width: fit-content;
}

.exp-pill svg {
   width: 11px;
   height: 11px;
   fill: var(--terra);
}

.exp-card h3 {
   font-family: var(--serif);
   font-size: 1.5rem;
   font-weight: 400;
   color: var(--ink);
   margin: 0;
}

.exp-card p {
   font-size: 0.9rem;
   color: #4A5568;
   line-height: 1.82;
}

/* Galleria Base (per la Home) */
.gallery-head {
   text-align: center;
   margin-bottom: 56px;
}

.photo-grid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-auto-rows: 240px;
   gap: 10px;
   max-width: 1440px;
   margin: 0 auto;
   padding: 0 40px;
}

.ph {
   border-radius: var(--r-md);
   overflow: hidden;
   position: relative;
   cursor: pointer;
}

.ph img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.9s;
}

.ph:hover img {
   transform: scale(1.07);
}

.ph-overlay {
   position: absolute;
   inset: 0;
   background: rgba(12, 27, 42, 0);
   transition: background 0.4s;
   display: flex;
   align-items: flex-end;
   padding: 20px;
}

.ph:hover .ph-overlay {
   background: rgba(12, 27, 42, 0.22);
}

.ph-label {
   font-size: 0.68rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: rgba(255, 255, 255, 0);
   transition: color 0.3s;
   font-weight: 500;
}

.ph:hover .ph-label {
   color: rgba(255, 255, 255, 0.85);
}

.ph-1 {
   grid-column: span 5;
   grid-row: span 2
}

.ph-2 {
   grid-column: span 4;
   grid-row: span 1
}

.ph-3 {
   grid-column: span 3;
   grid-row: span 1
}

.ph-4 {
   grid-column: span 4;
   grid-row: span 1
}

.ph-5 {
   grid-column: span 3;
   grid-row: span 1
}

.ph-6 {
   grid-column: span 4;
   grid-row: span 2
}

.ph-7 {
   grid-column: span 4;
   grid-row: span 1
}

.ph-more {
   grid-column: span 4;
   grid-row: span 1
}

.ph-more-face {
   position: absolute;
   inset: 0;
   background: rgba(12, 27, 42, 0.72);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   color: var(--white);
}

.ph-more-face .mn {
   font-family: var(--serif);
   font-size: 4rem;
   font-weight: 300;
   font-style: italic;
   line-height: 1;
}

.ph-more-face span {
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   margin-top: 8px;
   opacity: 0.6;
}

/* Recensioni */
.reviews-head {
   text-align: center;
   margin-bottom: 56px;
}

.reviews-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

.review-card {
   background: var(--white);
   border-radius: var(--r-lg);
   padding: 36px 32px;
   border: 1px solid var(--border);
   position: relative;
   transition: transform 0.3s;
}

.review-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 16px 48px rgba(12, 27, 42, 0.08);
}

.review-stars {
   color: var(--gold);
   font-size: 0.85rem;
   margin-bottom: 16px;
}

.review-text {
   font-family: var(--serif);
   font-size: 1.15rem;
   font-weight: 300;
   font-style: italic;
   color: var(--ink);
   line-height: 1.7;
   margin-bottom: 20px;
}

.review-author {
   display: flex;
   align-items: center;
   gap: 12px;
}

.review-av {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--sea), var(--ink-mid));
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--serif);
   font-style: italic;
   font-size: 1rem;
   color: var(--white);
}

.review-author strong {
   font-size: 0.85rem;
   display: block;
   color: var(--ink);
}

.review-author span {
   font-size: 0.72rem;
   color: #718096;
}

.reviews-aggregate {
   text-align: center;
   margin-top: 48px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 24px;
   flex-wrap: wrap;
}

.agg-score {
   font-family: var(--serif);
   font-size: 3.5rem;
   font-weight: 300;
   color: var(--terra);
   line-height: 1;
}

.agg-details {
   text-align: left;
}

.agg-details .agg-stars {
   color: var(--gold);
   font-size: 1.1rem;
   margin-bottom: 4px;
}

/* ═══════════════════════════════════════
   5. TARIFFE, FAQ & CONTATTI
═══════════════════════════════════════ */
.pricing-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 24px;
   margin-top: 60px;
}

.price-card {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--r-md);
   padding: 40px 32px;
   text-align: center;
   transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 16px 40px rgba(12, 27, 42, 0.08);
   border-color: var(--terra);
}

.season {
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--gold);
   font-weight: 600;
   margin-bottom: 12px;
}

.price-val {
   font-family: var(--serif);
   font-size: 3rem;
   color: var(--ink);
   line-height: 1;
   margin-bottom: 8px;
}

.price-card p {
   font-size: 0.9rem;
   color: #718096;
}

.faq-section {
   max-width: 800px;
   margin: 80px auto 0;
   text-align: left;
}

details {
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: var(--r-sm);
   margin-bottom: 12px;
   overflow: hidden;
}

summary {
   padding: 20px 24px;
   font-weight: 500;
   cursor: pointer;
   list-style: none;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: var(--ink);
}

summary::-webkit-details-marker {
   display: none;
}

summary::after {
   content: '+';
   font-size: 1.5rem;
   color: var(--terra);
   transition: transform 0.3s;
}

details[open] summary::after {
   transform: rotate(45deg);
}

.faq-content {
   padding: 0 24px 24px;
   color: #4A5568;
   font-size: 0.95rem;
   line-height: 1.8;
   border-top: 1px solid var(--salt);
   margin-top: 8px;
   padding-top: 16px;
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   margin-top: 20px;
}

.map-container {
   width: 100%;
   height: 450px;
   border-radius: var(--r-md);
   overflow: hidden;
   box-shadow: 0 20px 40px rgba(12, 27, 42, 0.1);
}

.ci-item {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 24px;
   text-align: left;
}

.ci-icon {
   width: 48px;
   height: 48px;
   background: rgba(192, 84, 64, 0.08);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: var(--terra);
}

.ci-text h4 {
   font-family: var(--serif);
   font-size: 1.4rem;
   color: var(--ink);
   margin-bottom: 4px;
}

.ci-text p,
.ci-text a {
   font-size: 0.95rem;
   color: #4A5568;
   transition: color 0.3s;
}

.ci-text a:hover {
   color: var(--terra);
}

/* ═══════════════════════════════════════
   6. BOOKING WIDGET E FOOTER
═══════════════════════════════════════ */
.booking-sec {
   padding: 100px 0;
}

.booking-grid {
   display: grid;
   grid-template-columns: 1.1fr 0.9fr;
   gap: 80px;
   align-items: start;
}

.booking-text p {
   font-size: 1.02rem;
   color: #4A5568;
   line-height: 1.88;
   margin-bottom: 16px;
}

.save-box {
   margin-top: 32px;
   padding: 24px;
   background: linear-gradient(135deg, rgba(192, 84, 64, 0.05), rgba(201, 147, 74, 0.05));
   border: 1px solid rgba(192, 84, 64, 0.2);
   border-radius: var(--r-md);
}

.save-box strong {
   color: var(--terra);
}

.channel-btn {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 14px 18px;
   border: 1.5px solid var(--border);
   border-radius: var(--r-sm);
   font-size: 0.88rem;
   color: var(--ink);
   transition: border-color 0.3s, box-shadow 0.3s;
   min-height: 44px;
   width: 100%;
   text-align: left;
}

.channel-btn:hover {
   border-color: var(--terra);
   box-shadow: 0 4px 20px rgba(192, 84, 64, 0.1);
}

.channel-btn svg {
   width: 18px;
   height: 18px;
   flex-shrink: 0;
   fill: currentColor;
}

.booking-widget {
   background: var(--salt);
   border-radius: var(--r-xl);
   padding: 40px;
   border: 1px solid var(--border);
   box-shadow: 0 24px 80px rgba(12, 27, 42, 0.08), 0 4px 12px rgba(12, 27, 42, 0.03);
   position: sticky;
   top: 100px;
}

.widget-title {
   font-family: var(--serif);
   font-size: 1.8rem;
   color: var(--ink);
   margin-bottom: 6px;
   margin-top: 0;
}

.widget-sub {
   font-size: 0.82rem;
   color: #718096;
   margin-bottom: 28px;
}

.price-preview {
   display: flex;
   align-items: baseline;
   gap: 6px;
   margin-bottom: 28px;
   padding-bottom: 24px;
   border-bottom: 1px solid var(--border);
}

.price-num {
   font-family: var(--serif);
   font-size: 2.2rem;
   color: var(--terra);
   line-height: 1;
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: 7px;
   margin-bottom: 16px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
   margin-bottom: 16px;
}

.form-label {
   font-size: 0.68rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-weight: 600;
   color: var(--ink-mid);
}

.form-input,
.form-select {
   padding: 13px 16px;
   border: 1.5px solid var(--border);
   background: var(--white);
   font-family: var(--sans);
   font-size: 0.92rem;
   color: var(--ink);
   border-radius: var(--r-sm);
   outline: none;
   width: 100%;
   transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus {
   border-color: var(--sea);
}

.price-result {
   background: var(--ink);
   border-radius: var(--r-md);
   padding: 18px 22px;
   display: none;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 16px;
}

.price-result.show {
   display: flex;
}

.pr-label {
   font-size: 0.68rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: rgba(255, 255, 255, 0.45);
}

.pr-nights {
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.5);
   margin-top: 2px;
}

.pr-total {
   font-family: var(--serif);
   font-size: 2rem;
   color: var(--gold);
   line-height: 1;
}

.btn-book-full {
   width: 100%;
   background: linear-gradient(135deg, var(--terra), #b24131);
   color: var(--white);
   padding: 14px 16px;
   font-size: 0.72rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   border-radius: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
   box-shadow: 0 4px 15px rgba(192, 84, 64, 0.2);
}

.btn-book-full:hover {
   background: linear-gradient(135deg, #b24131, var(--terra-deep));
   transform: translateY(-4px);
   box-shadow: 0 16px 35px rgba(192, 84, 64, 0.35);
}

.btn-book-full svg {
   width: 16px;
   height: 16px;
   fill: currentColor;
   transition: transform 0.3s;
}

.btn-book-full:hover svg {
   transform: translateX(3px);
}

.widget-divider {
   text-align: center;
   font-size: 0.72rem;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: #A0AEC0;
   margin: 16px 0;
}

footer {
   background: var(--ink);
   color: rgba(255, 255, 255, 0.55);
   padding: 100px 0 48px;
}

.footer-hero-text {
   text-align: center;
   margin-bottom: 80px;
}

.footer-hero-text h2 {
   font-family: var(--serif);
   font-size: clamp(2.5rem, 6vw, 5rem);
   font-weight: 300;
   font-style: italic;
   color: var(--white);
   line-height: 1.08;
   margin-bottom: 28px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.6fr 1fr 1fr;
   gap: 60px;
   padding-bottom: 60px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.07);
   margin-bottom: 40px;
}

.footer-brand .nav-logo {
   display: block;
   color: var(--white);
   margin-bottom: 16px;
   font-size: 1.9rem;
}

.footer-col h4 {
   font-size: 0.65rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: rgba(255, 255, 255, 0.25);
   margin-bottom: 20px;
}

.footer-col ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-col ul li a {
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.5);
   transition: color 0.3s;
}

.footer-col ul li a:hover {
   color: var(--gold);
}

.footer-contact {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.fc-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
}

.fc-item svg {
   width: 16px;
   height: 16px;
   fill: var(--terra);
   flex-shrink: 0;
   margin-top: 3px;
}

.footer-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.75rem;
}

.footer-rating {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 8px 18px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 40px;
}

.footer-rating .stars {
   color: var(--gold);
   font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   7. WIDGETS FISSI & MODALS
═══════════════════════════════════════ */
.wa-float {
   position: fixed;
   bottom: 32px;
   right: 32px;
   z-index: 300;
   width: 56px;
   height: 56px;
   background: #25D366;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
   transition: transform 0.3s;
}

.wa-float:hover {
   transform: scale(1.12) translateY(-3px);
}

.wa-float svg {
   width: 26px;
   height: 26px;
   fill: var(--white);
}

.mob-cta {
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   background: rgba(253, 250, 245, 0.97);
   backdrop-filter: blur(12px);
   border-top: 1px solid var(--border);
   padding: 14px 24px;
   display: none;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   z-index: 350;
}

.mob-cta-price .val {
   font-family: var(--serif);
   font-size: 1.5rem;
   color: var(--ink);
   line-height: 1;
}

.overlay-bg {
   position: fixed;
   inset: 0;
   background: rgba(12, 27, 42, 0.7);
   backdrop-filter: blur(10px);
   z-index: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 24px;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.4s;
}

.overlay-bg.open {
   opacity: 1;
   pointer-events: all;
}

.panel {
   background: var(--cream);
   border-radius: var(--r-xl);
   max-width: 540px;
   width: 100%;
   padding: 48px 44px 40px;
   position: relative;
   transform: translateY(20px) scale(0.97);
   transition: transform 0.4s;
   box-shadow: 0 40px 80px rgba(12, 27, 42, 0.25);
   max-height: 90vh;
   overflow-y: auto;
}

.overlay-bg.open .panel {
   transform: translateY(0) scale(1);
}

.panel-close {
   position: absolute;
   top: 20px;
   right: 22px;
   width: 36px;
   height: 36px;
   background: var(--salt);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.3rem;
   color: #718096;
   border: 1px solid var(--border);
}

.panel-check {
   width: 52px;
   height: 52px;
   background: rgba(192, 84, 64, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   margin-bottom: 20px;
}

.panel h3 {
   font-family: var(--serif);
   font-size: 2rem;
   color: var(--ink);
   margin-bottom: 8px;
   margin-top: 0;
}

.msg-textarea {
   width: 100%;
   height: 190px;
   padding: 14px 16px;
   border: 1.5px solid var(--border);
   background: var(--white);
   font-family: var(--sans);
   font-size: 0.83rem;
   border-radius: var(--r-sm);
   resize: vertical;
   outline: none;
   margin-bottom: 20px;
}

.btn-email-panel,
.btn-wa-panel {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 100%;
   padding: 15px;
   font-family: var(--sans);
   font-size: 0.78rem;
   font-weight: 600;
   text-transform: uppercase;
   border-radius: var(--r-sm);
   color: var(--white);
}

.btn-email-panel {
   background: var(--terra);
}

.btn-wa-panel {
   background: #25D366;
}

.panel-dismiss {
   text-align: center;
   margin-top: 14px;
   font-size: 0.75rem;
   color: #A0AEC0;
   width: 100%;
}

.am-modal-panel {
   max-width: 950px;
   padding: 56px;
}

.am-modal-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 36px;
   margin-top: 32px;
}

.am-cat h4 {
   font-size: 0.72rem;
   text-transform: uppercase;
   letter-spacing: 2.5px;
   color: var(--terra);
   margin-bottom: 14px;
   border-bottom: 1px solid var(--border);
   padding-bottom: 6px;
}

.am-cat ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 9px;
}

.am-cat li {
   display: flex;
   align-items: flex-start;
   gap: 9px;
   font-size: 0.86rem;
}

.am-cat li::before {
   content: '✓';
   color: var(--terra);
   font-weight: 700;
}

.lightbox {
   position: fixed;
   inset: 0;
   background: rgba(5, 10, 18, 0.98);
   z-index: 99999;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.4s;
}

.lightbox.open {
   opacity: 1;
   pointer-events: all;
}

.lb-img {
   max-width: 90vw;
   max-height: 86vh;
   object-fit: contain;
   border-radius: var(--r-sm);
}

.lb-close {
   position: fixed;
   top: 24px;
   right: 28px;
   width: 44px;
   height: 44px;
   background: rgba(255, 255, 255, 0.08);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 1.5rem;
   z-index: 10;
}

.lb-nav {
   position: fixed;
   top: 50%;
   transform: translateY(-50%);
   width: 50px;
   height: 50px;
   background: rgba(255, 255, 255, 0.07);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 1.4rem;
   z-index: 10;
}

.lb-prev {
   left: 20px;
}

.lb-next {
   right: 20px;
}

.lb-count {
   position: fixed;
   bottom: 24px;
   left: 50%;
   transform: translateX(-50%);
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: rgba(255, 255, 255, 0.35);
   z-index: 10;
}

/* ═══════════════════════════════════════
   8. RESPONSIVE (Mobile e Tablet)
═══════════════════════════════════════ */
@media(max-width: 1100px) {

   .about-grid,
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 60px;
   }

   .about-img-float {
      display: none;
   }

   .about-img-main {
      height: 460px;
   }

   .booking-grid {
      grid-template-columns: 1fr;
      gap: 48px;
   }

   .booking-widget {
      position: static;
   }

   .am-grid {
      grid-template-columns: repeat(4, 1fr);
   }

   .reviews-grid,
   .footer-grid,
   .am-modal-grid {
      grid-template-columns: 1fr 1fr;
   }
}

@media(max-width: 900px) {
   .navbar {
      padding: 20px 24px;
   }

   .navbar.stuck {
      padding: 14px 24px;
   }

   .nav-links,
   .nav-right {
      display: none;
   }

   .nav-toggle {
      display: flex;
   }

   .hero-content {
      grid-template-columns: 1fr;
      padding: 0 24px 72px;
   }

   .hero-right {
      display: none;
   }

   .exp-track,
   .reviews-grid,
   .footer-grid,
   .am-modal-grid {
      grid-template-columns: 1fr;
   }

   .photo-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 200px;
      padding: 0 20px;
   }

   .ph-1,
   .ph-2,
   .ph-3,
   .ph-4,
   .ph-5,
   .ph-6,
   .ph-7,
   .ph-more {
      grid-column: span 1;
      grid-row: span 1;
   }

   .stat-cell {
      width: 100%;
      justify-content: center;
      border-right: none;
      border-bottom: 1px solid var(--border);
   }

   .stat-break {
      display: none;
   }

   .stats-strip .wrap {
      flex-direction: column;
   }

   .am-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .mob-cta {
      display: flex;
   }

   body {
      padding-bottom: 72px;
   }

   .wa-float {
      bottom: 88px;
   }

   .wrap {
      padding: 0 20px;
   }

   .about-img-tag {
      display: none;
   }

   .am-modal-panel {
      padding: 32px 20px;
   }

   .map-container {
      height: 350px;
   }
}

@media(max-width: 600px) {
   .hero h1 {
      font-size: 3.5rem;
   }

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

   .photo-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
   }

   .full-gallery {
      grid-template-columns: 1fr;
      padding: 40px 20px;
   }

   .booking-widget {
      padding: 28px 24px;
   }

   .panel {
      padding: 36px 24px 28px;
   }
}

@media(max-height: 700px) and (orientation: landscape) {
   .hero {
      height: auto;
      padding: 120px 0;
   }
}