:root {
    /* Colors */
    --primary: #771016;
    --accent: #EADFD7;
    --accent-dark: #DAC8BD;
    --white: #F9F6F2;
    --text-main: #771016;
    --text-muted: rgba(119, 16, 22, 0.7);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, #9A2A30 100%);
    --card-gradient: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);

    /* Shadows */
    --sh-soft: 0 4px 20px rgba(119, 16, 22, 0.05);
    --sh-medium: 0 10px 40px -10px rgba(119, 16, 22, 0.1);

    /* Spacing & Borders */
    --radius-pill: 999px;
    --radius-card: 24px;

    /* Typography Variables */
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-alt: 'Lora', serif;

    /* Font Sizes */
    --fs-h1: clamp(36px, 8vw, 84px);
    --fs-h2: clamp(26px, 5vw, 48px);
    --fs-h3: clamp(20px, 3vw, 26px);
    --fs-body-lg: clamp(16px, 2vw, 18px);
    --fs-body: 18px;
    --fs-small: 14px;
    --fs-label: 12px;

    /* Line Heights */
    --lh-tight: 1.1;
    --lh-base: 1.6;
    --lh-relaxed: 1.8;

    /* Transitions */
    --trans-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-alt);
    color: var(--text-main);
    background: var(--white);
    font-size: var(--fs-body);
    line-height: var(--lh-base);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

/* ── ACCESSIBILITY ─────────────────────────────────────────── */

/* Skip-to-content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* Global high-contrast focus ring (keyboard users only) */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 6px;
    box-shadow: 0 0 0 6px rgba(var(--bx-rgb), 0.15);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(var(--bx-rgb), 0.12);
}

/* ──────────────────────────────────────────────────────────── */

h1,
h2,
h3,
.font-serif {
    font-family: var(--font-serif);
    font-weight: 400;
}

h1 {
    font-size: var(--fs-h1);
    line-height: var(--lh-tight);
}

h2 {
    font-size: var(--fs-h2);
    line-height: var(--lh-tight);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

h3 {
    font-size: var(--fs-h3);
    line-height: 1.3;
}

p {
    margin-bottom: 0;
}

p+p {
    margin-top: 1.2em;
}

.label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--primary);
}

.label span {
    font-size: var(--fs-label);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-sans);
}

.label-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.text-lg {
    font-size: var(--fs-body-lg);
    line-height: var(--lh-relaxed);
}

.text-sm {
    font-size: var(--fs-small);
}

.text-muted {
    color: var(--text-muted);
}

.font-bold {
    font-weight: 600;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #a31d25 0%, #771016 50%, #5e0d11 100%);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow:
        0 20px 40px rgba(119, 16, 22, 0.3),
        0 10px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 75%);
    pointer-events: none;
    z-index: 2;
}

/* Hero CTA Glass Container (True Glass Effect) */
.hero-cta-glass-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1); /* Molto più trasparente */
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border-radius: 40px; 
    padding: 24px 24px 24px 45px; /* Aumentato lo spessore (altezza) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    width: fit-content; /* Ritorna alla lunghezza naturale basata sul contenuto */
    gap: 50px; 
    margin-top: 40px;
}

.date-picker-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #771016;
    font-weight: 600; /* Più marcato */
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3); /* Leggera luce per far risaltare il bordeaux */
    text-decoration: none;
}

.date-picker-mock:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

.date-picker-mock span {
    font-size: 17px; /* Leggermente più grande */
    letter-spacing: -0.01em;
}

.date-picker-mock .calendar-icon {
    color: #771016;
}

.date-picker-mock .chevron-icon {
    color: #771016;
    margin-left: 4px;
}

#hero-book-btn {
    padding: 14px 36px;
    font-size: 15px;
    box-shadow: 0 12px 25px rgba(119, 16, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(119, 16, 22, 0.45);
    background: linear-gradient(180deg, #b8212a 0%, #8b131a 50%, #700f14 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f5f0ed 0%, #e0cfc2 50%, #d1bcad 100%);
    color: #771016;
    padding: 18px 48px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow:
        0 20px 40px rgba(224, 207, 194, 0.3),
        0 10px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0px rgba(255, 255, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 -3px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.4) 0%, transparent 75%);
    pointer-events: none;
    z-index: 2;
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(224, 207, 194, 0.45);
    background: linear-gradient(180deg, #ffffff 0%, #f3e7df 50%, #e0cfc2 100%);
}

.btn-outline {
    display: inline-flex;
    padding: 14px 36px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline:hover {
    background: radial-gradient(circle at center, #8b131a 0%, #771016 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(119, 16, 22, 0.2);
    border-color: transparent;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Lora', serif;
    font-size: 15px;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--trans-smooth);
}

.btn-text:hover::after {
    width: 100%;
}

/* Navbar - Floating Glass */
.nav-wrap {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0 20px;
}

.nav-container {
    max-width: 1150px;
    margin: 0 auto;
    background: rgba(249, 246, 242, 0.5);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.nav-wrap.scrolled {
    top: 15px;
}

.nav-wrap.scrolled .nav-container {
    background: rgba(249, 246, 242, 0.85);
    padding: 8px 40px;
    max-width: 1100px;
    box-shadow: 0 15px 40px rgba(119, 16, 22, 0.1);
}

.nav-wrap.scrolled .nav-logo img {
    height: 42px;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-sans);
    color: var(--text-main);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
}

/* Mobile Drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(119, 16, 22, 0.4);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer.open {
    opacity: 1;
    visibility: visible;
}

.drawer-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.drawer.open .drawer-inner {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nav-logo-sm {
    height: 40px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 10px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-nav a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(119, 16, 22, 0.05);
}

.drawer-cta {
    margin-top: auto;
    padding-top: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: blur(3px);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(249, 246, 242, 0) 0%,
            rgba(249, 246, 242, 0.1) 40%,
            rgba(249, 246, 242, 0.8) 85%,
            rgba(249, 246, 242, 1) 100%);
    z-index: 1;
}

.container-hero {
    display: grid;
    position: relative;
    z-index: 2;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: var(--fs-h1);
    font-weight: 600;
    line-height: var(--lh-tight);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    text-shadow: 0 4px 20px rgba(119, 16, 22, 0.15), 0 0 40px rgba(255, 255, 255, 0.5);
    color: var(--primary);
}

.hero-title .highlight {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
    display: inline-block;
    padding-top: 5px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-muted);
    font-weight: 500;
    line-height: var(--lh-relaxed);
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}



.hero-photo-frame {
    position: relative;
    border-radius: 40% 60% 60% 40% / 50% 30% 70% 50%;
    overflow: hidden;
    aspect-ratio: 0.9;
    border: 8px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    box-shadow:
        15px 15px 40px rgba(119, 16, 22, 0.1),
        -10px -10px 30px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: var(--trans-smooth);
    z-index: 2;
    min-width: 250px;
    max-width: 100%;
}

.hero-photo-frame:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        20px 20px 50px rgba(119, 16, 22, 0.15),
        -15px -15px 40px rgba(255, 255, 255, 0.6);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content Background System - Natural Texture & Fiber */
main {
    background-color: #F9F6F2;
    position: relative;
}

main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
}

/* Value Cards */
.values-section {
    padding: 100px 0 60px;
}

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

.value-card {
    padding: 35px 30px;
    background: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);
    border-radius: 32px;
    text-align: center;
    border: 1px solid rgba(119, 16, 22, 0.05);
    transition: var(--trans-smooth);
    box-shadow: 0 4px 15px rgba(119, 16, 22, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(119, 16, 22, 0.1);
    background: #fff;
}

.value-card h3 {
    font-size: var(--fs-h3);
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    font-size: var(--fs-body);
    line-height: var(--lh-base);
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
}


.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.section-divider .line {
    height: 1px;
    flex: 1;
    background: var(--accent-dark);
}

.section-divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--sh-medium);
}

.about-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image img {
    width: 100%;
    display: block;
}

.label {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.label span {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 12px;
    color: var(--primary);
}

.label-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-top: 5px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.lead {
    font-size: var(--fs-body-lg);
    font-weight: 500;
    margin-bottom: 20px;
}

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

.trait {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--trans-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trait:hover {
    border-color: var(--accent-dark);
    transform: translateY(-5px);
}

.trait h4 {
    font-size: 16px;
    margin: 6px 0 4px;
}

.trait p {
    font-size: 13px;
    color: var(--text-muted);
}

.trait-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0.2px 0 0 var(--primary)) drop-shadow(-0.2px 0 0 var(--primary)) drop-shadow(0 0.2px 0 var(--primary)) drop-shadow(0 -0.2px 0 var(--primary));
    margin-bottom: 8px;
}

.icon-listen-sm {
    background-image: url('../assets/icone/Ellipse 7460.svg');
}

.icon-expertise-sm {
    background-image: url('../assets/icone/Ellipse 7461.svg');
}

.icon-ambient-sm {
    background-image: url('../assets/icone/Ellipse 7462.svg');
}


.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

.services-header {
    max-width: 600px;
    margin-bottom: 60px;
}

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

.services-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.service-card {
    padding: 30px;
    background: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);
    border-radius: 24px;
    border: 1px solid rgba(119, 16, 22, 0.05);
    box-shadow: 0 4px 12px rgba(119, 16, 22, 0.08);
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
    background-color: var(--primary-08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Booking Section */
.booking-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    color: var(--primary);
}

.booking-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/styles_img_12.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: sepia(1) hue-rotate(340deg) brightness(1.2);
}

.booking-card {
    background: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);
    border: 1px solid rgba(119, 16, 22, 0.05);
    box-shadow: 0 4px 12px rgba(119, 16, 22, 0.08);
    border-radius: 60px;
    padding: 80px;
    max-width: 900px;
    margin: 0 auto;
    transition: var(--trans-smooth);
}

.booking-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.label-center {
    align-items: center;
}

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

.booking-intro {
    font-size: var(--fs-body-lg);
    margin: 20px auto 40px;
    max-width: 600px;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.booking-info-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-info-item svg {
    margin-bottom: 15px;
}

.booking-info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.booking-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.booking-card .btn-primary {
    /* Inherits satin gradient from global .btn-primary */
}

.booking-card .btn-outline {
    /* Inherits satin hover from global .btn-outline */
    border-color: var(--primary);
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-text .contact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
}

.contact-text a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.contact-text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--trans-smooth);
}

.contact-text a:hover::after {
    width: 100%;
}

.social-links {
    margin-top: 50px;
}

.social-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--trans-smooth);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-form {
    background: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);
    padding: 60px;
    border-radius: 50px;
    border: 1px solid rgba(119, 16, 22, 0.05);
    box-shadow: 0 4px 12px rgba(119, 16, 22, 0.08);
    margin-top: 20px;
    transition: all 0.5s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

.contact-form h3 {
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(119, 16, 22, 0.1);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--bx-rgb), 0.1);
}

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

/* Form status messages */
.form-success,
.form-error {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-success {
    color: #1a6630;
    background: rgba(50, 160, 80, 0.1);
    border: 1px solid rgba(50, 160, 80, 0.25);
}

.form-error {
    color: #a31d25;
    background: rgba(163, 29, 37, 0.08);
    border: 1px solid rgba(163, 29, 37, 0.2);
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: var(--beige-light);
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 48px;
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 0 60px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    scroll-snap-align: center;
    flex: 0 0 calc(100% - 48px);
    max-width: 450px;
    background: var(--card-gradient);
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.review-quote-mark {
    font-family: var(--font-serif);
    font-size: 140px;
    line-height: 1;
    color: rgba(119, 16, 22, 0.05);
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 0;
}

.review-text {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--primary);
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.review-author {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(119, 16, 22, 0.1);
    padding-top: 16px;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.author-issue {
    display: block;
    font-size: 14px;
    color: rgba(119, 16, 22, 0.7);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 380px;
    }

    .reviews-slider {
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}


/* FAQ Section */
.faq-section {
    padding: 120px 0;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: linear-gradient(118deg, #EADFD7 3%, #F9F6F2 43%, #EADFD7 85%);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--trans-smooth);
    border: 1px solid rgba(119, 16, 22, 0.05);
    box-shadow: 0 4px 12px rgba(119, 16, 22, 0.08);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-question svg {
    transition: var(--trans-smooth);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--trans-smooth);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 300px;
}

/* Footer moved to footer.css */



/* Reveal Animations */
.reveal {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 1.2s;
    will-change: transform, opacity, visibility;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-top {
    transform: translateY(-40px);
}

.reveal.reveal-zoom {
    transform: scale(0.92);
}

.reveal.in {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

.d1 { transition-delay: 0.15s; }
.d2 { transition-delay: 0.3s; }
.d3 { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1024px) {

    .nav-links,
    .nav-actions .btn-primary {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-container {
        padding: 10px 20px;
    }

    .container-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bg {
        object-position: left;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-content .btn-container,
    .contact-actions {
        text-align: center;
        margin-top: 30px;
    }

    .contact-actions {
        display: flex;
        justify-content: center;
    }

    .values-grid,
    .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .values-grid .value-card,
    .services-grid .service-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 0;
    }



    .booking-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .booking-info-item {
        padding: 15px 10px;
    }

    .booking-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
    }

    .booking-info-item strong {
        font-size: 15px;
    }

    .booking-info-item p {
        font-size: 13px;
    }

    .traits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .trait {
        padding: 20px 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trait-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 2px;
    }

    .trait h4 {
        font-size: 14px;
        margin: 2px 0 4px;
    }

    .trait p {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-body: 16px;
    }

    .hero-section {
        padding-top: 140px;
    }

    .about-content .btn-container,
    .contact-actions {
        text-align: center;
    }

    .contact-actions {
        display: flex;
        justify-content: center;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .date-picker-mock,
    .hero-cta-wrapper .btn-primary {
        width: 100%;
    }

    .hero-cta-glass-container {
        flex-direction: column;
        border-radius: 30px;
        padding: 20px;
        gap: 20px;
        width: 100%;
        max-width: 350px;
        align-items: center;
        text-align: center;
    }

    .date-picker-mock {
        justify-content: center;
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(119, 16, 22, 0.1);
    }

    .values-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        padding-bottom: 30px !important;
        gap: 20px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: calc(100% + 48px) !important;
        margin-left: -24px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .values-grid::-webkit-scrollbar {
        display: none;
    }

    .values-grid .value-card {
        flex: 0 0 85% !important;
        width: 85% !important;
        scroll-snap-align: center;
        max-width: 320px;
        margin-bottom: 0 !important;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-grid .service-card,
    .date-picker-mock,
    .hero-cta-wrapper .btn-primary {
        width: 100%;
    }

    .booking-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .booking-info-item {
        padding: 10px 5px;
        text-align: center;
    }

    .booking-icon {
        width: 32px;
        height: 32px;
        margin: 0 auto 8px;
    }

    .booking-icon img {
        width: 16px;
        height: 16px;
    }

    .booking-info-item strong {
        font-size: 13px;
        margin-bottom: 2px;
        display: block;
    }

    .booking-info-item p {
        font-size: 11px;
        line-height: 1.2;
    }

    .traits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .trait {
        padding: 15px 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trait-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 2px;
    }

    .trait-icon img {
        width: 16px;
        height: 16px;
    }

    .trait h4 {
        font-size: 14px;
        margin: 2px 0 4px;
    }

    .trait p {
        font-size: 11px;
        line-height: 1.3;
    }

    .booking-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .booking-actions .btn-primary,
    .booking-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .booking-card {
        padding: 40px 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 28px 20px;
        border-radius: 28px;
        margin-top: 0;
    }

    .contact-form h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group textarea {
        padding: 13px 16px;
        font-size: 16px; /* evita zoom automatico su iOS */
    }

    .contact-row {
        gap: 14px;
        margin-top: 20px;
    }

    .contact-icon-box {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .contact-text a {
        font-size: 15px;
        word-break: break-word;
    }



    .reviews-section {
        padding: 60px 0;
    }

    .review-quote-mark {
        font-size: 100px;
        top: -5px;
        left: 15px;
    }

    .review-card {
        padding: 32px 24px;
    }
}

/* Gift Section */
.gift-section {
    padding: 80px 0;
}

.gift-banner {
    background: var(--card-gradient);
    border-radius: var(--radius-card);
    padding: 50px;
    box-shadow: var(--sh-soft);
    position: relative;
    overflow: hidden;
}

.gift-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.gift-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.gift-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-soft);
}

.gift-text {
    flex: 1;
}

.gift-text h2 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 32px;
    font-family: var(--font-serif);
}

.gift-text p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* Responsive Gift Section */
@media (max-width: 1024px) {
    .gift-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .gift-text p {
        max-width: 100%;
    }

    .gift-banner {
        padding: 40px 20px;
    }

    .gift-text h2 {
        font-size: 26px;
    }

    .gift-text p {
        font-size: 16px;
    }
}

/* Modal / Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(119, 16, 22, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 420px;
    max-height: 85%;
    background: #fff;
    padding: 15px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 3001;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2) rotate(90deg);
}

.modal-caption {
    text-align: center;
    color: var(--primary);
    padding: 15px 0 5px;
    font-family: var(--font-alt);
    font-size: 16px;
    font-style: italic;
}

.gift-preview-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-top: 10px;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gift-preview-link:hover {
    opacity: 0.7;
}

/* Nav Gift Button */
.btn-gift-nav {
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    margin-right: 20px;
    cursor: pointer;
    padding: 5px;
}

.btn-gift-nav svg {
    width: 32px;
    height: 32px;
}

.btn-gift-nav:hover {
    transform: scale(1.15);
    color: var(--burgundy-light);
}

.nav-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 12px 25px;
    }

    .nav-logo img {
        height: 44px;
    }

    .btn-gift-nav {
        display: none;
    }
}

.drawer-gift {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
    border: none;
}

.drawer-gift svg {
    color: var(--primary);
}

.drawer-gift:active {
    opacity: 0.7;
}

/* Mobile Slider Force */
@media (max-width: 768px) {
    .values-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding-top: 10px !important;
        padding-bottom: 40px !important;
        padding-left: 7.5% !important;
        padding-right: 7.5% !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        scrollbar-width: none !important;
        width: calc(100% + 48px) !important;
        scroll-padding-left: 7.5% !important;
    }
    .values-grid::-webkit-scrollbar {
        display: none !important;
    }
    .values-grid .value-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        text-align: center !important;
    }
}

/* Visually Hidden text for screen readers and SEO */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
