/* ========================================
   Le Gourmet — Fine Dining Website
   Deep Navy + Warm Gold | Confident Corporate
   ======================================== */

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

:root {
    --navy-900: #0a1628;
    --navy-800: #0f172a;
    --navy-700: #1e2d4a;
    --navy-600: #2a3f6a;
    --navy-500: #3d5a99;
    --gold-500: #c9a84c;
    --gold-400: #d4af37;
    --gold-300: #e2c060;
    --gold-200: #f0d88a;
    --neutral-100: #f8f7f4;
    --neutral-200: #f0eeea;
    --neutral-300: #e2dfd9;
    --neutral-400: #b0aba2;
    --neutral-500: #6b6560;
    --neutral-600: #4a4540;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-600);
    background: var(--neutral-100);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold-400);
    color: var(--navy-900);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo--light {
    color: var(--white);
}

.logo-icon {
    color: var(--gold-400);
    flex-shrink: 0;
}

/* ── Navigation ── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link--cta {
    background: var(--gold-400);
    color: var(--navy-900);
    font-weight: 600;
    margin-left: 8px;
}
.nav-link--cta:hover {
    background: var(--gold-300);
    color: var(--navy-900);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(15, 23, 42, 0.75) 50%,
        rgba(10, 22, 40, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 160px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-400);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold-400);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.headline-accent {
    color: var(--gold-400);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 40px;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--gold-400);
    color: var(--navy-900);
}
.btn--primary:hover {
    background: var(--gold-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

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

.btn--large {
    padding: 18px 40px;
    font-size: 0.9rem;
}

/* ── Hero Stats ── */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
}

.stat-card {
    padding: 28px 32px;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: var(--transition);
}
.stat-card:nth-child(2) {
    border-left: none;
    border-right: none;
}
.stat-card:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(201, 168, 76, 0.3);
}

.stat-card-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Section Shared ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-500);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.label-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy-800);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.title-accent {
    color: var(--gold-500);
    font-style: italic;
}

.section-header--center {
    text-align: center;
}
.section-header--center .label-line {
    margin-left: auto;
    margin-right: auto;
}
.section-header--center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.8;
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--neutral-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--neutral-100);
}
.about-image-accent img {
    width: 100%;
    height: 165px;
    object-fit: cover;
}

.about-seal {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    background: var(--gold-400);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--navy-900);
    box-shadow: var(--shadow-md);
}
.about-seal svg {
    flex-shrink: 0;
}
.about-seal span {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-800);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ── Cuisine ── */
.cuisine {
    padding: 120px 0;
    background: var(--navy-900);
}

.cuisine .section-title {
    color: var(--white);
}

.cuisine .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.cuisine-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.cuisine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.2);
}

.cuisine-card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.cuisine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.cuisine-card:hover .cuisine-card-image img {
    transform: scale(1.08);
}

.cuisine-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.cuisine-card:hover .cuisine-card-overlay {
    opacity: 1;
}
.cuisine-card-overlay svg {
    color: var(--gold-400);
}

.cuisine-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-400);
    color: var(--navy-900);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
}

.cuisine-card-content {
    padding: 28px 24px;
}

.cuisine-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cuisine-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ── Experience ── */
.experience {
    padding: 120px 0;
    background: var(--neutral-100);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.85;
    margin-bottom: 40px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.exp-feature {
    display: flex;
    gap: 20px;
}

.exp-feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--navy-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}

.exp-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.exp-feature-text p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.65;
}

.experience-image-col {
    position: relative;
}

.exp-image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.exp-image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.exp-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--neutral-100);
}
.exp-image-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ── Gallery ── */
.gallery {
    padding: 120px 0 80px;
    background: var(--white);
}

.gallery .section-title {
    color: var(--navy-800);
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item--large {
    grid-column: span 7;
    height: 380px;
}

.gallery-item:not(.gallery-item--large) {
    grid-column: span 5;
    height: 182px;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: var(--navy-900);
}

.contact .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.detail-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.detail-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}
.detail-link:hover {
    color: var(--gold-400);
}

/* ── Form ── */
.form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--neutral-500);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-700);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy-800);
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder {
    color: var(--neutral-400);
}

.form-input:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236b6560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: var(--gold-500);
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--navy-900);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-top: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold-400);
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 4px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}
.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .experience-grid,
    .contact-grid {
        gap: 48px;
    }

    .about-image-accent {
        right: -20px;
        bottom: -20px;
    }

    .exp-image-secondary {
        right: -16px;
        bottom: -16px;
    }

    .gallery-item--large {
        grid-column: span 12;
        height: 300px;
    }
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 6;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-card {
        border-radius: 0;
    }
    .stat-card:nth-child(1) { border-radius: 0; }
    .stat-card:nth-child(2) { border-left: none; border-right: none; }
    .stat-card:nth-child(3) { border-radius: 0; }

    .about-grid,
    .experience-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-accent {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        width: 100%;
    }
    .about-image-main img {
        height: 360px;
    }

    .about-seal {
        top: 12px;
        left: 12px;
        width: 70px;
        height: 70px;
    }

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

    .exp-image-main img {
        height: 360px;
    }
    .exp-image-secondary {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        width: 100%;
    }
    .exp-image-secondary img {
        height: 200px;
    }

    .gallery-item--large,
    .gallery-item:not(.gallery-item--large) {
        grid-column: span 12;
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.6rem;
    }

    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}
