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

:root {
    --forest: #3D5A3A;
    --forest-light: #5A7D56;
    --forest-dark: #2D4229;
    --cream: #F5F2EB;
    --cream-light: #FAFAF7;
    --cream-dark: #E8E4DA;
    --sage: #A8B89A;
    --sage-light: #C5D1BC;
    --warm: #C4A882;
    --warm-light: #D4C4A8;
    --text: #2C3529;
    --text-light: #5A6B56;
    --text-muted: #8A9686;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(61, 90, 58, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 90, 58, 0.1);
    --shadow-lg: 0 20px 60px rgba(61, 90, 58, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

em {
    font-style: italic;
    color: var(--forest);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Utility ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--sage);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 48px;
}

.section-subtitle--center {
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(61, 90, 58, 0.3);
}

.btn--primary:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 90, 58, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn--ghost:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(245, 242, 235, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest);
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--forest);
    background: rgba(61, 90, 58, 0.06);
}

.nav-link--cta {
    background: var(--forest);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 50%, #EDE9DF 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-left {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(61, 90, 58, 0.08);
    border: 1px solid rgba(61, 90, 58, 0.15);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title em {
    color: var(--forest);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sage-light);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--forest);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    padding-bottom: 40px;
}

.hero-image {
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-image--main {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-xl);
}

.hero-image--accent {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    border: 6px solid var(--cream);
    box-shadow: var(--shadow-md);
}

.hero-image-pattern {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    background-image: radial-gradient(circle, var(--forest) 1px, transparent 1px);
    background-size: 16px 16px;
    z-index: -1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== About ===== */
.about {
    background: var(--cream);
    padding: 100px 0;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text:first-of-type {
    margin-top: 8px;
}

.about-images {
    position: relative;
    min-height: 580px;
}

.about-img-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-img-group img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.about-img-group img:first-child {
    height: 320px;
    grid-row: span 2;
}

.about-img-group img:last-child {
    height: 220px;
}

.about-img-decoration {
    position: absolute;
    bottom: 40px;
    left: -30px;
    opacity: 0.4;
}

/* ===== Menu ===== */
.menu {
    background: var(--cream-light);
    padding: 100px 0;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(61, 90, 58, 0.1);
}

.menu-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(61, 90, 58, 0.08), rgba(61, 90, 58, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.menu-card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.menu-note {
    text-align: center;
    padding: 20px 24px;
    background: rgba(61, 90, 58, 0.05);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(61, 90, 58, 0.2);
}

.menu-note p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Experience ===== */
.experience {
    background: var(--cream);
    padding: 100px 0;
    overflow: hidden;
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.experience-feature {
    padding: 8px 0;
}

.experience-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.experience-feature-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.experience-feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.experience-images {
    position: relative;
    min-height: 600px;
}

.experience-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-img-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.experience-img-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
}

.experience-img-float img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===== Visit ===== */
.visit {
    background: var(--cream-light);
    padding: 100px 0;
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-content {
    max-width: 520px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

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

.visit-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.visit-detail-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--forest);
    font-weight: 500;
}

.visit-detail a:hover {
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visit-map iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* ===== Contact ===== */
.contact {
    background: var(--cream);
    padding: 100px 0;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
}

.form-input {
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(61, 90, 58, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.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.5l3 3 3-3' stroke='%235A6B56' 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: 120px;
}

.contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
    background: rgba(61, 90, 58, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(61, 90, 58, 0.1);
}

.contact-success h3 {
    font-size: 1.5rem;
    color: var(--forest);
}

.contact-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-sidebar-card--accent {
    background: linear-gradient(135deg, var(--forest), var(--forest-light));
    color: var(--white);
}

.contact-sidebar-card--accent .contact-sidebar-title,
.contact-sidebar-card--accent .contact-sidebar-text {
    color: var(--white);
}

.contact-sidebar-card--accent .contact-sidebar-divider {
    background: rgba(255, 255, 255, 0.2);
}

.contact-sidebar-card--accent .contact-sidebar-link {
    color: var(--sage-light);
}

.contact-sidebar-card--accent .contact-sidebar-text {
    opacity: 0.85;
}

.contact-sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-sidebar-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
}

.contact-sidebar-link:hover {
    color: var(--forest-light);
}

.contact-sidebar-divider {
    height: 1px;
    background: var(--cream-dark);
    margin: 16px 0;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.contact-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 64px 0 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .nav-logo {
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.92rem;
    color: var(--sage-light);
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sage-light);
}

.footer-hours-day {
    font-size: 0.92rem;
    color: var(--cream);
    opacity: 0.9;
}

.footer-hours-time {
    font-size: 0.92rem;
    color: var(--sage-light);
    font-weight: 500;
}

.footer-hours-closed {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--cream);
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        order: 1;
    }

    .hero-right {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image--main {
        height: 450px;
    }

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

    .about-content,
    .visit-content {
        max-width: 100%;
    }

    .about-images {
        min-height: 400px;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

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

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .nav-toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 100px 24px 60px;
    }

    .hero-image--accent {
        right: -10px;
        width: 140px;
        height: 140px;
    }

    .hero-image--main {
        height: 350px;
    }

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

    .experience-img-float {
        left: -10px;
        width: 150px;
    }

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

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

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

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .menu-card {
        padding: 28px 24px;
    }

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

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

    .about-img-group img:last-child {
        height: 200px;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 53, 41, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
