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

:root {
    --midnight: #0B1D3A;
    --midnight-light: #132D54;
    --midnight-deep: #071428;
    --mint: #7FB5A0;
    --mint-light: #9DC4B2;
    --mint-pale: #E8F0EC;
    --cream: #FAFAF8;
    --warm-white: #F5F4F0;
    --sand: #E8E4DC;
    --charcoal: #2C2C2C;
    --text: #1A1A1A;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --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-sans);
    color: var(--text);
    background: var(--cream);
    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; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 1rem;
    background: var(--midnight);
    color: #fff;
    z-index: 9999;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ── Typography ─────────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: var(--space-md);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-mint {
    background: var(--mint);
    color: #fff;
    border: 2px solid var(--mint);
}
.btn-mint:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 181, 160, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid var(--midnight);
}
.btn-outline-dark:hover {
    background: var(--midnight);
    color: #fff;
}

.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.7rem; }
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.logo-light { color: #fff; }

.logo-mark {
    color: var(--mint);
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width var(--transition);
}

.nav-list a:hover { color: #fff; }
.nav-list a:hover::after { width: 100%; }

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    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(
        to bottom,
        rgba(7, 20, 40, 0.55) 0%,
        rgba(11, 29, 58, 0.7) 50%,
        rgba(11, 29, 58, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: var(--space-md);
}

.hero-headline em {
    font-style: italic;
    color: var(--mint-light);
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto var(--space-lg);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
}

.hero-details a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.hero-details a:hover { color: var(--mint-light); }

.hero-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Intro ──────────────────────────────────────────────── */
.intro {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro-text .section-title { margin-bottom: var(--space-md); }

.intro-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.intro-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--sand);
}

.signature-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--midnight);
}

.signature-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    margin-top: 0.25rem;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(11, 29, 58, 0.12);
}

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

.intro-image:hover img { transform: scale(1.03); }

/* ── Features ───────────────────────────────────────────── */
.features {
    padding: var(--space-2xl) 0;
    background: var(--midnight);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-md);
    border: 1px solid rgba(127, 181, 160, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(127, 181, 160, 0.4);
    background: rgba(127, 181, 160, 0.05);
    transform: translateY(-4px);
}

.feature-icon {
    color: var(--mint);
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
}

/* ── Menu ───────────────────────────────────────────────── */
.menu-preview {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.menu-header .section-title { margin-bottom: var(--space-sm); }

.menu-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.menu-category {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 4px 24px rgba(11, 29, 58, 0.06);
    transition: all var(--transition);
}

.menu-category:hover {
    box-shadow: 0 12px 40px rgba(11, 29, 58, 0.1);
    transform: translateY(-4px);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--sand);
}

.category-line {
    flex: 0 0 32px;
    height: 2px;
    background: var(--mint);
    border-radius: 2px;
}

.menu-items { display: flex; flex-direction: column; gap: var(--space-sm); }

.menu-items li {
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(232, 228, 220, 0.6);
}

.menu-items li:last-child { border-bottom: none; padding-bottom: 0; }

.item-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.2rem;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin: var(--space-md) 0 var(--space-lg);
}

.menu-cta { text-align: center; }

/* ── Gallery ────────────────────────────────────────────── */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--warm-white);
}

.gallery .section-eyebrow,
.gallery .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 29, 58, 0.2) 0%, transparent 40%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

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

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

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* ── Hours & Location ───────────────────────────────────── */
.hours-location {
    padding: var(--space-2xl) 0;
    background: var(--midnight);
}

.hl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.hl-info .section-title { color: #fff; margin-bottom: var(--space-lg); }

.hl-details { display: flex; flex-direction: column; gap: var(--space-md); }

.hl-block h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.hl-block p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.hl-block a {
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}
.hl-block a:hover { color: var(--mint-light); }

.day { display: inline-block; min-width: 160px; }
.time { color: var(--mint-light); font-weight: 500; }

.hours-note {
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.4) !important;
    font-style: italic;
    margin-top: 0.5rem;
}

.hl-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--midnight-light);
    border: 1px solid rgba(127, 181, 160, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: var(--space-md);
    color: rgba(255,255,255,0.7);
}

.map-placeholder svg { color: var(--mint); }

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.map-placeholder .btn { margin-top: 0.5rem; }

/* ── Contact ────────────────────────────────────────────── */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-text .section-title { margin-bottom: var(--space-sm); }

.contact-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--midnight);
    transition: color var(--transition);
}

.contact-phone:hover { color: var(--mint); }

.contact-phone svg { color: var(--mint); }

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 8px 40px rgba(11, 29, 58, 0.08);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(127, 181, 160, 0.15);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-top: var(--space-sm);
    background: var(--mint-pale);
    border: 1px solid var(--mint);
    border-radius: var(--radius-sm);
    color: var(--midnight);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg { color: var(--mint); flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--midnight-deep);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: var(--space-sm); }

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-brand a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-brand a:hover { color: var(--mint-light); }

.footer-nav h4,
.footer-hours h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--mint-light); }

.footer-hours p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

.footer-bottom {
    padding-top: var(--space-md);
    text-align: center;
}

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

/* ── Back to top ────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--midnight);
    color: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--mint);
    color: #fff;
    transform: translateY(-2px);
}

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

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid .menu-category:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: auto auto; }
    .gallery-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 2; }
    .gallery-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
    .gallery-item:nth-child(3) { grid-column: 1 / 4; grid-row: 2 / 3; }
    .gallery-item:nth-child(4) { grid-column: 4 / 7; grid-row: 2 / 3; }
    .gallery-item:nth-child(5) { grid-column: 1 / 4; grid-row: 3 / 4; }
    .gallery-item:nth-child(6) { grid-column: 4 / 7; grid-row: 3 / 4; }
}

@media (max-width: 768px) {
    :root { --space-xl: 4rem; --space-2xl: 5rem; }

    .nav-toggle { display: flex; }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--midnight);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right var(--transition);
        box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    }

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

    .nav-list a { font-size: 0.9rem; }

    .intro-grid { grid-template-columns: 1fr; }
    .intro-image { order: -1; max-height: 400px; }

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

    .menu-grid { grid-template-columns: 1fr; }
    .menu-grid .menu-category:last-child { max-width: 100%; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 1 / 2; }
    .gallery-item:nth-child(3) { grid-column: 2 / 3; }
    .gallery-item:nth-child(4) { grid-column: 1 / 2; }
    .gallery-item:nth-child(5) { grid-column: 2 / 3; }
    .gallery-item:nth-child(6) { grid-column: 1 / 3; }

    .hl-grid { grid-template-columns: 1fr; }
    .hl-map { min-height: 300px; }

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

    .footer-inner { grid-template-columns: 1fr; gap: var(--space-md); }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(n) { grid-column: auto; }
    .gallery-item:nth-child(1) { grid-column: auto; }
    .gallery-item:nth-child(6) { grid-column: auto; }
}
