﻿/* CSS Variables for Dreamy Marine Theme with Sand Accents */
:root {
    --color-bg-light: #FDF3DB;
    --color-bg-ocean: #285A72;
    --color-bg-deep: #0D2633;

    --color-text-dark: #12303E;
    --color-text-light: #F4F9F9;

    --color-accent: #5AB2B6;
    --color-accent-hover: #46969A;
    --color-sand: #E6BE8A;
    --color-sand-bright: #F4D03F;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-xl: 7rem;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

.title-main {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    color: var(--color-text-light);
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 3.2rem);
    margin-bottom: 2rem;
    color: inherit;
    font-style: italic;
}

.subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 0.8rem;
    color: rgba(244, 249, 249, 0.95);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-sand);
}

.highlight-text {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

p {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

/* Section-specific text colors */
.section-ocean p,
.section-deep-blue p,
.section-ocean li,
.section-deep-blue li {
    color: rgba(244, 249, 249, 0.92);
    font-size: 1.1rem;
}

.section-ocean .section-title,
.section-deep-blue .section-title {
    color: #F4F9F9;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.section-light p {
    color: #1a3d4f;
    font-size: 1.1rem;
    font-weight: 400;
}

.section-light .section-title {
    color: var(--color-bg-ocean);
    font-weight: 600;
}

.section-light .lead-text {
    color: var(--color-bg-ocean);
    font-weight: 500;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-4        { margin-top: 2rem; }
.mt-5        { margin-top: 4rem; }

/* Layout & Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-light     { background-color: var(--color-bg-light); color: var(--color-text-dark); }
.section-ocean     { background-color: var(--color-bg-ocean); color: var(--color-text-light); }
.section-deep-blue { background-color: var(--color-bg-deep);  color: var(--color-text-light); }

/* ==============================
   Navbar
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgba(13, 38, 51, 0.92);
    backdrop-filter: blur(15px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Audio Toggle */
.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(5deg);
}

/* ==============================
   Buttons
   ============================== */
.btn-primary,
.btn-outline,
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-bright) 100%);
    color: var(--color-bg-deep);
    box-shadow: 0 10px 25px rgba(230, 190, 138, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(230, 190, 138, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-sand);
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background-color: var(--color-sand);
    color: var(--color-bg-deep);
}

/* Outlined button for light backgrounds */
.btn-outline-dark {
    background-color: transparent;
    color: var(--color-bg-ocean);
    border: 2px solid var(--color-bg-ocean);
    padding: 1.1rem 2.8rem;
}

.btn-outline-dark:hover {
    background-color: var(--color-bg-ocean);
    color: var(--color-text-light);
}

.btn-large {
    padding: 1.4rem 4rem;
    font-size: 1.15rem;
}

/* ==============================
   Hero Section
   ============================== */
.hero {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('hero_sea_bg.png');
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(13, 38, 51, 0.55) 0%,
        rgba(13, 38, 51, 0.25) 40%,
        rgba(13, 38, 51, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-sand);
    margin-bottom: 1.2rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-style: italic;
    color: rgba(244, 249, 249, 0.85);
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    z-index: 4;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0%   { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

/* ==============================
   Eyebrow label
   ============================== */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}

/* ==============================
   Split Layout
   ============================== */
.split-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.split-image {
    flex: 1;
    min-width: 280px;
}

.split-text {
    flex: 1;
    min-width: 280px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(13, 38, 51, 0.18);
    border: 5px solid white;
}

/* ==============================
   Problem Section
   ============================== */
.problem-text {
    max-width: 680px;
    margin: 0 auto;
}

.problem-quote {
    font-size: 1.3rem !important;
    font-style: italic;
    color: var(--color-sand) !important;
    font-family: var(--font-heading);
    line-height: 1.7;
}

/* Bubbles Effect */
.ocean-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.ocean-bubbles::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: 20%;
    animation: bubble-up 10s infinite linear;
}

@keyframes bubble-up {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    50%  { opacity: 0.5; }
    100% { transform: translateY(-800px) scale(1.5); opacity: 0; }
}

/* ==============================
   Practices Grid
   ============================== */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.practice-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border-top: 3px solid var(--color-sand);
    box-shadow: 0 8px 30px rgba(13, 38, 51, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 38, 51, 0.1);
}

.practice-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.practice-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-bg-ocean);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.practice-item p {
    color: #284a5c;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ==============================
   Program Flow
   ============================== */
.program-flow-block {
    background: var(--color-bg-deep);
    border-radius: 24px;
    padding: 3.5rem;
    color: var(--color-text-light);
}

.program-flow-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-style: italic;
    color: var(--color-sand);
    margin-bottom: 1rem;
    text-align: center;
}

.program-flow-intro {
    color: #F4F9F9 !important;
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.program-flow-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.program-row {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.program-row:last-child {
    border-bottom: none;
}

.program-time {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sand);
    min-width: 130px;
    flex-shrink: 0;
}

.program-activity {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: #F4F9F9 !important;
}

.program-flow-note {
    color: rgba(244, 249, 249, 0.80) !important;
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

/* ==============================
   Gallery Section
   ============================== */
.section-gallery {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0 4rem;
    overflow: hidden;
}

.section-gallery .section-title { color: var(--color-sand); }
.section-gallery .lead-text { color: rgba(244, 249, 249, 0.75); font-size: 1.1rem; }

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    cursor: grab;
    user-select: none;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.gallery-slider-wrapper:active { cursor: grabbing; }

.gallery-slider {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 9 / 16;
    flex-shrink: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.gallery-slide img,
.gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

.gallery-slide--video { border: none; }

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 38, 51, 0.75);
    border: 2px solid var(--color-sand);
    color: var(--color-sand);
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--color-sand);
    color: var(--color-bg-deep);
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn--prev { left: -64px; }
.gallery-btn--next { right: -64px; }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(244, 249, 249, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    background: var(--color-sand);
    width: 24px;
    border-radius: 4px;
}

/* ==============================
   Target Audience Grid
   ============================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 760px;
    margin: 0 auto;
}

.target-item {
    background: white;
    border: 1px solid rgba(40, 90, 114, 0.12);
    border-radius: 16px;
    padding: 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.target-item:hover {
    border-color: rgba(40, 90, 114, 0.3);
    box-shadow: 0 8px 24px rgba(13, 38, 51, 0.07);
}

.target-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.target-item p {
    color: var(--color-bg-ocean);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ==============================
   Details / Practical Info Block
   ============================== */
.details-block {
    background: white;
    border-radius: 24px;
    padding: 3rem 3.5rem;
    box-shadow: 0 15px 60px rgba(13, 38, 51, 0.07);
    max-width: 800px;
    margin: 0 auto;
}

.details-location {
    font-size: 1.1rem;
    color: var(--color-bg-ocean);
    margin-top: 0.4rem;
    margin-bottom: 0;
    font-weight: 500;
}

.invest-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-bg-ocean);
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.price-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    background: var(--color-bg-light);
    border: 2px solid rgba(40, 90, 114, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.3s ease;
}

.price-card:hover {
    box-shadow: 0 12px 40px rgba(13, 38, 51, 0.1);
}

.price-card--featured {
    background: var(--color-bg-deep);
    border-color: var(--color-sand);
    box-shadow: 0 20px 60px rgba(13, 38, 51, 0.2);
}

.price-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-sand);
    background: rgba(230, 190, 138, 0.12);
    border: 1px solid rgba(230, 190, 138, 0.3);
    border-radius: 30px;
    padding: 0.3rem 1rem;
}

.price-card:not(.price-card--featured) .price-badge {
    color: var(--color-bg-ocean);
    background: rgba(40, 90, 114, 0.08);
    border-color: rgba(40, 90, 114, 0.2);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--color-sand);
}

.price-card:not(.price-card--featured) .price-amount {
    color: var(--color-bg-ocean);
}

.price-desc {
    font-size: 0.95rem;
    color: rgba(244, 249, 249, 0.7);
    margin: 0;
    line-height: 1.6;
}

.price-card:not(.price-card--featured) .price-desc {
    color: #4a6d80;
}

/* Include / Not Include */
.include-block {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 90, 114, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.include-col {
    flex: 1;
    min-width: 200px;
}

.include-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.include-yes { color: #2a7d4f; }
.include-no  { color: #8b2020; }

.include-list {
    list-style: none;
    padding: 0;
}

.include-list li {
    font-size: 0.98rem;
    color: #284a5c;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(40, 90, 114, 0.08);
    line-height: 1.5;
}

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

/* ==============================
   FAQ Section
   ============================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.11);
}

.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-sand);
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
}

.faq-item p {
    color: rgba(244, 249, 249, 0.82);
    font-size: 0.98rem;
    margin: 0;
    line-height: 1.8;
}

/* ==============================
   CTA Section
   ============================== */
.section-cta {
    padding: 12rem 0;
}

.section-cta .container {
    position: relative;
    z-index: 2;
}

.section-cta .section-title {
    color: var(--color-sand);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.section-cta .cta-text {
    color: rgba(244, 249, 249, 0.92);
    font-size: 1.2rem;
    line-height: 2;
}

.cta-bg-wrapper {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(13, 38, 51, 0.6) 0%, rgba(13, 38, 51, 0.75) 100%),
        url('foto e video specifici barca a vela/photo_18_2026-02-15_18-37-48.jpg') center center / cover no-repeat;
    z-index: 1;
}

.recap-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.recap-list li {
    color: var(--color-sand);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-style: italic;
}

/* ==============================
   Animations
   ============================== */
.fade-in,
.fade-in-up,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in       { transform: translateY(12px); }
.fade-in-up    { transform: translateY(40px); }
.fade-in-right { transform: translateX(40px); }

.fade-in.visible,
.fade-in-up.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }

/* ==============================
   Footer
   ============================== */
footer {
    background: linear-gradient(to bottom, var(--color-bg-deep) 0%, #070f14 100%);
    color: rgba(244, 249, 249, 0.75);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(90, 178, 182, 0.2);
}

footer p {
    font-size: 0.9rem;
    color: rgba(244, 249, 249, 0.45);
    margin: 0;
    letter-spacing: 0.06em;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 991px) {
    .navbar { padding: 1.2rem 2rem; }
    .navbar.scrolled { padding: 0.9rem 2rem; }
    .practices-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .program-flow-block { padding: 2.5rem 1.8rem; }
}

@media (max-width: 768px) {
    :root { --spacing-xl: 5rem; }

    .title-main { font-size: 3.4rem; }

    .hero-waves { height: 10vh; }

    .split-container { gap: 2.5rem; }
    .split-image, .split-text { min-width: 100%; }

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

    .price-cards { flex-direction: column; align-items: center; }
    .price-card { max-width: 100%; width: 100%; }

    .include-block { flex-direction: column; gap: 1.5rem; }

    .gallery-slider-wrapper { max-width: 90vw; }
    .gallery-btn--prev { left: -44px; }
    .gallery-btn--next { right: -44px; }
    .gallery-btn { width: 36px; height: 36px; font-size: 1rem; }

    .invest-block { padding: 2rem 1.5rem; }

    .section-cta { padding: 8rem 0; }

    .program-row { flex-direction: column; gap: 0.3rem; }
    .program-time { min-width: unset; }
}

@media (max-width: 480px) {
    .navbar { padding: 1rem 1.2rem; }
    .logo { font-size: 1.2rem; }
    .btn-outline { display: none; }
    .hero-label { font-size: 0.72rem; }
}

/* ==============================
   Date Section
   ============================== */
.date-hero-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}
.date-main { display: flex; flex-direction: column; align-items: center; min-width: 200px; }
.date-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-sand); margin-bottom: 0.6rem; }
.date-range { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.4rem); font-style: italic; color: #F4F9F9; line-height: 1.1; white-space: nowrap; }
.date-year { font-size: 1.1rem; font-weight: 300; color: var(--color-sand); letter-spacing: 0.12em; margin-top: 0.4rem; }
.date-divider { width: 1px; height: 120px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.date-meta { display: flex; flex-direction: column; gap: 1.4rem; flex: 1; min-width: 220px; }
.date-meta-item { display: flex; align-items: flex-start; gap: 1rem; }
.date-meta-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.date-meta-item strong { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-sand); display: block; margin-bottom: 0.15rem; }
.date-meta-item p { font-size: 1rem; color: rgba(244,249,249,0.85); margin: 0; line-height: 1.5; }

/* Price Tiles */
.prices-row { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; }
.price-tile { flex: 1; min-width: 240px; max-width: 340px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.price-tile:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.price-tile--featured { background: rgba(230,190,138,0.10); border-color: var(--color-sand); box-shadow: 0 0 40px rgba(230,190,138,0.15); }
.price-tile-badge { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-sand); margin-bottom: 1rem; }
.price-tile-amount { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3rem); color: #F4F9F9; font-weight: 600; line-height: 1; margin-bottom: 0.8rem; }
.price-tile-note { font-size: 0.9rem; color: rgba(244,249,249,0.55); line-height: 1.5; }

/* Include Block Dark */
.include-block-dark { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 3rem 3.5rem; max-width: 860px; margin: 3.5rem auto 0; }
.include-title-dark { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; letter-spacing: 0.05em; }
.include-title-dark.include-yes { color: #7DD4B5; }
.include-title-dark.include-no  { color: rgba(244,249,249,0.4); }
.include-list-dark { list-style: none; padding: 0; }
.include-list-dark li { font-size: 0.98rem; color: rgba(244,249,249,0.80); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); line-height: 1.6; }
.include-list-dark li:last-child { border-bottom: none; }

/* ==============================
   Chi Siamo / Team Section
   ============================== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.team-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 50px rgba(13,38,51,0.08); border: 1px solid rgba(40,90,114,0.08); transition: transform 0.4s ease, box-shadow 0.4s ease; display: flex; flex-direction: column; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 25px 70px rgba(13,38,51,0.14); }
.team-photo-wrap { width: 100%; height: 320px; overflow: hidden; background: var(--color-bg-deep); }
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; }
.team-card:hover .team-photo { transform: scale(1.04); }
.team-info { padding: 2rem 2.2rem 2.5rem; flex: 1; }
.team-name { font-family: var(--font-heading); font-size: clamp(1.6rem, 2.5vw, 2rem); color: var(--color-bg-ocean); font-style: italic; margin-bottom: 0.3rem; }
.team-tagline { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.2rem; }
.team-info p { font-size: 1rem; color: #2c4f62; line-height: 1.85; margin-bottom: 1rem; }
.team-credentials { list-style: none; padding: 0; margin-top: 1.2rem; border-top: 1px solid rgba(40,90,114,0.10); padding-top: 1.2rem; }
.team-credentials li { font-size: 0.9rem; color: var(--color-bg-ocean); padding: 0.35rem 0; border-bottom: 1px solid rgba(40,90,114,0.07); display: flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.team-credentials li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--color-sand); flex-shrink: 0; margin-top: 2px; }
.team-credentials li:last-child { border-bottom: none; }
.team-couple-wrap { text-align: center; max-width: 620px; margin: 5rem auto 0; }
.team-couple-photo { width: 100%; max-height: 480px; object-fit: cover; object-position: center 20%; border-radius: 28px; box-shadow: 0 30px 80px rgba(13,38,51,0.14); border: 5px solid white; display: block; }
.team-couple-caption { font-family: var(--font-heading); font-style: italic; font-size: 1.15rem; color: var(--color-bg-ocean); margin-top: 1.8rem; line-height: 1.7; }

/* Responsive: nuove sezioni */
@media (max-width: 768px) {
    .date-hero-block { flex-direction: column; gap: 2rem; padding: 2.5rem 2rem; text-align: center; }
    .date-divider { width: 80%; height: 1px; }
    .prices-row { flex-direction: column; align-items: center; }
    .price-tile { max-width: 100%; width: 100%; }
    .include-block-dark { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .team-photo-wrap { height: 280px; }
}
