/* ==========================================================================
   Roller Club Tropea — stylesheet
   Palette: sole #EFAE2C · mare #0E7A8C · corallo #e6613e · crema #FFFBF3
   Font: Fredoka (titoli) · Nunito (testo)
   ========================================================================== */

:root {
    --sun: #EFAE2C;
    --sun-2: #f4c04e;
    --sun-deep: #D8940F;
    --sea: #0E7A8C;
    --sea-deep: #0d353f;
    --coral: #e6613e;
    --ink: #22323b;
    --muted: #5b6a70;
    --cream: #FFFBF3;
    --cream-2: #fdf0d6;
    --sand: #f2e7cf;
    --sea-tint: #e6f5f7;
    --hdr-h: 78px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
body.inner { padding-top: var(--hdr-h); }

img { display: block; max-width: 100%; }
a { color: var(--sea); text-decoration: none; }
a:hover { color: var(--sun-deep); }
::selection { background: var(--sun); color: var(--ink); }

h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; margin: 0; }

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

/* ---------- Bottoni ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px;
    padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
    text-decoration: none; transition: transform .2s ease, filter .2s ease, background .2s ease, color .2s ease;
}
.btn-sun { background: var(--sun); color: #4a3708; box-shadow: 0 12px 24px -10px rgba(239,174,44,.85); }
.btn-sun:hover { transform: translateY(-2px); filter: brightness(1.04); color: #4a3708; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--sea); color: #fff; }
.btn-outline { background: #fff; color: var(--sea); border: 2px solid var(--sea); }
.btn-outline:hover { background: var(--sea); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.75); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Titoli di sezione ---------- */
.eyebrow { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--sea); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; }
.section-title { color: var(--ink); font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08; margin: 12px 0 0; }
.lead { font-size: clamp(16px, 2vw, 18px); line-height: 1.65; color: var(--muted); font-weight: 500; margin: 16px 0 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto; }
.section { padding: clamp(56px, 8vw, 100px) 0 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    background: rgba(255,251,243,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(239,226,198,.6);
    box-shadow: 0 6px 24px -18px rgba(20,50,60,.5);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header__inner {
    max-width: 1260px; margin: 0 auto; padding: 11px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo img { height: 54px; width: auto; transition: filter .3s ease; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    position: relative; padding: 9px 12px; border-radius: 999px;
    font-weight: 600; font-size: 15px; color: #3b4a51; transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--sea); background: rgba(14,122,140,.07); }
.main-nav a.is-active::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: 1px;
    height: 3px; border-radius: 3px; background: var(--sun);
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--sea); font-weight: 700; font-size: 14.5px; white-space: nowrap; transition: color .3s ease; }
.hamburger { display: none; width: 48px; height: 48px; border-radius: 13px; border: 1px solid var(--sand); background: #fff; color: var(--ink); align-items: center; justify-content: center; cursor: pointer; }

/* Header trasparente sull'hero della home */
body.home .site-header:not(.scrolled) {
    background: transparent; border-bottom-color: transparent; box-shadow: none;
}
body.home .site-header:not(.scrolled) .main-nav a,
body.home .site-header:not(.scrolled) .header-phone { color: #fff; }
body.home .site-header:not(.scrolled) .main-nav a:hover { background: rgba(255,255,255,.14); }
body.home .site-header:not(.scrolled) .logo img { filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,.35)); }

/* ---------- Menu mobile ---------- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 90; background: var(--cream);
    display: none; flex-direction: column;
}
body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--sand); }
.mobile-menu__head img { height: 48px; width: auto; }
.mm-close { width: 48px; height: 48px; border-radius: 13px; border: 1px solid var(--sand); background: #fff; color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mobile-menu__nav { flex: 1; overflow-y: auto; padding: 8px 20px; display: flex; flex-direction: column; }
.mobile-menu__nav a { padding: 16px 8px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 22px; color: var(--ink); border-bottom: 1px solid #f4ecd9; }
.mobile-menu__nav a.is-active { color: var(--sea); }
.mobile-menu__foot { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__foot a { font-weight: 700; }
.mobile-menu__foot span { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero { position: relative; min-height: min(92vh, 820px); display: flex; align-items: flex-end; overflow: hidden; background: var(--sea-deep); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,58,71,.10) 0%, rgba(14,58,71,.28) 45%, rgba(14,58,71,.80) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px 92px; width: 100%; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,251,243,.9); color: var(--sea); font-weight: 800; font-size: 13px; letter-spacing: .08em; padding: 8px 16px; border-radius: 999px; text-transform: uppercase; }
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); }
.hero h1 { color: #fff; font-size: clamp(40px, 6.2vw, 80px); line-height: 1.0; margin: 22px 0 0; max-width: 16ch; text-shadow: 0 6px 30px rgba(10,30,38,.45); }
.hero__sub { color: #f3fbfc; font-size: clamp(17px, 2vw, 22px); font-weight: 600; max-width: 44ch; margin: 20px 0 0; text-shadow: 0 2px 14px rgba(10,30,38,.5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__cta .btn { padding: 16px 30px; font-size: 17px; }

/* ---------- Strip highlight ---------- */
.highlights { max-width: 1120px; margin: -52px auto 0; padding: 0 24px; position: relative; z-index: 5; }
.highlights__inner { background: #fff; border-radius: 26px; box-shadow: 0 30px 60px -30px rgba(20,50,60,.4); border: 1px solid var(--sand); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); overflow: hidden; }
.highlight { padding: 26px 24px; display: flex; align-items: center; gap: 14px; border-right: 1px solid #f4ecd9; }
.highlight:last-child { border-right: none; }
.highlight .ic { flex: none; width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.ic-sea { background: var(--sea-tint); color: var(--sea); }
.ic-sun { background: var(--cream-2); color: var(--sun-deep); }
.ic-coral { background: #ffe9e2; color: var(--coral); }
.highlight b { display: block; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); }
.highlight span { font-size: 13.5px; color: #6b7a80; font-weight: 600; }

/* ---------- Split (testo + immagine) ---------- */
.split { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 8vw, 110px) 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 68px); align-items: center; }
.split__media { position: relative; }
.split__media .main { border-radius: 28px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(20,50,60,.5); aspect-ratio: 4/3; }
.split__media .main img { width: 100%; height: 100%; object-fit: cover; }
.split__media .badge { position: absolute; bottom: -24px; left: -24px; width: 150px; height: 150px; border-radius: 26px; overflow: hidden; border: 6px solid var(--cream); box-shadow: 0 20px 40px -20px rgba(20,50,60,.5); }
.split__media .badge img { width: 100%; height: 100%; object-fit: cover; }
.split__media .dot-deco { position: absolute; top: -22px; right: -14px; width: 70px; height: 70px; border-radius: 50%; background: var(--sun); opacity: .9; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chip { font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; }
.chip-sun { background: var(--cream-2); color: #8a6410; }
.chip-sea { background: var(--sea-tint); color: var(--sea); }
.chip-coral { background: #ffe9e2; color: #c9502e; }
.prose { font-size: 17.5px; line-height: 1.7; color: #4c5a61; font-weight: 500; margin: 22px 0 0; }

/* ---------- Card con immagine di sfondo ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 46px; }
.tile { position: relative; border-radius: 24px; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 24px 48px -30px rgba(20,50,60,.5); background: var(--sea-deep); transition: transform .25s ease; }
.tile:hover { transform: translateY(-6px); }
.tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,50,60,.05) 0%, rgba(14,50,60,.35) 45%, rgba(14,50,60,.9) 100%); }
.tile__body { position: relative; padding: 26px; }
.tile__ic { width: 52px; height: 52px; border-radius: 15px; background: rgba(255,255,255,.18); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.tile h3 { font-size: 22px; color: #fff; margin: 16px 0 7px; text-shadow: 0 2px 12px rgba(10,30,38,.5); }
.tile p { font-size: 14.5px; line-height: 1.55; color: #eef7f8; font-weight: 500; margin: 0; text-shadow: 0 1px 8px rgba(10,30,38,.5); }

/* ---------- Banda mare ---------- */
.band { margin-top: clamp(64px, 8vw, 110px); background: var(--sea); position: relative; overflow: hidden; }
.band .blob-1 { position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(239,174,44,.22); }
.band .blob-2 { position: absolute; bottom: -80px; left: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.08); }
.band__inner { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 7vw, 90px) 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; position: relative; }
.band__media { border-radius: 28px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(0,0,0,.5); aspect-ratio: 16/11; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band .eyebrow { color: var(--sun); }
.band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.08; margin: 14px 0 0; }
.band p { font-size: 17px; line-height: 1.7; color: #dff2f4; font-weight: 500; margin: 20px 0 0; }
.stats { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.stats b { display: block; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 30px; color: var(--sun); }
.stats span { font-size: 14px; color: #cfeaed; font-weight: 600; }
.stats .sep { width: 1px; background: rgba(255,255,255,.25); }

/* ---------- Anteprima camere (home) ---------- */
.rooms-preview { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 8vw, 110px) 24px 0; }
.rooms-preview__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; }
.rooms-preview__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 38px; }
.zone-photo { border-radius: 26px; overflow: hidden; position: relative; box-shadow: 0 24px 48px -30px rgba(20,50,60,.5); aspect-ratio: 16/12; }
.zone-photo img { width: 100%; height: 100%; object-fit: cover; }
.zone-photo__grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,50,60,.82)); }
.zone-photo__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.zone-photo__body h3 { color: #fff; font-size: 24px; margin: 14px 0 6px; }
.zone-photo__body p { color: #eafafc; font-size: 15px; font-weight: 600; margin: 0; }
.tag { font-weight: 800; font-size: 12px; letter-spacing: .06em; padding: 6px 12px; border-radius: 999px; }
.tag-sun { background: var(--sun); color: #4a3708; }
.tag-sea { background: var(--sea); color: #fff; }

/* ---------- Filmstrip gallery (home) ---------- */
.filmstrip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 38px clamp(16px, 5vw, 72px) 30px; }
.filmstrip__item { flex: 0 0 auto; width: clamp(230px, 26vw, 310px); height: clamp(300px, 34vw, 400px); border-radius: 24px; overflow: hidden; cursor: pointer; scroll-snap-align: center; box-shadow: 0 22px 46px -28px rgba(20,50,60,.55); transition: transform .25s ease; }
.filmstrip__item:hover { transform: translateY(-6px); }
.filmstrip__item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Banda CTA (sole) ---------- */
.cta-band { max-width: 1200px; margin: clamp(64px, 8vw, 110px) auto 0; padding: 0 24px; }
.cta-band__inner { background: linear-gradient(120deg, var(--sun), var(--sun-2)); border-radius: 32px; padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band__inner .blob-1 { position: absolute; top: -50px; right: -30px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.28); }
.cta-band__inner .blob-2 { position: absolute; bottom: -70px; right: 120px; width: 130px; height: 130px; border-radius: 50%; background: rgba(14,122,140,.18); }
.cta-band__body { position: relative; max-width: 640px; }
.cta-band h2 { color: #3f2f06; font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
.cta-band p { font-size: 18px; line-height: 1.6; color: #5c4712; font-weight: 600; margin: 18px 0 0; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ==========================================================================
   HERO INTERNI (banner pagine)
   ========================================================================== */
.page-hero { position: relative; padding: clamp(56px, 8vw, 100px) 24px; background-size: cover; background-position: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,58,71,.32), rgba(14,58,71,.72)); }
.page-hero__inner { position: relative; max-width: 1200px; margin: 0 auto; }
.page-hero .tag-light { display: inline-block; background: rgba(255,251,243,.9); color: var(--sea); font-weight: 800; font-size: 12.5px; letter-spacing: .1em; padding: 7px 14px; border-radius: 999px; text-transform: uppercase; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 62px); line-height: 1.04; margin: 16px 0 0; max-width: 18ch; text-shadow: 0 4px 24px rgba(10,30,38,.4); }
.page-hero p { color: #eafafc; font-size: 18px; font-weight: 600; max-width: 52ch; margin: 18px 0 0; text-shadow: 0 2px 12px rgba(10,30,38,.5); }

/* ==========================================================================
   CAMERE
   ========================================================================== */
.type-head { display: flex; align-items: center; gap: 14px; margin: 44px 0 22px; }
.type-head .ic { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex: none; color: #fff; }
.type-head .ic.sun { background: var(--sun); }
.type-head .ic.sea { background: var(--sea); }
.type-head h3 { font-size: 24px; color: var(--ink); }
.type-head .line { height: 1px; flex: 1; background: #efe2c6; }
.rooms-list { display: flex; flex-direction: column; gap: 22px; }
.room-card { background: #fff; border: 1px solid var(--sand); border-radius: 26px; overflow: hidden; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); box-shadow: 0 20px 44px -32px rgba(20,50,60,.5); }
.room-card__media { position: relative; min-height: 250px; }
.room-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-card--flip .room-card__media { order: 2; }
.room-card--flip .room-card__body { order: 1; }
.room-card__body { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; }
.room-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.room-card__head h4 { font-size: clamp(22px, 2.6vw, 28px); color: var(--ink); }
.pill { font-weight: 700; font-size: 12.5px; padding: 6px 13px; border-radius: 999px; }
.pill-sea { background: var(--sea-tint); color: var(--sea); }
.pill-sun { background: var(--cream-2); color: #8a6410; }
.room-card__desc { font-size: 15.5px; line-height: 1.62; color: var(--muted); font-weight: 500; margin: 13px 0 20px; }
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 11px 18px; margin-bottom: 24px; list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #3b4a51; font-weight: 600; }
.feature-list svg { flex: none; }
.room-card .btn { align-self: flex-start; margin-top: auto; }

/* Le due zone */
.zone-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.zone-card { background: #fff; border: 1px solid var(--sand); border-radius: 28px; overflow: hidden; box-shadow: 0 24px 50px -32px rgba(20,50,60,.55); }
.zone-card__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.zone-card__media img { width: 100%; height: 100%; object-fit: cover; }
.zone-card__media .tag { position: absolute; top: 16px; left: 16px; }
.zone-card__body { padding: 30px; }
.zone-card__body h3 { font-size: 25px; color: var(--ink); margin: 0 0 10px; }
.zone-card__body p { font-size: 16px; line-height: 1.65; color: var(--muted); font-weight: 500; margin: 0; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.zone-tags .pill-neutral { background: #f4ecd9; color: #6b5a2e; font-weight: 700; font-size: 13.5px; padding: 8px 14px; border-radius: 999px; }

/* Formule */
.formule { background: var(--sea); border-radius: 28px; padding: clamp(30px, 4vw, 52px); position: relative; overflow: hidden; }
.formule .blob { position: absolute; top: -40px; right: -40px; width: 170px; height: 170px; border-radius: 50%; background: rgba(239,174,44,.2); }
.formule h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin: 0 0 6px; position: relative; }
.formule > .container-lead { color: #cfeaed; font-weight: 600; margin: 0 0 28px; position: relative; }
.formule__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; position: relative; }
.formula { background: rgba(255,255,255,.1); border-radius: 18px; padding: 24px; }
.formula .ic { display: inline-flex; width: 40px; height: 40px; border-radius: 12px; background: var(--sun); align-items: center; justify-content: center; margin-bottom: 14px; color: #4a3708; }
.formula h4 { font-size: 19px; color: #fff; margin: 0 0 6px; }
.formula p { font-size: 14.5px; line-height: 1.55; color: #dff2f4; font-weight: 500; margin: 0; }

/* Nota / callout crema */
.callout { background: var(--cream-2); border-radius: 24px; padding: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.callout h3 { font-size: 24px; color: #3f2f06; margin: 0 0 6px; }
.callout p { font-size: 16px; color: #6b5a2e; font-weight: 600; margin: 0; }

/* ==========================================================================
   VILLAGGIO
   ========================================================================== */
.intro-lead { max-width: 1000px; margin: 0 auto; padding: clamp(56px, 7vw, 90px) 24px 0; text-align: center; }
.intro-lead p { font-size: clamp(19px, 2.4vw, 26px); line-height: 1.55; color: #3b4a51; font-weight: 600; font-family: 'Fredoka', sans-serif; margin: 0; }
.two-cards { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.info-card { background: #fff; border: 1px solid var(--sand); border-radius: 26px; overflow: hidden; box-shadow: 0 20px 44px -30px rgba(20,50,60,.5); }
.info-card__media { aspect-ratio: 16/10; overflow: hidden; }
.info-card__media img { width: 100%; height: 100%; object-fit: cover; }
.info-card__body { padding: 28px; }
.info-card__body h3 { font-size: 23px; color: var(--ink); margin: 16px 0 8px; }
.info-card__body p { font-size: 16px; line-height: 1.65; color: var(--muted); font-weight: 500; margin: 0; }
.trio { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.trio .tile { min-height: 300px; }
.contrade-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 40px; }
.contrada { background: #fff; border: 1px solid var(--sand); border-radius: 20px; padding: 24px; box-shadow: 0 16px 36px -30px rgba(20,50,60,.5); transition: transform .2s ease; }
.contrada:hover { transform: translateY(-4px); }
.contrada .ic { display: inline-flex; width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--sun-deep); align-items: center; justify-content: center; margin-bottom: 14px; }
.contrada h4 { font-size: 18.5px; color: var(--ink); margin: 0 0 6px; }
.contrada p { font-size: 14.5px; line-height: 1.55; color: var(--muted); font-weight: 500; margin: 0; }

/* Banda scura CTA */
.dark-cta { max-width: 1200px; margin: clamp(56px, 7vw, 90px) auto 0; padding: 0 24px; }
.dark-cta__inner { background: var(--ink); border-radius: 30px; padding: clamp(36px, 5vw, 60px); text-align: center; }
.dark-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.dark-cta .row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.btn-line { background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-line:hover { border-color: var(--sun); color: var(--sun); }

/* ==========================================================================
   SERVIZI
   ========================================================================== */
.services-grid { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 7vw, 90px) 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.service-card { background: #fff; border: 1px solid var(--sand); border-radius: 26px; overflow: hidden; box-shadow: 0 20px 44px -32px rgba(20,50,60,.5); transition: transform .2s ease; }
.service-card:hover { transform: translateY(-5px); }
.service-card__media { aspect-ratio: 16/10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 26px 26px 30px; }
.service-card__body h3 { font-size: 22px; color: var(--ink); margin: 0 0 10px; }
.service-card__body p { font-size: 15.5px; line-height: 1.65; color: var(--muted); font-weight: 500; margin: 0; }
.amenities-band { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 24px 0; }
.amenities { background: var(--sea); border-radius: 30px; padding: clamp(32px, 5vw, 54px); position: relative; overflow: hidden; }
.amenities .blob { position: absolute; top: -40px; right: -40px; width: 170px; height: 170px; border-radius: 50%; background: rgba(239,174,44,.2); }
.amenities h2 { color: #fff; font-size: clamp(24px, 3.2vw, 38px); margin: 0 0 8px; position: relative; }
.amenities > p { color: #cfeaed; font-weight: 600; margin: 0 0 28px; position: relative; }
.amenities__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; position: relative; }
.amenity { display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.1); border-radius: 14px; padding: 13px 16px; color: #eafafc; font-size: 14.5px; font-weight: 600; }
.amenity svg { flex: none; }

/* ==========================================================================
   GALLERY (masonry)
   ========================================================================== */
.masonry { max-width: 1200px; margin: 0 auto; padding: clamp(36px, 4vw, 56px) 24px 0; columns: 4 250px; column-gap: 16px; }
.masonry__item { break-inside: avoid; margin: 0 0 16px; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: 0 14px 34px -24px rgba(20,50,60,.6); transition: transform .2s ease; }
.masonry__item:hover { transform: scale(1.015); }
.masonry__item img { width: 100%; height: auto; }

/* ==========================================================================
   CONTATTI
   ========================================================================== */
.contact-grid { max-width: 1200px; margin: 0 auto; padding: clamp(40px, 5vw, 64px) 24px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: start; }
.contact-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--sand); border-radius: 20px; padding: 22px; box-shadow: 0 16px 34px -30px rgba(20,50,60,.5); }
.contact-card .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.contact-card small { display: block; font-size: 12.5px; color: #8a97a0; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.contact-card b { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); }
.map { max-width: 1200px; margin: clamp(24px, 3vw, 36px) auto 0; padding: 0 24px; }
.map__frame { border-radius: 22px; overflow: hidden; border: 1px solid var(--sand); box-shadow: 0 16px 34px -30px rgba(20,50,60,.5); height: 360px; }
.map__frame iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   MODULO PREVENTIVO
   ========================================================================== */
.preventivo { background: #eef6f7; border-top: 1px solid #e3eef0; margin-top: clamp(64px, 8vw, 110px); scroll-margin-top: 88px; }
.preventivo .container { padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px); }
.preventivo .section-head { margin-bottom: 34px; }
.preventivo__box { background: #fff; border: 1px solid #e3eef0; border-radius: 26px; padding: clamp(16px, 2.4vw, 28px); box-shadow: 0 30px 60px -38px rgba(20,50,60,.5); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--sea-deep); color: #cfe3e6; }
.site-footer__grid { padding: clamp(48px, 6vw, 80px) 24px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-logo { display: inline-flex; background: #fff; border-radius: 16px; padding: 12px 16px; }
.footer-logo img { height: 46px; width: auto; }
.footer-about { font-size: 14.5px; line-height: 1.6; color: #a9c6cb; font-weight: 500; margin: 18px 0 0; max-width: 32ch; }
.site-footer h4 { color: #fff; font-size: 16px; margin: 0 0 16px; }
.footer-links, .footer-contacts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-contacts a { color: #cfe3e6; font-size: 14.5px; font-weight: 600; }
.footer-links a:hover, .footer-contacts a:hover { color: var(--sun); }
.footer-contacts li { color: #a9c6cb; font-size: 14.5px; font-weight: 600; }
.footer-cir { color: #7fa1a7 !important; font-size: 13px !important; }
.site-footer .btn { margin-top: 4px; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar-inner { padding: 22px 24px; display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between; font-size: 13px; color: #89a8ad; font-weight: 500; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: #89a8ad; }
.footer-legal a:hover { color: var(--sun); }

/* ==========================================================================
   BARRA CTA MOBILE
   ========================================================================== */
.bottom-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; gap: 10px; padding: 11px 14px calc(11px + env(safe-area-inset-bottom)); background: rgba(255,251,243,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--sand); box-shadow: 0 -10px 26px -14px rgba(20,50,60,.4); }
.bottom-bar .btn { flex: 1; padding: 15px 12px; border-radius: 14px; font-size: 16px; }
.bottom-bar .btn-sun { flex: 1.4; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(11,28,34,.94); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: clamp(16px, 5vw, 72px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-btn { position: absolute; border: none; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-btn:hover { background: var(--sun); color: #4a3708; }
.lb-close { top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; font-size: 26px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 30px; }
.lb-prev { left: clamp(10px, 3vw, 32px); }
.lb-next { right: clamp(10px, 3vw, 32px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .main-nav, .header-actions { display: none; }
    .hamburger { display: flex; }
    .bottom-bar { display: flex; }
    body { padding-bottom: 76px; }
    body.home .site-header:not(.scrolled) .hamburger { background: #fff; color: var(--ink); }
}
@media (max-width: 600px) {
    .split__media .badge { width: 110px; height: 110px; bottom: -16px; left: -12px; }
    .masonry { columns: 2 150px; }
}
