:root {
    --gold: #c9a96e;
    --gold-light: #e8d5b0;
    --gold-dark: #a68b5b;
    --charcoal: #2c2c2c;
    --warm-gray: #f7f4f0;
    --cream: #fffdf8;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

body.mobile-nav-open {
    overflow: hidden;
}

body.mobile-nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(21, 17, 11, 0.28);
    backdrop-filter: blur(6px);
    z-index: 998;
    animation: navScrimIn 0.28s ease;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 253, 248, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 0.65rem 2rem;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.navbar.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a:hover,
.lang-switcher a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .lang-switcher {
    border-color: rgba(44, 44, 44, 0.12);
    background: rgba(44, 44, 44, 0.04);
}

.lang-switcher a {
    text-decoration: none;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
}

.navbar.scrolled .lang-switcher a {
    color: var(--charcoal);
}

.lang-switcher a[aria-current="page"] {
    background: var(--gold);
    color: #fff !important;
}

.hamburger {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    z-index: 1003;
}

.hamburger span {
    position: absolute;
    width: 20px;
    height: 2.5px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.22s ease, background 0.3s ease;
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    transform: translateY(-6px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(6px);
}

.hamburger:hover {
    transform: translateY(-1px);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 880px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.45rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    border-radius: 999px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.18rem, 2.4vw, 1.55rem);
    font-weight: 400;
    opacity: 0.94;
    margin-bottom: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features,
.cta-buttons,
.cta-info,
.tour-meta,
.tour-included,
.tour-stops {
    display: flex;
    flex-wrap: wrap;
}

.hero-features {
    justify-content: center;
    gap: 1.4rem;
    margin-bottom: 2.3rem;
}

.hero-feat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    opacity: 0.92;
}

.hero-feat svg,
.cta-info-item svg,
.tour-stop svg,
.tour-meta-item svg,
.tour-included-item svg {
    width: 18px;
    height: 18px;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 0.95rem 2rem;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border: none;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.28);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    padding: 0.95rem 2rem;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-whatsapp {
    background: #25d366 !important;
}

.btn-whatsapp:hover {
    background: #1da851 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.28);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    opacity: 0.72;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

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

section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.section-header h2,
.intro-text h2,
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1rem;
}

.intro {
    background: var(--cream);
}

.intro-grid,
.location-grid,
.host-card {
    display: grid;
    gap: 3rem;
}

.intro-grid,
.location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.intro-images img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.intro-images img:first-child {
    grid-row: span 2;
    height: 100%;
}

.intro-images img:nth-child(2),
.intro-images img:nth-child(3) {
    height: 220px;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.accent-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.intro-text .highlight {
    color: var(--text);
    font-weight: 400;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
}

.intro-stats {
    display: flex;
    gap: 1.6rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.intro-stat {
    text-align: center;
}

.intro-stat .number,
.rating-big,
.rating-bar-item .rbv {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.intro-stat .number {
    font-size: 1.8rem;
    font-weight: 600;
}

.intro-stat .label,
.rating-bar-item .rbl,
.review-source {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery {
    background: var(--warm-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 0.8rem;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 0.8rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    background: none;
    width: 44px;
    height: 44px;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.servizio-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.servizio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.servizio-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--gold);
}

.servizio-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}

.servizio-card p,
.poi-item p,
.tour-card-body p,
.host-info p,
.review-card p {
    color: var(--text-light);
}

.servizio-card p,
.poi-item p {
    font-size: 0.84rem;
}

.location {
    background: var(--warm-gray);
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    aspect-ratio: 4 / 3;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-review-badge {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 18px var(--shadow);
    margin-bottom: 1.2rem;
}

.map-review-score {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
}

.map-review-stars {
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.map-review-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.map-review-badge p {
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.6;
}

.map-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.14);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.map-review-link:hover {
    background: rgba(201, 169, 110, 0.24);
    transform: translateY(-1px);
}

.poi-list {
    list-style: none;
}

.poi-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.poi-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.poi-icon svg {
    width: 18px;
    height: 18px;
}

.poi-item h4 {
    font-size: 0.96rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.tour-section {
    background: var(--charcoal);
    color: #fff;
}

.tour-section .section-label {
    color: var(--gold-light);
}

.tour-section .section-header h2 {
    color: #fff;
}

.tour-section .section-header p,
.tour-card-body p,
.tour-meta-item,
.tour-included-item,
.tour-stop {
    color: rgba(255, 255, 255, 0.78);
}

.tour-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
}

.tour-card-header {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.05));
    padding: 2rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.tour-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
}

.tour-card-header h3 span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.tour-card-body,
.tour-card-footer {
    padding: 1.7rem 2.2rem;
}

.tour-card-body p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tour-stops,
.tour-included {
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.tour-stop,
.tour-included-item,
.tour-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.tour-stop {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.78rem;
}

.tour-card-footer {
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-meta {
    gap: 1.6rem;
}

.tour-meta-item {
    font-size: 0.82rem;
}

.tour-meta-item strong {
    color: #fff;
    font-weight: 500;
}

.tour-included-item {
    font-size: 0.8rem;
}

.recensioni {
    background: var(--cream);
}

.rating-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0.3rem 0;
}

.rating-sub {
    font-size: 0.85rem;
    color: var(--text-light);
}

.rating-bars {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.rating-bar-item {
    text-align: center;
}

.rating-bar-item .rbv {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px var(--shadow);
}

.review-stars {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.review-card p {
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-avatar,
.host-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    font-weight: 600;
    font-size: 1rem;
}

.review-name {
    font-weight: 500;
    font-size: 0.92rem;
}

.host-section {
    background: var(--warm-gray);
}

.host-card {
    max-width: 860px;
    margin: 0 auto;
    grid-template-columns: 200px 1fr;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    align-items: center;
}

.host-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-size: 4rem;
}

.host-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.host-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.host-info p {
    font-size: 0.93rem;
    margin-bottom: 0.8rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.85;
}

.cta-buttons {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.cta-info {
    justify-content: center;
    gap: 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.cta-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    opacity: 0.85;
}

footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    padding: 2rem;
    font-size: 0.82rem;
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    opacity: 0.7;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .intro-grid,
    .location-grid,
    .host-card,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .map-review-badge {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.9rem 1rem;
    }

    .navbar,
    .navbar.scrolled {
        background: rgba(255, 253, 248, 0.92);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px var(--shadow);
    }

    .navbar .nav-logo,
    .navbar .nav-links a,
    .navbar .hamburger span,
    .navbar .lang-switcher a {
        color: var(--charcoal);
    }

    .navbar .hamburger span {
        background: var(--charcoal);
    }

    .navbar .lang-switcher {
        border-color: rgba(44, 44, 44, 0.12);
        background: rgba(44, 44, 44, 0.04);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        position: fixed;
        top: 7.35rem;
        left: 50%;
        right: auto;
        width: min(calc(100vw - 2rem), 360px);
        max-width: none;
        list-style: none;
        background: rgba(255, 253, 248, 0.94);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(44, 44, 44, 0.08);
        border-radius: 22px;
        box-shadow: 0 24px 60px rgba(24, 20, 14, 0.18);
        padding: 0.85rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-50%) translateY(-14px) scale(0.98);
        transition: transform 0.32s ease, opacity 0.24s ease, visibility 0.24s ease;
        z-index: 1002;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(10px);
        transition: transform 0.34s ease, opacity 0.24s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.03s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.06s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.09s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.12s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.18s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.21s; }

    .nav-links a,
    .nav-links.active a {
        color: var(--text) !important;
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: 16px;
        letter-spacing: 1.15px;
        background: transparent;
    }

    .nav-links a:hover {
        background: rgba(201, 169, 110, 0.1);
        color: var(--charcoal) !important;
    }

    .nav-links .nav-cta {
        margin-top: 0.25rem;
        text-align: center;
        padding: 1rem;
        border-radius: 18px;
        box-shadow: 0 12px 28px rgba(201, 169, 110, 0.24);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 760px;
        align-items: flex-start;
        justify-content: center;
        padding-top: 7.5rem;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding: 0 1.2rem;
        width: 100%;
    }

    .hero-buttons,
    .cta-buttons,
    .cta-info,
    .tour-card-footer {
        flex-direction: column;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .tour-card-footer {
        align-items: stretch;
        text-align: center;
    }

    .tour-meta {
        justify-content: center;
    }

    section {
        padding: 3.5rem 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .intro-images {
        grid-template-columns: 1fr;
    }

    .intro-images img:first-child {
        grid-row: span 1;
        height: 250px;
    }

    .intro-images img:nth-child(2),
    .intro-images img:nth-child(3) {
        height: 180px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 540px) {
    .navbar {
        padding: 0.75rem 0.9rem;
    }

    .navbar-inner {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0.45rem;
    }

    .nav-logo {
        font-size: clamp(1.15rem, 6.5vw, 1.8rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-right {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.7rem;
        width: 100%;
    }

    .hamburger {
        width: 42px;
        height: 42px;
    }

    .lang-switcher {
        order: 0;
        padding: 0.22rem;
        gap: 0.2rem;
    }

    .lang-switcher a {
        padding: 0.16rem 0.45rem;
        font-size: 0.68rem;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding-top: 8.5rem;
        padding-bottom: 3.25rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-badge {
        max-width: min(88vw, 360px);
        padding: 0.48rem 0.8rem;
        font-size: 0.58rem;
        letter-spacing: 1.7px;
        line-height: 1.45;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 11.5vw, 3.05rem);
        line-height: 1.08;
        max-width: 10.5ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: clamp(0.96rem, 5vw, 1.1rem);
        max-width: 27ch;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }

    .hero-feat {
        font-size: 0.82rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.35rem;
    }

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

    .host-avatar {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }

    .rating-bars {
        gap: 1.2rem;
    }

    .lightbox-prev {
        left: 0.7rem;
    }

    .lightbox-next {
        right: 0.7rem;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 400px) {
    .navbar {
        padding: 0.7rem 0.75rem;
    }

    .nav-logo {
        font-size: clamp(1.05rem, 6.2vw, 1.45rem);
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-links {
        top: 7.05rem;
        left: 50%;
        width: calc(100vw - 1.5rem);
    }

    .lang-switcher a {
        padding: 0.14rem 0.38rem;
        font-size: 0.64rem;
    }

    .hero-content {
        padding: 0 0.9rem;
    }

    .hero {
        height: auto;
        padding-top: 9.1rem;
        padding-bottom: 3.4rem;
    }

    .hero-badge {
        max-width: 86vw;
        font-size: 0.54rem;
        letter-spacing: 1.5px;
        padding: 0.45rem 0.72rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 10.2vw, 2.55rem);
        max-width: 10ch;
    }

    .hero-subtitle {
        max-width: 24ch;
    }
}
