@font-face {
    font-family: 'Tan Pearl';
    src: url('playfair.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Subtle, unobtrusive ampersand — smaller and thinner than surrounding text */
@font-face {
    font-family: 'AmpFont';
    src: local('Arial Narrow'),
         local('Verdana'),
         local('Tahoma'),
         local('Segoe UI Light'),
         local('Arial');
    unicode-range: U+0026;
    size-adjust: 95%;
    font-weight: 300;
    font-display: swap;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --background-color: #ffffff;
    --border-color: #eaeaea;
    --highlight-color: #ffffff;
    --accent-red: #d9534f;
    --font-heading: 'AmpFont', 'Tan Pearl', 'Cinzel', serif;
    --font-body: 'AmpFont', 'Tan Pearl', 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

/* Header */
.header {
    padding: 1.5rem 5% 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

/* Language Dropdown */
.lang-selector {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    transition: var(--transition);
    color: var(--secondary-color);
}

.dropdown-trigger:hover, .lang-selector:hover .dropdown-trigger {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 100;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Invisible bridge so hover doesn't drop while crossing into menu */
.lang-selector::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    height: 8px;
    width: 100%;
    pointer-events: none;
}

.lang-selector:hover::after {
    pointer-events: auto;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #000000;
}

.lang-selector:hover .dropdown-content,
.lang-selector.open .dropdown-content {
    display: block;
}

.dropdown-trigger {
    user-select: none;
}

.logo-container {
    text-align: center;
    margin-bottom: 2.5rem;
}

.main-logo {
    width: 200px;
    max-width: 90%;
    height: auto;
    transition: var(--transition);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 4px;
    color: var(--primary-color);
}

.logo span:not(.subtitle) {
    font-size: 1.8rem;
    letter-spacing: 10px;
    margin-left: 10px;
}

.logo .subtitle {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    display: block;
    margin-top: 8px;
    font-weight: 400;
}

/* Navigation */
.main-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.5rem;
}

.nav-link {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Elegant Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #000000;
}

/* Hero Text Section (replaces slider) */
.hero-text {
    padding: 8rem 5% 7rem;
    text-align: center;
    background-color: var(--background-color);
}

.hero-text-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-main {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin: 0;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: 1.75rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-text {
        padding: 5rem 5% 4rem;
    }
    .hero-main {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    .hero-sub {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-top: 1.25rem;
    }
}

/* Hero Slider Section (legacy — slider removed) */
.hero-slider {
    padding: 4rem 5%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 65vh;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 9s ease-out;
    transform: scale(1.1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 3;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    z-index: 4;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px) translateX(-50%); }
    to { opacity: 1; transform: translateY(0) translateX(-50%); }
}
/* Revert translate X since absolute centering parent already applies -50%, 
to avoid conflict we just move it up natively. Wait, h2 doesn't have translate! */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dot.active, .dot:hover {
    background-color: #fff;
    transform: scale(1.3);
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Inner Page Styles — black side bands + white content card */
body.inner {
    background-color: #000000;
}

body.inner .header {
    background-color: #ffffff;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
}

.inner-main {
    background-color: #000000;
    padding: 3.5rem 5% 4.5rem;
    min-height: 50vh;
}

.page-card {
    background-color: #ffffff;
    max-width: 960px;
    margin: 0 auto;
    padding: 4.5rem 4.5rem 5rem;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    line-height: 1.25;
}

.page-content {
    min-height: 20vh;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 2.5rem 0 1.2rem;
    color: #000000;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: #000000;
}

.page-content p {
    margin-bottom: 1.2rem;
    color: #000000;
    font-size: 0.98rem;
    line-height: 1.85;
}

.page-content p strong {
    color: #000000;
    font-weight: 600;
}

.page-content a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.page-content a:hover {
    color: var(--highlight-color);
}

.page-content ul,
.page-content ol {
    margin: 0 0 1.5rem 1.5rem;
    padding-left: 1rem;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 0.6rem;
    color: #000000;
    font-size: 0.98rem;
    line-height: 1.8;
    list-style: disc;
}

.page-content ol li {
    list-style: decimal;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.9rem;
}

.page-content table th,
.page-content table td {
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
    color: #000000;
    line-height: 1.7;
}

.page-content table th {
    background-color: #faf7f0;
    color: #000000;
    font-weight: 600;
}

/* Zebra Striped Sections */
.zebra-section {
    padding: 6rem 5%;
}

.bg-white {
    background-color: #ffffff;
}

.bg-muted {
    background-color: #f7f5f0; /* Elegant luxury beige */
}

/* Scroll Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* Splash Screen Animation */
.splash-screen {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    background: #000000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    animation: fadeOutSplash 1s cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
    pointer-events: none;
}

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

.splash-text {
    color: var(--highlight-color);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUpSplash 1s ease 0.3s forwards;
}

.splash-sub {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #fff;
    margin-top: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUpSplash 1s ease 0.9s forwards;
}

.splash-loader {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    animation: fadeInLoader 1s ease 1.5s forwards;
    opacity: 0;
}

.splash-loader::after {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--highlight-color);
    animation: slideLoader 1.5s ease-in-out infinite;
}

@keyframes fadeOutSplash {
    to { opacity: 0; visibility: hidden; }
}
@keyframes fadeInUpSplash {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLoader {
    to { opacity: 1; }
}
@keyframes slideLoader {
    to { left: 150%; }
}

/* Text-only centered section (no image) */
.text-section {
    padding: 7rem 5%;
    text-align: center;
    overflow: hidden;
}

.text-section-container {
    max-width: 780px;
    margin: 0 auto;
}

.text-section .editorial-divider {
    margin-left: auto;
    margin-right: auto;
}

.text-section .editorial-text {
    margin-bottom: 2.5rem;
}

/* Dark button variant — for use on white backgrounds */
.btn-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-dark:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Editorial Sections (The Nuova Style) */
.editorial-section {
    padding: 8rem 5%;
    overflow: hidden;
}

.editorial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 6rem;
}

.editorial-section.reverse .editorial-container {
    flex-direction: row-reverse;
}

.editorial-image {
    flex: 1;
    position: relative;
}

.editorial-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-radius: 2px;
}

.editorial-content {
    flex: 1;
    padding: 2rem 0;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.editorial-divider {
    width: 60px;
    height: 1px;
    background-color: var(--highlight-color);
    margin-bottom: 2.5rem;
}

.editorial-text {
    font-size: 1.05rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.editorial-founder {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border-color);
}

.editorial-founder strong {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.editorial-founder em {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
}

.editorial-link i {
    color: var(--highlight-color);
    transition: transform 0.3s;
}

.editorial-link:hover {
    color: var(--highlight-color);
}

.editorial-link:hover i {
    transform: translateX(8px);
}

/* Clean up old ones */

/* Trust Banner */
.trust-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.5rem;
    padding: 2rem 5%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    position: relative;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: var(--highlight-color);
    font-size: 1.3rem;
}

/* How It Works — plain text list */
.hiw-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hiw-item {
    margin-bottom: 1.25rem;
}

.hiw-item:last-child {
    margin-bottom: 0;
}

.hiw-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.hiw-item p {
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.65;
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
    border: 1px solid var(--highlight-color);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: black;
    color: white;
    border-color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid var(--highlight-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-top: 1px solid var(--highlight-color);
    border-right: 1px solid var(--highlight-color);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 5rem 5%;
    background-color: var(--background-color);
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instagram-link {
    font-size: 1rem;
    color: var(--highlight-color);
    font-weight: 500;
    letter-spacing: 2px;
}

.instagram-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.instagram-widget-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Make iframes and scripts inside the container responsive */
.instagram-widget-container iframe,
.instagram-widget-container div[class*="elfsight"] {
    width: 100% !important;
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

/* Footer Section */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 5rem 5% 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-heading-wrapper {
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Modern ornament derived from the sketch's wireframe */
.ornament {
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 10px auto;
    position: relative;
}
.ornament::before {
    content: '◇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: var(--primary-color);
    background-color: #fff;
    padding: 0 5px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--highlight-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.highlight {
    color: var(--accent-red);
    font-style: italic;
    font-size: 0.75rem;
    display: block;
    margin-top: 3px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    color: #ffffff;
    font-size: 1.3rem;
    border: 1px solid #ffffff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--highlight-color);
    color: #000000;
    border-color: var(--highlight-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
}

/* Disclaimer */
.disclaimer {
    border-top: 1px solid #ffffff;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer p,
.disclaimer i {
    font-size: 0.75rem;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.85;
    font-style: italic;
    display: block;
}

/* Responsive adjustments */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-right: auto;
}

@media (max-width: 992px) {
    .main-nav ul {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-logo {
        width: 140px;
    }
    .header {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .top-bar {
        justify-content: flex-end;
        align-items: center;
        padding: 0 10px;
        position: relative;
    }
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        left: 10px;
    }
    .main-nav .nav-links-container {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        background: #fff;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    .main-nav .nav-links-container.active {
        display: flex;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .logo {
        font-size: 1.8rem;
    }
    .logo span:not(.subtitle) {
        font-size: 1.5rem;
    }
    .footer-grid {
        gap: 3rem;
    }
    .trust-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 5%;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
    .editorial-container {
        flex-direction: column !important;
        gap: 3rem;
    }
    .editorial-section.reverse .editorial-container {
        flex-direction: column !important; /* ensure reverse images also stack nicely */
    }
    .editorial-section {
        padding: 5rem 5%;
    }
    .editorial-title {
        font-size: 2.2rem;
    }
    .splash-text {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    .splash-sub {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    .inner-main {
        padding: 2rem 4% 3rem;
    }
    .page-card {
        padding: 2.5rem 1.75rem 3rem;
    }
    .page-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
        margin-bottom: 1.75rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #ffffff;
    z-index: 9998;
    padding: 1.25rem 5%;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
    border-top: 1px solid #ffffff;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    color: #ffffff;
    text-decoration-thickness: 2px;
}

.cookie-banner-btn {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 0.75rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-banner-btn:hover {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem 5%;
    }
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-banner-text {
        font-size: 0.8rem;
    }
    .floating-whatsapp {
        bottom: 110px;
    }
}
