@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
    /* Palette originale rigorosamente preservata */
    --primary-color: #827c73;
    /* Colore tortora/fango del logo e del brand */
    --secondary-color: #e8eae3;
    /* Verde salvia chiarissimo / sabbia */
    --text-color: #2b2825;
    /* Testo scuro caldo */
    --text-muted: #6b6660;
    /* Testo secondario */
    --white: #ffffff;

    /* Varianti armoniose derivate dalla palette */
    --primary-dark: #686259;
    --primary-light: #9d968c;
    --primary-ultra-light: rgba(130, 124, 115, 0.08);
    --secondary-hover: #dbe0d5;
    --border-subtle: rgba(130, 124, 115, 0.18);
    --border-light: rgba(130, 124, 115, 0.10);

    /* Ombreggiatura moderna e raffinata */
    --shadow-sm: 0 4px 14px rgba(130, 124, 115, 0.08);
    --shadow-md: 0 10px 30px rgba(130, 124, 115, 0.12);
    --shadow-lg: 0 20px 45px rgba(130, 124, 115, 0.18);
    --shadow-hover: 0 22px 50px rgba(130, 124, 115, 0.22);

    /* Curve e transizioni */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: #fafaf8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
}

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

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

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
    background-color: var(--primary-color);
    padding: 16px 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.03);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.35s ease;
}

nav a:hover,
nav a.active {
    color: var(--white);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 8px 18px !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
}

.mobile-toggle svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* =========================================
   CONTAINER & LAYOUT
========================================= */
main {
    padding: 0 0 80px 0;
    max-width: 1320px;
    margin: 0 auto;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* =========================================
   HERO SECTION (HOME)
========================================= */
.hero-wrapper {
    padding: 40px 5% 50px;
}

.hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4f5f1 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.hero-content {
    padding: 70px 50px 70px 60px;
    z-index: 2;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(130, 124, 115, 0.12);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
    border: 1px solid rgba(130, 124, 115, 0.2);
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--primary-color);
}

.hero-content h1 span {
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 34px;
    max-width: 520px;
    font-weight: 300;
}

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

/* Pulsanti */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(130, 124, 115, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(130, 124, 115, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Visual Slot */
.hero-image-slot {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.hero-image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-modern:hover .hero-image-slot img {
    transform: scale(1.05);
}

.hero-badge-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-overlay .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #798a72;
    animation: pulse 2s infinite;
}

.hero-badge-overlay span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* =========================================
   HIGHLIGHTS STRIP (Vantaggi)
========================================= */
.highlights-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 20px 5% 50px;
}

.highlight-item {
    background-color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.highlight-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-muted);
}

/* =========================================
   SEZIONE TITOLI
========================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 18px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-description {
    margin-top: 16px;
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* =========================================
   SERVICES GRID CON SLOT FOTO
========================================= */
.services-section {
    padding: 20px 5% 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(130, 124, 115, 0.35);
}

/* Slot Foto Servizio */
.service-photo-slot {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: var(--secondary-color);
    cursor: pointer;
}

.service-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.service-card:hover .service-photo-slot img {
    transform: scale(1.08);
}

.service-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.zoom-overlay-hint {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(130, 124, 115, 0.75);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.service-photo-slot:hover .zoom-overlay-hint {
    opacity: 1;
    transform: scale(1);
}

.service-content {
    padding: 26px 24px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* =========================================
   GALLERIA FOTOGRAFICA CON SLOT DEDICATI
========================================= */
.gallery-section {
    padding: 50px 5% 70px;
    background-color: var(--secondary-color);
    margin: 40px 0;
    border-radius: var(--radius-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-top: 36px;
}

.photo-slot {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    background-color: #dbe0d5;
}

.photo-slot:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.photo-slot:hover img {
    transform: scale(1.06);
}

/* Layout asimmetrico moderno per la galleria */
.photo-slot.slot-wide {
    grid-column: span 7;
    grid-row: span 2;
}

.photo-slot.slot-tall {
    grid-column: span 5;
    grid-row: span 2;
}

.photo-slot.slot-standard {
    grid-column: span 4;
    grid-row: span 1;
}

.photo-slot-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.88) 0%, rgba(45, 42, 38, 0.25) 60%, transparent 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(10px);
}

.photo-slot:hover .photo-slot-caption {
    opacity: 1;
    transform: translateY(0);
}

.photo-slot-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.photo-slot-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 6px;
}

.photo-slot-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================================
   CITAZIONE BOTANICA (MANIFESTO)
========================================= */
.quote-section {
    padding: 70px 5%;
    text-align: center;
}

.quote-box {
    max-width: 820px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-ornament {
    font-size: 2.2rem;
    color: var(--primary-color);
    opacity: 0.35;
    margin-bottom: 12px;
}

.quote-box blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* =========================================
   PAGINE INTERNE (CHI SIAMO, CONTATTI, DOVE SIAMO)
========================================= */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4f5f1 100%);
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Story 2-Column Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    padding: 0 5%;
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.06rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-features {
    list-style: none;
    margin-top: 24px;
}

.story-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.story-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Featured Photo Slot Chi Siamo */
.featured-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    background-color: var(--secondary-color);
    cursor: pointer;
}

.featured-photo-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-photo-card:hover img {
    transform: scale(1.04);
}

.featured-card-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    max-width: 280px;
}

.featured-card-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.featured-card-badge span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Chi Siamo: Showcase Slots 3-Column */
.atelier-slots-section {
    padding: 20px 5% 60px;
}

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

.atelier-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.atelier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.atelier-photo-slot {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.atelier-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.atelier-card:hover .atelier-photo-slot img {
    transform: scale(1.07);
}

.atelier-content {
    padding: 24px;
}

.atelier-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.atelier-content p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Values / Perché Sceglierci */
.values-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 5% 50px;
}

.value-card {
    background-color: var(--secondary-color);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(130, 124, 115, 0.15);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.94rem;
}

/* Callout Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 5% 20px;
    box-shadow: var(--shadow-md);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.3rem;
    margin-bottom: 14px;
}

.cta-banner p {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =========================================
   PAGINE DOVE TROVARCI E CONTATTI
========================================= */
.content-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 5%;
}

.info-box {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 320px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    margin-top: 15px;
}

.info-box li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    background-color: #fafaf9;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(130, 124, 115, 0.15);
}

button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-full);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

button[type="submit"]:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   LIGHTBOX MODAL
========================================= */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(35, 33, 30, 0.92);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 14px;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -46px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.15);
    color: var(--secondary-color);
}

/* Floating WhatsApp / Phone button */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.floating-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.floating-contact svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 50px 20px 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin: 0 auto;
    filter: brightness(1.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

footer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

footer a:hover {
    color: var(--white);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    .hero-modern {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 50px 36px;
    }

    .hero-image-slot {
        min-height: 380px;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .featured-photo-card img {
        height: 380px;
    }

    .highlights-strip,
    .atelier-grid,
    .values-strip {
        grid-template-columns: 1fr;
    }

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

    .photo-slot.slot-wide,
    .photo-slot.slot-tall,
    .photo-slot.slot-standard {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    header {
        padding: 14px 20px;
    }

    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: none;
        flex-direction: column;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.nav-open {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .floating-contact span {
        display: none;
    }

    .floating-contact {
        padding: 14px;
        border-radius: 50%;
    }
}