/* ==========================================================================
   Allogiu di a Cupulatta — Style unique
   Organisation : Reset > Variables > Base > Layout > Composants > Sections > Media Queries
   ========================================================================== */

/* --- 1. Mini-reset --- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
img, picture, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- 2. Variables :root --- */
:root {
    /* Palette */
    --color-primary: #2F6F6D;
    --color-primary-dark: #245654;
    --color-text: #1A1A1A;
    --color-text-light: #6B7280;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F5F7F6;
    --color-bg-dark: #0F2A2A;
    --color-border: #E5E7EB;

    /* Typographies */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* UI */
    --border-radius: 10px;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
    --transition: 200ms ease;
    --max-width: 1120px;
    --section-spacing-sm: 64px;
    --section-spacing-lg: 96px;
}

/* --- 3. Base typographique --- */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

h1 { font-family: var(--font-heading); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; }
h2 { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.5rem, 3.5vw, 2rem); line-height: 1.3; }
h3 { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.25rem, 2.5vw, 1.5rem); line-height: 1.4; }
small, .text-small { font-size: 0.875rem; }

p + p { margin-top: 1em; }

a:hover { color: var(--color-primary); }

/* --- 4. Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

main { display: block; }

.section {
    padding: var(--section-spacing-sm) 0;
}
.section--alt {
    background: var(--color-bg-alt);
}
.section--dark {
    background: var(--color-bg-dark);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    margin-bottom: 0.75rem;
}
.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}
.section--dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Grille utilitaire */
.grid {
    display: grid;
    gap: 1.5rem;
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* --- 5. Composants --- */

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    line-height: 1.5;
}
.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #FFFFFF;
}
.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.btn-secondary:hover {
    background: rgba(47, 111, 109, 0.06);
    color: var(--color-primary);
}
.btn--dark {
    background: #FFFFFF;
    color: var(--color-bg-dark);
}
.btn--dark:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-bg-dark);
}

/* Cartes */
.card {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.card__body {
    padding: 1.5rem;
}
.card__body h3 {
    margin-bottom: 0.5rem;
}
.card__body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(47, 111, 109, 0.1);
    color: var(--color-primary);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--color-text-light);
}
.breadcrumb a {
    color: var(--color-primary);
    transition: opacity var(--transition);
}
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { margin: 0 0.5rem; }

/* Formulaires */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: var(--color-bg);
    color: var(--color-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(47, 111, 109, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Info box */
.info-box {
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.info-box h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

/* Icone feature */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 111, 109, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Distance badge */
.distance {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* --- 6. Header / Nav --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.site-header--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav__logo img {
    height: 40px;
    width: auto;
}
.nav__logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition);
    white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
    color: var(--color-primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Selecteur de langue */
.lang-switcher {
    display: flex;
    gap: 4px;
}
.lang-switcher a {
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: 6px;
    transition: all var(--transition);
}
.lang-switcher a:hover {
    color: var(--color-primary);
}
.lang-switcher a[aria-current="true"] {
    background: var(--color-primary);
    color: #fff;
}

/* Hamburger mobile */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
    border-radius: 2px;
}

/* --- 7. Hero --- */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.hero--small {
    min-height: 300px;
}
.hero--xs {
    min-height: 220px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Overlay a 60% pour lisibilite du texte sur photo sombre */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 42, 42, 0.55), rgba(15, 42, 42, 0.7));
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    padding: 2rem 1.5rem;
}
.hero__content h1 {
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero__content p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- 8. Stats bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    text-align: center;
    padding: 2.5rem 0;
}
.stat {
    padding: 0.5rem;
}
.stat__value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--color-primary);
    display: block;
}
.stat__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

/* --- 9. Features grid --- */
.feature {
    text-align: center;
    padding: 1.5rem;
}
.feature .feature-icon {
    margin: 0 auto 1rem;
}
.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.feature p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- 10. Equipements / amenities --- */
.amenity {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}
.amenity__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 111, 109, 0.1);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
}
.amenity strong {
    display: block;
    margin-bottom: 0.25rem;
}
.amenity p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* --- 11. Beach / place list --- */
.place-card {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
}
.place-card:hover {
    transform: translateY(-2px);
}
.place-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.place-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- 12. Galerie --- */
.gallery-section {
    margin-bottom: 3rem;
}
.gallery-section h2 {
    margin-bottom: 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 0.75rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- 13. Table tarifs --- */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.pricing-table thead {
    background: var(--color-primary);
    color: #fff;
}
.pricing-table th,
.pricing-table td {
    padding: 1rem 1.25rem;
    text-align: left;
}
.pricing-table th {
    font-weight: 500;
    font-size: 0.95rem;
}
.pricing-table tbody tr {
    border-bottom: 1px solid var(--color-border);
}
.pricing-table tbody tr:last-child {
    border-bottom: none;
}
.pricing-table tbody tr:nth-child(even) {
    background: var(--color-bg-alt);
}
.pricing-table td strong {
    color: var(--color-text);
}

/* Affichage prix dynamique */
.price-display {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}
.price-display__amount {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--color-primary);
}
.price-display__details {
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* --- 14. Blog cards --- */
.blog-card {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.blog-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.blog-card__body {
    padding: 1.5rem;
}
.blog-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}
.blog-card__body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.blog-card__body p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* --- 15. Article --- */
.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem var(--section-spacing-sm);
}
.article h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.article h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article ul, .article ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}
.article li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.article ol li { list-style: decimal; }
.article-meta {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}
.article-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* --- 16. Contact layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info-card {
    padding: 1.25rem;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}
.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}
.contact-info-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
}
.contact-info-card .text-small {
    color: var(--color-text-light);
}

/* Map placeholder */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 2rem;
    background: var(--color-bg-alt);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 17. CTA section --- */
.cta-section {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
    padding: var(--section-spacing-sm) 1.5rem;
}
.cta-section h2 {
    margin-bottom: 0.75rem;
}
.cta-section p {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 18. Footer --- */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--section-spacing-sm) 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-col h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    margin-top: var(--section-spacing-sm);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- 19. Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}
.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 0.7; }
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1rem;
    transition: opacity var(--transition);
}
.lightbox__nav:hover { opacity: 0.7; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: center;
}

/* --- 20. Utilitaires --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- 21. Mobile nav overlay --- */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--color-bg);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-nav.active {
    display: flex;
}
.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}
.mobile-nav a:hover {
    color: var(--color-primary);
}
.mobile-nav .btn {
    margin-top: 1rem;
    justify-content: center;
}
.mobile-nav .lang-switcher {
    margin-top: 1.5rem;
    justify-content: center;
}

/* Checkbox label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
    flex-shrink: 0;
}

/* Form message */
.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}
.form-message--success {
    background: rgba(47, 111, 109, 0.1);
    color: var(--color-primary);
}
.form-message--error {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

/* Included services box */
.included-box {
    background: linear-gradient(135deg, rgba(47, 111, 109, 0.06), rgba(47, 111, 109, 0.02));
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}
.included-box h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}
.included-box li {
    list-style: none;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

/* Two-column layout for studio/residence */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Nature zone */
.nature-zone {
    background: linear-gradient(135deg, rgba(47, 111, 109, 0.04), rgba(47, 111, 109, 0.01));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 2rem 0;
}

/* Discount box */
.discount-box {
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.discount-box h4 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

/* Reservation form wrapper */
.reservation-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

/* Date selector grid */
.date-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Useful numbers table */
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table th,
.info-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}
.info-table th {
    background: var(--color-bg-alt);
    font-weight: 500;
}

/* Pool hours card */
.hours-card {
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}
.hours-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.1rem;
}
.hours-card p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* --- 22. Media queries --- */

/* Tablette */
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__actions .btn { display: none; }
    .nav__toggle { display: flex; }

    .hero { min-height: 400px; }
    .hero--small { min-height: 250px; }
    .hero--xs { min-height: 180px; }

    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .section { padding: 48px 0; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 480px) {
    .hero { min-height: 350px; }
    .hero__content h1 { font-size: 1.75rem; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat__value { font-size: 1.5rem; }

    .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }

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

    .date-selector { grid-template-columns: 1fr; }

    .pricing-table { font-size: 0.85rem; }
    .pricing-table th,
    .pricing-table td { padding: 0.75rem; }

    .article { padding: 1.5rem 1rem 3rem; }
}
