/* ============================================================
   GARDA ESSENCE — BOUTIQUE OVERRIDE
   Style: H6 Boutique (Cormorant italic + gradient border)
   Palette: Primary Blue #3091F5 · Orange #E47212 · Secondary Blue #226BD3
            Warm Beige #EFDEC6 · Warm Gray #E9E6DF · Taupe #B7B0A6
   Typography: Cormorant (headings) + Montserrat (body/nav)
   UI: Minimal White — clean, airy, luxury
   ============================================================ */

/* ── DESIGN TOKENS OVERRIDE ── */
:root {
    --primary:        #3091F5;
    --secondary:      #226BD3;
    --accent:         #E47212;
    --accent-lt:      #EFDEC6;
    --cta:            #E47212;
    --dark:           #1A2E4A;
    --text-primary:   #1E293B;
    --text-secondary: rgba(0,0,0,0.75);
    --surface:        #FFFFFF;
    --surface-variant:#E9E6DF;
    --surface-variant-2: #E9E6DF;
    --border-color:   #E9E6DF;

    --font-serif:     'Cormorant', 'Georgia', serif;
    --font-sans:      'Montserrat', 'Segoe UI', sans-serif;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.07);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.09);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.13);
    --shadow-xl:  0 24px 60px rgba(0,0,0,0.16);

    --radius-lg:  16px;
    --radius-xl:  24px;

    /* Legacy compat */
    --primary-blue:   #3091F5;
    --secondary-teal: #226BD3;
}

/* ── TYPOGRAPHY OVERRIDE ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-primary);
}

h1 {
    font-weight: 300;
    letter-spacing: 0.04em;
    word-spacing: normal;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
    font-weight: 400;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: 0.03em;
    word-spacing: normal;
}

h3 {
    font-weight: 400;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-primary);
}

/* ── SCROLL REVEAL EFFECT (all section titles/subtitles) ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
                transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── TOP BAR ── */
.top-bar {
    background: #B7B0A6;
    color: #fff;
    text-align: center;
    padding: 7px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.top-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.top-bar a:hover { border-bottom-color: #fff; }

/* ── BOUTIQUE HEADER (H6 STYLE) ── */

/* Override Bootstrap sticky-top inline style */
.sticky-top {
    background: #FFFFFF !important;
    border-bottom: none !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Gradient bottom border — Orange → Light Blue → Deep Blue */
.sticky-top::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: #B7B0A6;
}

/* Nav container — identico all'originale */
.nav-container {
    min-height: 90px !important;
}

/* Logo — dimensioni originali esatte */
.logo-nav,
.logo-nav[style] {
    height: 70px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .logo-nav,
    .logo-nav[style] { height: 78px !important; }
    .nav-logo { margin-left: 16px !important; }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .logo-nav,
    .logo-nav[style] { height: 91px !important; }
    .nav-logo { margin-left: 16px !important; }
}

@media (min-width: 1024px) {
    .logo-nav,
    .logo-nav[style] { height: 124px !important; }
    .nav-logo {
        margin-left: 100px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .nav-menu {
        margin-right: 100px !important;
    }
}

/* Nav links — Cormorant serif, stessa dimensione del Playfair originale */
.nav-link,
.nav-link[style] {
    font-family: 'Cormorant', 'Georgia', serif !important;
    font-size: 1.58rem !important;
    font-weight: 700 !important;
    font-style: normal !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    color: #1E293B !important;
    text-decoration: none !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
    transition: color 0.2s ease, border-bottom-color 0.2s ease !important;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #3091F5 !important;
    border-bottom-color: #E47212 !important;
    text-decoration: none !important;
}

/* Diamond separators between nav items */
.nav-sep {
    list-style: none;
    color: #E47212;
    font-size: 0.42rem;
    display: flex;
    align-items: center;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
    padding: 0 2px;
}

/* Push nav text down ~20% from vertical center */
@media (min-width: 769px) {
    .nav-item,
    .nav-sep,
    .lang-switch { padding-top: 16px !important; }
}

@media (max-width: 768px) {
    .nav-sep { display: none !important; }
}

/* CTA button — orange pill, stands out as action */
.nav-cta,
.nav-cta-item .nav-cta {
    display: inline-flex !important;
    align-items: center;
    padding: 9px 22px !important;
    background: #E47212 !important;
    color: white !important;
    border: none !important;
    border-radius: 9999px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    z-index: auto !important;
}

.nav-cta:hover {
    background: #3091F5 !important;
    color: white !important;
}

/* ── HERO SECTION ── */
.hero-section {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.hero-header h1 {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    color: #1A2E4A;
}

.hero-header p,
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #1E293B;
    font-weight: 300;
    letter-spacing: 0.04em;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── ROOM CARDS — Luxury Gold Border ── */
.room-card {
    background: #FFFFFF;
    border: 1px solid #E47212;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(228,114,18,0.08);
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    box-shadow: 0 12px 48px rgba(228,114,18,0.18);
    transform: translateY(-5px);
    border-color: #C95F0B;
}

.room-card:focus-within { outline: 2px solid #3091F5; outline-offset: 3px; }

.room-image { position: relative; overflow: hidden; }
.room-image img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-image img { transform: scale(1.05); }

.room-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #1A2E4A;
    color: white;
    padding: 5px 12px;
    border-radius: 9999px;
}

.room-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.room-body h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #1A2E4A;
    margin-bottom: 4px;
}

.room-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E47212 !important;
    margin-bottom: 10px;
}

.room-desc {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.75);
    line-height: 1.7;
    margin-bottom: 16px;
}

.room-price {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1A2E4A;
    margin-bottom: 16px;
    margin-top: auto;
}

.room-price span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: #94A3B8;
    font-weight: 400;
}

/* ── BUTTONS ── */
.btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    padding: 12px 28px !important;
    border-radius: 9999px !important;
    border: none !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    min-height: 44px;
}

.btn-primary,
a.btn-primary,
a.btn[href] {
    background: #3091F5 !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(34,107,211,0.2);
}

.btn-primary:hover,
a.btn-primary:hover,
a.btn[href]:hover {
    background: #1A2E4A !important;
    color: white !important;
    box-shadow: 0 8px 24px rgba(26,46,74,0.25);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.btn-primary:focus-visible {
    outline: 2px solid #3091F5;
    outline-offset: 3px;
}

/* CTA link button in room detail pages */
a.btn[style*="background: white"] {
    background: white !important;
    color: #3091F5 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    border-radius: 9999px !important;
    text-decoration: none !important;
}

/* ── PAGE HEADER (section.page-header) ── */
.page-header {
    background: #E9E6DF;
    border-bottom: 1px solid #E9E6DF;
    padding: 48px 0 40px;
    margin-top: 0 !important;
}

.page-header h1 {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #1A2E4A;
    margin-bottom: 12px;
    word-spacing: normal;
}

.page-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #1E293B;
    max-width: 600px;
    line-height: 1.75;
}

/* ── FEATURE CARDS (room detail pages) ── */
.feature-card {
    background: #E9E6DF;
    border-radius: 12px;
    border: 1px solid #E9E6DF;
    border-left: 3px solid #E47212 !important;
    padding: 20px;
    transition: box-shadow 0.2s ease;
}

.feature-card:hover { box-shadow: var(--shadow-md); }

.feature-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E47212 !important;
    margin-bottom: 6px;
}

.feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: #1E293B;
    font-weight: 400;
}

/* ── PRICING CARD (room detail sidebar) ── */
.pricing-card {
    background: linear-gradient(135deg, #1A2E4A 0%, #3091F5 100%) !important;
    color: white;
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(228,114,18,0.3);
    box-shadow: 0 8px 32px rgba(34,107,211,0.2);
}

.pricing-card .price {
    font-family: 'Cormorant', serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pricing-card p {
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

/* ── COLOUR BLOCK — animated gradient CTA section ── */
@keyframes colourBlockShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.colour-block {
    padding: 80px 0;
    background: linear-gradient(-45deg, #E47212, #226BD3, #3091F5, #1A2E4A, #E47212);
    background-size: 400% 400%;
    animation: colourBlockShift 12s ease infinite;
    color: white;
    text-align: center;
}

.colour-block h2,
.colour-block h3 {
    color: white !important;
    font-family: 'Cormorant', serif !important;
    font-weight: 300 !important;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    margin-bottom: 0.8rem !important;
    letter-spacing: 0.05em !important;
}

.colour-block p {
    color: rgba(255,255,255,0.88) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    max-width: 560px;
    margin: 0 auto 2rem auto !important;
}

.btn-white {
    display: inline-block;
    background: white !important;
    color: #3091F5 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 14px 32px !important;
    border-radius: 9999px !important;
    text-decoration: none !important;
    transition: all 0.22s ease !important;
    margin: 4px 8px !important;
}

.btn-white:hover {
    background: #EFDEC6 !important;
    color: #3091F5 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18) !important;
    text-decoration: none !important;
}

/* ── GALLERY BENTO GRID (replaces rAF carousel in room pages) ── */
.room-gallery-bento {
    margin-bottom: 3rem;
}

.rg-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: row dense;
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.rg-bento-item {
    position: relative;
    overflow: hidden;
    background: #E9E6DF;
    cursor: pointer;
}

.rg-bento-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.rg-bento-item:hover img { transform: scale(1.07); }

.rg-bento-item:focus-visible {
    outline: 2px solid #3091F5;
    outline-offset: 2px;
    z-index: 1;
}

/* Horizontal/landscape image: span 2 columns */
.rg-bento-h { grid-column: span 2; }

/* Portrait/vertical image: 1 column, taller row */
.rg-bento-v { grid-row: span 1; }

@media (max-width: 900px) {
    .rg-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .rg-bento-h { grid-column: span 2; }
    .rg-bento-v { grid-column: span 1; }
}

@media (max-width: 540px) {
    .rg-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 4px; }
    .rg-bento-h { grid-column: span 2; }
}

/* ── FORM INPUTS (contact page) ── */
.form-group { margin-bottom: 20px; }

.form-group label,
label[for] {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B7B0A6;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #1E293B;
    background: #FFFFFF;
    border: 1.5px solid #E9E6DF;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #3091F5;
    box-shadow: 0 0 0 3px rgba(34,107,211,0.1);
}

input::placeholder, textarea::placeholder { color: #94A3B8; }

textarea { min-height: 120px; resize: vertical; }

/* ── SECTION HEADINGS — with label style ── */
.section-subheading,
.section-label-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E47212;
    margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-item {
    background: #E9E6DF !important;
    border-radius: 12px !important;
    border: 1px solid #E9E6DF !important;
    border-left: 3px solid #E47212 !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 24px !important;
    transition: box-shadow 0.2s ease, border-left-color 0.2s ease !important;
    transform: none !important;
}

.faq-item:hover {
    box-shadow: 0 4px 18px rgba(228,114,18,0.13) !important;
    border-left-color: #C95F0B !important;
    transform: none !important;
    background: #FFF5EC !important;
}

.faq-item h3 {
    font-family: 'Cormorant', serif !important;
    font-weight: 400 !important;
    font-size: 1.18rem !important;
    color: #1A2E4A !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.02em !important;
}

.faq-item p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.84rem !important;
    color: rgba(0,0,0,0.75) !important;
    line-height: 1.75 !important;
    margin: 0 !important;
}

/* ── CONTACT INFO ── */
.contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E47212;
    margin-bottom: 6px;
}

/* ── FOOTER ── */
footer,
.footer {
    background: #1A2E4A;
    color: rgba(255,255,255,0.7);
}

footer h3, footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E47212;
}

footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer a:hover { color: white; }

/* ── GALLERY INDEX (homepage scroll gallery) ── */
.photo-gallery-section {
    background: white !important;
}

.gallery-carousel {
    background: white !important;
}

.gallery-item {
    flex: 0 0 520px !important;
    aspect-ratio: 16/10 !important;
    min-height: auto !important;
    overflow: hidden;
    background: transparent !important;
}

/* Alternate odd items to portrait orientation for visual interest */
.gallery-item:nth-child(odd) {
    flex: 0 0 325px !important;
    aspect-ratio: 10/16 !important;
}

.gallery-item img,
.gallery-item picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Alternate object-position for visual variety */
.gallery-item:nth-child(1) img { object-position: center; }
.gallery-item:nth-child(2) img { object-position: top; }
.gallery-item:nth-child(3) img { object-position: bottom; }
.gallery-item:nth-child(4) img { object-position: left; }
.gallery-item:nth-child(5) img { object-position: right; }
.gallery-item:nth-child(6) img { object-position: top left; }
.gallery-item:nth-child(7) img { object-position: top right; }
.gallery-item:nth-child(8) img { object-position: bottom left; }
.gallery-item:nth-child(9) img { object-position: bottom right; }
.gallery-item:nth-child(10) img { object-position: center; }
.gallery-item:nth-child(11) img { object-position: top; }
.gallery-item:nth-child(12) img { object-position: bottom; }
.gallery-item:nth-child(13) img { object-position: left; }
.gallery-item:nth-child(14) img { object-position: right; }
.gallery-item:nth-child(15) img { object-position: top left; }

.gallery-item img:hover,
.gallery-item picture img:hover {
    opacity: 0.9;
}

/* ── GALLERY LIGHTBOX ── */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/10;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ── ROOM HERO (detail page) ── */
.room-hero {
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: var(--shadow-lg) !important;
}

/* ── BREADCRUMB ── */
nav[aria-label="breadcrumb"] a,
section[style*="border-bottom"] a {
    color: #E47212 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    text-decoration: none;
}

/* ── COOKIE BANNER ── */
#cookieBanner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9998;
    background: #1A2E4A;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 26px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookieBanner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

#cookieBanner .cookie-text {
    margin: 0;
    flex: 1;
    min-width: 240px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
}

#cookieBanner .cookie-text a {
    color: #E47212;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#cookieBanner .cookie-text a:hover { color: #FFFFFF; }

#cookieBanner .cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

#cookieBanner button {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

#acceptCookies {
    background: #E47212;
    color: #FFFFFF;
    border: 2px solid #E47212;
}

#acceptCookies:hover { background: #C25F0B; border-color: #C25F0B; }

#rejectCookies {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 2px solid rgba(255,255,255,0.3);
}

#rejectCookies:hover { color: #FFFFFF; border-color: rgba(255,255,255,0.7); }

@media (max-width: 640px) {
    #cookieBanner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px 20px;
        gap: 16px;
    }
    #cookieBanner .cookie-actions { width: 100%; }
    #cookieBanner button { flex: 1; padding: 12px 16px; }
}

/* ── SPLASH SCREEN — keep as-is, just color update ── */
/* no change needed */

/* ── UTILITY ── */
.text-gold { color: #E47212; }
.text-muted { color: #B7B0A6; }

/* ── FEATURES SECTION — White + Lucide Icons (cream style) ── */
.features-category {
    border-top: 1px solid #E9E6DF !important;
    padding-top: 36px !important;
    margin-top: 36px !important;
}

.features .features-category:first-of-type {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.category-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.58rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.26em !important;
    text-transform: uppercase !important;
    color: #E47212 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
}

.category-title svg {
    width: 13px;
    height: 13px;
    stroke: #E47212;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.amenity-icon {
    font-size: 0 !important;
    line-height: 0 !important;
    color: #E47212 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 10px !important;
    background: rgba(228,114,18,0.10) !important;
    border-radius: 12px !important;
    transition: background 0.2s !important;
}

.amenity:hover .amenity-icon {
    background: rgba(228,114,18,0.20) !important;
}

.amenity-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #E47212 !important;
    stroke-width: 1.5 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.amenity-name {
    color: #1E293B !important;
    font-size: 0.70rem !important;
    font-weight: 500 !important;
}

/* Persona icons */
.persona-icon {
    font-size: 0 !important;
    line-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 56px !important;
    height: 56px !important;
    background: #EFDEC6 !important;
    border-radius: 14px !important;
    margin: 0 auto 16px !important;
}

.persona-icon svg {
    width: 26px !important;
    height: 26px !important;
    stroke: #E47212 !important;
    stroke-width: 1.5 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Trust icons */
.trust-icon {
    font-size: 0 !important;
    line-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 56px !important;
    height: 56px !important;
    background: #EFDEC6 !important;
    border-radius: 50% !important;
    margin: 0 auto 12px !important;
}

.trust-icon svg {
    width: 24px !important;
    height: 24px !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Review stars — unicode ★ orange */
.review-stars {
    color: #E47212 !important;
    font-size: 0.78rem !important;
    letter-spacing: 3px !important;
    font-family: serif !important;
}

/* ── FOOTER EDITORIAL SPLIT ── */
footer.footer-edit {
    background: transparent;
    color: inherit;
    display: flex;
    min-height: 260px;
}

.footer-edit-dark {
    flex: 1;
    background: #1A2E4A;
    padding: 56px 64px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.footer-edit-light {
    flex: 1;
    background: #E9E6DF;
    border-top: 4px solid #E47212;
    padding: 56px 40px 40px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.fe-brand {
    font-family: 'Cormorant', serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: white;
    line-height: 1.05;
}

.fe-brand-gold { color: #E47212; }

.fe-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
}

.fe-dark-bottom { display: flex; flex-direction: column; gap: 12px; }

.fe-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    list-style: none;
}

.fe-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.fe-links a:hover { color: #E47212; }

.fe-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.64rem;
    color: rgba(255,255,255,0.2);
}

.fe-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #E47212;
    margin-bottom: 16px;
}

.fe-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 36px;
}

.fe-info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 4px;
}

.fe-info-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.80rem;
    color: #1E293B;
    text-decoration: none;
    display: block;
    line-height: 1.5;
}

a.fe-info-val:hover { color: #E47212; }

.fe-light-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fe-light-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.64rem;
    color: #94A3B8;
    text-decoration: none;
}

a.fe-light-copy:hover { color: #1A2E4A; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
    /* Nav dropdown: top:70px overlaps header (nav-container is 84px tall).
       top:100% places dropdown flush below nav, no overlap. */
    .nav-menu {
        top: 100% !important;
        box-shadow: 0 8px 28px rgba(0,0,0,0.10) !important;
        border-top: 1px solid #E9E6DF !important;
    }

    /* Nav links in mobile dropdown: keep readable but not oversized */
    .nav-link {
        font-size: 1.38rem !important;
        padding-top: 0 !important;
    }

    /* Colour-block: 80px vertical is too much on small screens */
    .colour-block {
        padding: 52px 0 !important;
    }

    /* btn-white: stack nicely on mobile */
    .btn-white {
        display: block !important;
        width: calc(100% - 32px) !important;
        max-width: 280px !important;
        margin: 8px auto !important;
        text-align: center !important;
    }

    /* FAQ section: 100px too much on mobile */
    .faq-section {
        padding: 60px 0 !important;
    }

    /* Fix: style.css @max-width:768px forces repeat(3,1fr) — schiaccia le card.
       Solo @max-width:480px correggeva a 1fr. Override per tutto mobile ≤768px. */
    .cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* FAQ grid gap reduction on mobile */
    .faq-grid {
        gap: 16px !important;
        margin-top: 2rem !important;
    }

    /* Page header: tighter padding on mobile */
    .page-header {
        padding: 32px 0 28px !important;
    }

    /* Footer editorial split: stack vertically on mobile */
    footer.footer-edit { flex-direction: column; }
    .footer-edit-dark { padding: 44px 28px 36px; gap: 24px; }
    .footer-edit-light { padding: 36px 28px 40px; gap: 24px; border-top-width: 3px; }
    .fe-brand { font-size: 2rem; }
    .fe-info-grid { grid-template-columns: 1fr; gap: 16px; }
    .fe-light-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* Scrollbar (Webkit) */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #E9E6DF; }
::-webkit-scrollbar-thumb { background: #B7B0A6; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #226BD3; }

/* ── CREDITO REALIZZAZIONE ── */
.fe-credit-band {
    background: #14243A;
    padding: 14px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fe-credit-band span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}

.fe-credit-band a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E47212;
    text-decoration: none;
    transition: color 0.2s;
}

.fe-credit-band a:hover { color: #FFFFFF; }
