/* ============================================================
   AmaRia City AL — Folha de Estilos Principal
   Paleta: Navy #1B2A6B | Gold #C9A96E | White | Gray
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    --navy:        #1B2A6B;
    --navy-dark:   #141f52;
    --navy-light:  #2A3F8F;
    --gold:        #C9A96E;
    --gold-light:  #E2C99A;
    --white:       #FFFFFF;
    --off-white:   #F8F9FC;
    --light-gray:  #F0F2F7;
    --mid-gray:    #A0AEC0;
    --dark:        #2D3748;
    --text:        #4A5568;
    --green:       #48BB78;
    --red:         #F56565;
    --wa-green:    #25D366;

    --shadow-sm:   0 2px 8px rgba(27,42,107,.10);
    --shadow-md:   0 6px 24px rgba(27,42,107,.14);
    --shadow-lg:   0 12px 40px rgba(27,42,107,.18);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  .3s ease;
}

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

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.2; }

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-reservar {
    background: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .5px;
    transition: all var(--transition);
}
.btn-reservar:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--white); }

.btn-whatsapp {
    background: var(--wa-green);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    transition: all var(--transition);
}
.btn-whatsapp:hover { background: #1fbb5a; transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ── Section Base ──────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header p {
    color: var(--text);
    margin-top: 12px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    background: rgba(27,42,107,.08);
    color: var(--navy);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ── Scroll Animations ─────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos].is-visible   { opacity: 1; transform: translate(0); }

[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo .logo-img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}
.navbar.scrolled .nav-logo .logo-img { filter: none; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .3px;
    color: rgba(255,255,255,.9);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}
.navbar.scrolled .nav-link { color: var(--dark); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -10%;
    background: url('../images/11.png') center/cover no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(27,42,107,.75) 0%,
        rgba(27,42,107,.55) 50%,
        rgba(0,0,0,.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 860px;
    animation: heroIn .9s ease both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(201,169,110,.25);
    border: 1px solid rgba(201,169,110,.5);
    color: var(--gold-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-subtitle {
    color: rgba(255,255,255,.88);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { color: var(--text); margin-bottom: 16px; }

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy);
}
.highlight-item i { color: var(--gold); font-size: 1.1rem; width: 20px; text-align: center; }

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
}
.license-badge i { color: var(--gold); }

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-img-main img    { height: 420px; }
.about-img-secondary img { height: 200px; align-self: end; }

/* ============================================================
   APARTMENT / CAROUSEL
   ============================================================ */
.apartamento-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 56px;
}

.apartamento-swiper .swiper-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.apartamento-swiper .swiper-button-next,
.apartamento-swiper .swiper-button-prev {
    color: var(--white);
    background: rgba(27,42,107,.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background var(--transition);
}
.apartamento-swiper .swiper-button-next:hover,
.apartamento-swiper .swiper-button-prev:hover { background: var(--navy); }
.apartamento-swiper .swiper-button-next::after,
.apartamento-swiper .swiper-button-prev::after { font-size: 16px; font-weight: 900; }

.apartamento-swiper .swiper-pagination-bullet { background: var(--white); opacity: .6; }
.apartamento-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

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

.amenities-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--navy);
}
.section-alt .amenities-col { background: var(--white); }

.amenities-col h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-gray);
}

.amenities-list { display: flex; flex-direction: column; gap: 12px; }
.amenities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92rem;
    color: var(--text);
}
.amenities-list li i { color: var(--gold); width: 18px; text-align: center; }

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.calendar-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--text);
    font-weight: 700;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-available { background: var(--green); }
.dot-occupied  { background: var(--red); }
.dot-today     { background: var(--gold); border: 2px solid var(--navy); }

.calendar-loading,
.calendar-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: var(--mid-gray);
    font-size: 1.1rem;
}
.calendar-loading i { font-size: 2rem; color: var(--navy); }
.calendar-error { display: none; }
.calendar-error i { font-size: 2.5rem; color: var(--gold); }
.calendar-error p { color: var(--text); text-align: center; max-width: 400px; }

.calendar-months {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 440px;
    margin: 0 auto;
}

.cal-month {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cal-month-title {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .3px;
}

.cal-day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: rgba(27,42,107,.08);
}
.cal-day-names span {
    text-align: center;
    padding: 8px 4px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 8px;
    background: var(--white);
}

.cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: default;
    transition: all .2s ease;
    position: relative;
}
.cal-blank { background: transparent; }
.cal-past  { color: var(--mid-gray); background: transparent; }
.cal-today {
    background: var(--gold);
    color: var(--white);
    font-weight: 900;
}
.cal-occupied {
    background: #FED7D7;
    color: var(--red);
}
.cal-occupied::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
}
.cal-available {
    background: #C6F6D5;
    color: #276749;
    cursor: pointer;
}
.cal-available:hover {
    background: var(--green);
    color: var(--white);
    transform: scale(1.12);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(72,187,120,.4);
}

.calendar-note {
    text-align: center;
    color: var(--mid-gray);
    font-size: .84rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.calendar-note i { color: var(--navy); }

/* ============================================================
   AVEIRO
   ============================================================ */
.aveiro-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.aveiro-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}
.aveiro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}

.aveiro-card-icon {
    width: 72px;
    height: 72px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--navy);
    transition: all var(--transition);
}
.aveiro-card:hover .aveiro-card-icon {
    background: var(--navy);
    color: var(--white);
}

.aveiro-card h3 { margin-bottom: 12px; }
.aveiro-card p  { font-size: .9rem; color: var(--text); }

.aveiro-itinerary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.aveiro-itinerary h3 {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}
.aveiro-itinerary h3 i { color: var(--gold); }

.itinerary-days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.itinerary-day {
    display: flex;
    gap: 16px;
}

.day-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    line-height: 1.2;
}

.day-content h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--navy);
}
.day-content ul { display: flex; flex-direction: column; gap: 6px; }
.day-content li {
    font-size: .88rem;
    color: var(--text);
    padding-left: 16px;
    position: relative;
}
.day-content li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--gold);
}

.aveiro-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.aveiro-gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}
.aveiro-gallery-img:hover { transform: scale(1.02); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 28px; }

.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.location-detail > i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
}
.location-detail > div { display: flex; flex-direction: column; gap: 4px; }
.location-detail strong { font-size: .9rem; color: var(--navy); font-family: 'Playfair Display', serif; }
.location-detail span   { font-size: .88rem; color: var(--text); }

.nearby-list { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.nearby-list li {
    display: flex;
    justify-content: space-between;
    font-size: .86rem;
    color: var(--text);
    padding: 4px 0;
    border-bottom: 1px dashed var(--light-gray);
    gap: 12px;
}
.nearby-list li span:last-child {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.location-map iframe {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 460px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.overall-rating .stars i { color: var(--gold); font-size: 1.1rem; }

.rating-score {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.rating-label {
    background: #003580;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 3px solid var(--gold);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-stars i { color: var(--gold); font-size: .9rem; }

.review-text {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}
.review-text::before { content: '"'; color: var(--gold); font-size: 1.5rem; font-family: serif; line-height: 0; vertical-align: -10px; margin-right: 2px; }

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
.review-avatar {
    width: 42px;
    height: 42px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-author strong { font-size: .92rem; color: var(--dark); }
.review-author span   { font-size: .78rem; color: var(--mid-gray); display: flex; align-items: center; gap: 4px; }

.reviews-cta { text-align: center; }
.reviews-badges { max-height: 100px; margin: 0 auto; object-fit: contain; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: 'Lato', sans-serif;
    font-size: .92rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,42,107,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-detail > div { display: flex; flex-direction: column; gap: 2px; }
.contact-detail strong { font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .5px; }
.contact-detail a,
.contact-detail span  { color: var(--white); font-size: .92rem; }
.contact-detail a:hover { color: var(--gold-light); }

.booking-platforms { margin-top: 24px; }
.booking-platforms h4 {
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
}
.booking-logos {
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: .88rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-license {
    display: inline-block;
    background: rgba(201,169,110,.2);
    border: 1px solid rgba(201,169,110,.4);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a  { font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p  { font-size: .88rem; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i  { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: .82rem;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom i { color: #e53e3e; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent var(--dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition);
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid      { grid-template-columns: 1fr; gap: 40px; }
    .about-images    { max-width: 560px; margin: 0 auto; }
    .amenities-grid  { grid-template-columns: 1fr 1fr; }
    .aveiro-highlights { grid-template-columns: 1fr 1fr; }
    .aveiro-gallery  { grid-template-columns: 1fr 1fr; }
    .itinerary-days  { grid-template-columns: 1fr; gap: 20px; }
    .location-grid   { grid-template-columns: 1fr; }
    .reviews-grid    { grid-template-columns: 1fr 1fr; }
    .contact-grid    { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .calendar-months { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .section { padding: 64px 0; }

    /* Navbar */
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform .4s ease;
        z-index: 999;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link { font-size: 1.4rem; color: var(--white) !important; }
    .navbar.scrolled .hamburger { z-index: 1001; }
    .hamburger { z-index: 1001; position: relative; }

    /* Hero */
    .hero-btns { flex-direction: column; align-items: center; }

    /* About */
    .about-highlights { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr; }
    .about-img-secondary { display: none; }
    .about-img-main img { height: 280px; }

    /* Carousel */
    .apartamento-swiper .swiper-slide img { height: 280px; }

    /* Amenities */
    .amenities-grid { grid-template-columns: 1fr; }

    /* Calendar */
    .calendar-wrapper { padding: 24px 16px; }
    .calendar-months  { grid-template-columns: 1fr; }

    /* Aveiro */
    .aveiro-highlights { grid-template-columns: 1fr; }
    .aveiro-itinerary  { padding: 24px; }
    .aveiro-gallery    { grid-template-columns: 1fr; }
    .aveiro-gallery-img { height: 200px; }

    /* Location */
    .location-map iframe { height: 300px; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Contact */
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .contact-info-card { padding: 28px 20px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Floating buttons */
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 84px; right: 20px; }
}

@media (max-width: 480px) {
    .calendar-months { grid-template-columns: 1fr; }
    .cal-cell { font-size: .75rem; }
    .hero-content h1 { font-size: 2rem; }
}

/* ============================================================
   ADDITIONS — v2 changes
   ============================================================ */

/* ── Navy action button (RESERVE) ──────────────────────────── */
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ── Section reserve CTA ───────────────────────────────────── */
.section-reserve-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

/* ── Language switcher ─────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-sep {
    color: rgba(255,255,255,.5);
    font-size: .85rem;
}
.navbar.scrolled .lang-sep { color: var(--mid-gray); }

.lang-btn {
    background: none;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    padding: 4px 6px;
    border-radius: 4px;
    transition: all var(--transition);
}
.lang-btn.active {
    color: var(--white);
    background: rgba(255,255,255,.15);
}
.lang-btn:hover { color: var(--white); }
.navbar.scrolled .lang-btn { color: var(--mid-gray); }
.navbar.scrolled .lang-btn.active { color: var(--navy); background: var(--light-gray); }
.navbar.scrolled .lang-btn:hover  { color: var(--navy); }

/* ── About special box ─────────────────────────────────────── */
.about-special-box {
    background: rgba(201,169,110,.08);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin: 20px 0;
}
.about-special-box p {
    color: var(--navy);
    font-style: italic;
    font-size: .95rem;
    margin: 0;
    line-height: 1.65;
}
.about-special-box strong { color: var(--gold); }

/* ── Apartment intro text ──────────────────────────────────── */
.apt-intro {
    text-align: center;
    color: var(--text);
    font-size: 1.05rem;
    max-width: 860px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ── Photo grid (replaces swiper) ─────────────────────────── */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 56px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.photo-cell {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
}
.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.photo-cell:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
    .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── Aveiro intro text ─────────────────────────────────────── */
.aveiro-intro {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto 52px;
    text-align: center;
    line-height: 1.85;
}

/* ── Itinerary footer (suggestions button) ─────────────────── */
.itinerary-footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed rgba(27,42,107,.15);
}

/* ── Aveiro gallery single image ───────────────────────────── */
.aveiro-gallery-single { margin-top: 8px; }
.aveiro-gallery-img-full {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}
.aveiro-gallery-img-full:hover { transform: scale(1.01); }

/* ── Footer complaints link ────────────────────────────────── */
.footer-complaints-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    color: var(--gold-light) !important;
    transition: color var(--transition);
}
.footer-complaints-link:hover { color: var(--white) !important; }

/* ── Modal overlay ─────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20,31,82,.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn .25s ease;
}
.modal-overlay[hidden] { display: none; }

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

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp .3s ease;
    text-align: center;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    margin: 0 auto 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--navy);
}
.modal-content > p {
    color: var(--text);
    font-size: .95rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }

.sugg-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

@media (max-width: 480px) {
    .modal-content { padding: 36px 20px; }
    .photo-grid { gap: 6px; }
}

/* ============================================================
   ADDITIONS — v4 mobile fixes
   ============================================================ */

/* ── Logo mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-logo .logo-img {
        max-height: 45px;
        width: auto;
        object-fit: contain;
    }

    /* General images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Hero text */
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: center; }

    /* About grid */
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-img-main img { max-height: 300px; width: 100%; object-fit: cover; }

    /* Aveiro cards */
    .aveiro-highlights { grid-template-columns: 1fr; }
    .aveiro-card { min-height: 200px; }
    .aveiro-card.card-has-bg { min-height: 220px; }

    /* Apartment swiper — keep aspect-ratio, override fixed height */
    .apartamento-swiper .swiper-slide img { height: 100%; }

    /* Contact grid */
    .contact-grid { grid-template-columns: 1fr; }

    /* Calendar nav label */
    .cal-month-nav-label { min-width: 140px; font-size: 1rem; }

    /* Prevent horizontal overflow */
    .section { overflow-x: hidden; }
    .container { overflow-x: hidden; }
}

/* ============================================================
   ADDITIONS — v3 changes
   ============================================================ */

/* ── Aveiro cards with background image + overlay ──────────── */
.aveiro-card.card-has-bg {
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
}
.aveiro-card.card-has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
    z-index: 0;
}
.aveiro-card.card-has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1;
}
.aveiro-card.card-has-bg:hover::before { transform: scale(1.06); }
.aveiro-card.card-has-bg > * { position: relative; z-index: 2; }
.aveiro-card.card-has-bg .aveiro-card-icon {
    background: rgba(255,255,255,.18);
    color: var(--white);
    border: none;
}
.aveiro-card.card-has-bg h3 { color: var(--white); }
.aveiro-card.card-has-bg p  { color: rgba(255,255,255,.88); }

/* ── Swiper apartment gallery ──────────────────────────────── */
.apartamento-swiper {
    margin-bottom: 56px;
    overflow: hidden;
}
.apartamento-swiper .swiper-slide {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
}
.apartamento-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.apartamento-swiper .swiper-slide:hover img { transform: scale(1.06); }
.apartamento-swiper .swiper-button-prev,
.apartamento-swiper .swiper-button-next {
    color: var(--navy);
    background: rgba(255,255,255,.85);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}
.apartamento-swiper .swiper-button-prev::after,
.apartamento-swiper .swiper-button-next::after { font-size: .9rem; font-weight: 900; }

/* ── Policies accordion ────────────────────────────────────── */
.policies-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.policy-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.policy-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    text-align: left;
    transition: background var(--transition);
    gap: 12px;
}
.policy-header:hover { background: var(--off-white); }
.policy-header span { display: flex; align-items: center; gap: 10px; }
.policy-header span i { color: var(--gold); font-size: .95rem; }
.policy-chevron {
    color: var(--mid-gray);
    font-size: .8rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.policy-item.open .policy-chevron { transform: rotate(180deg); }
.policy-item.open .policy-header { background: var(--off-white); }

.policy-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.policy-item.open .policy-body { max-height: 600px; }
.policy-body > * {
    padding: 0 24px 20px;
    color: var(--text);
    font-size: .95rem;
    line-height: 1.75;
}
.policy-body ul { padding-left: 40px; list-style: disc; }
.policy-body ul li { margin-bottom: 6px; }

/* ── Calendar navigation controls ─────────────────────────── */
.cal-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}
.cal-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all var(--transition);
    flex-shrink: 0;
}
.cal-nav-btn:hover:not(:disabled) { background: var(--navy-light); transform: scale(1.08); }
.cal-nav-btn:disabled { background: var(--light-gray); color: var(--mid-gray); cursor: default; }
.cal-month-nav-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    min-width: 180px;
    text-align: center;
}

/* ── Cookie banner (RGPD) ──────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: var(--navy-dark);
    color: rgba(255,255,255,.92);
    padding: 18px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
    min-width: 240px;
}
.cookie-banner-text .cookie-link {
    color: var(--gold-light);
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    transition: color var(--transition);
}
.cookie-banner-text .cookie-link:hover { color: var(--white); }

.cookie-banner-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-primary {
    padding: 10px 22px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-cookie-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-cookie-secondary {
    padding: 10px 22px;
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.4);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-cookie-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ── Policy modals (wider + scrollable) ────────────────────── */
.policy-modal-content {
    max-width: 620px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
}
.policy-modal-content h3 {
    margin-bottom: 20px;
}
.policy-modal-body {
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.policy-modal-body::-webkit-scrollbar { width: 5px; }
.policy-modal-body::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 4px; }
.policy-modal-body::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 4px; }

.policy-section h4 {
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.policy-section p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.7;
}
.policy-section a { color: var(--navy); text-decoration: underline; }
.policy-section a:hover { color: var(--gold); }

/* ── Footer policy links ───────────────────────────────────── */
.footer-policy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}
.footer-policy-link:hover { color: var(--gold-light); }

/* ── Cookie banner mobile ──────────────────────────────────── */
@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .cookie-banner-btns { width: 100%; }
    .btn-cookie-primary,
    .btn-cookie-secondary { flex: 1; text-align: center; justify-content: center; }
}

/* ── Modal success state ───────────────────────────────────── */
.modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 8px 0 12px;
}
.modal-success-icon {
    font-size: 3.5rem;
    color: var(--green);
}
.modal-success h3 { margin: 0; }
.modal-success p {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
}
