/* =============================================
   MIDLAND MONUMENTAL – Redesign 2025
   Refined, modern memorial aesthetic
   ============================================= */

:root {
    --charcoal: #1a1a1a;
    --charcoal-mid: #2c2c2c;
    --stone: #6b6b6b;
    --stone-light: #9a9a9a;
    --cream: #f8f5f0;
    --cream-dark: #ede9e2;
    --white: #ffffff;
    --gold: #b5935a;
    --gold-light: #d4b483;
    --gold-dark: #8a6d3f;
    --accent: #7e80b1;
    --accent-dark: #5b5d8a;
    --text: #2c2c2c;
    --text-light: #6b6b6b;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --max-width: 1200px;
    --header-h: 72px;
    --radius: 2px;
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-light); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utilities ──────────────────────────────── */

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 110px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }

.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1rem 0 1.5rem;
}
.rule.center { margin: 1rem auto 1.5rem; }

/* ── Buttons ─────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.btn-primary:hover {
    background: var(--charcoal-mid);
    border-color: var(--charcoal-mid);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

/* ── Header ──────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(22,22,22,0.98);
    backdrop-filter: blur(14px);
    z-index: 1000;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo { flex-shrink: 0; }
.logo img { height: 17px; width: auto; display: block; }

.main-nav { margin-left: auto; flex-shrink: 0; }
.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}
.main-nav a {
    display: block;
    padding: 8px 9px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    position: relative;
    transition: color var(--transition);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 9px; right: 9px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}
.main-nav a:hover {
    color: var(--white);
}
.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.main-nav a.active {
    color: var(--white);
}
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 1rem;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero / Page Hero ───────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/headinginnerimg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 140px 2rem 80px;
    color: var(--white);
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 700px; }
.hero .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge {
    position: absolute;
    bottom: 50px; right: 6%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    text-align: center;
    color: var(--white);
}
.hero-badge .badge-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    color: var(--gold-light);
}
.hero-badge .badge-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ── Page Banner (inner pages) ───────────────── */

.page-banner {
    position: relative;
    height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #1a1008;
    margin-top: var(--header-h);
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/page-banner-bg.webp');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.55;
}
.page-banner-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem 50px;
    color: var(--white);
}
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); }
.page-banner .breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-banner .breadcrumb a:hover { color: var(--white); }
.page-banner .breadcrumb span { color: var(--gold-light); }

/* ── Section: Intro text ──────────────────────── */

.intro-section {
    padding: 80px 0;
    background: var(--white);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-text h2 { margin-bottom: 0.5rem; }
.intro-text .rule { margin-bottom: 1.5rem; }
.intro-text p { color: var(--stone); line-height: 1.8; }
.intro-img { border-radius: var(--radius); overflow: hidden; }
.intro-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── Section: Monument Types (homepage) ────── */

.monuments-section { padding: 80px 0; background: var(--cream); }
.section-header { margin-bottom: 50px; }
.monuments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.monument-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.monument-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.monument-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.monument-card-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: var(--cream);
    padding: 12px;
    transition: transform 0.4s ease;
}
.monument-card:hover .monument-card-img img { transform: scale(1.04); }
.monument-card-body { padding: 20px; }
.monument-card-body h4 { margin-bottom: 8px; font-size: 1.1rem; }
.monument-card-body p { font-size: 0.85rem; color: var(--stone); margin-bottom: 14px; }
.card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-link:hover { color: var(--gold-dark); }

/* ── Features strip ──────────────────────────── */

.features-strip { padding: 60px 0; background: var(--charcoal); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
}
.feature-item {
    padding: 40px 36px;
    background: var(--charcoal);
    color: var(--white);
}
.feature-item .feat-icon {
    width: 44px; height: 44px;
    background: rgba(181,147,90,0.15);
    border: 1px solid rgba(181,147,90,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold-light);
}
.feature-item h4 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.feature-item p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

/* ── Gallery grid ────────────────────────────── */

.gallery-section { padding: 80px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── CTA Banner ───────────────────────────────── */

.cta-banner {
    background: var(--charcoal);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact section ─────────────────────────── */

.contact-section { padding: 80px 0; background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--cream-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.radio-group { display: flex; gap: 20px; align-items: center; }
.radio-group label {
    display: flex; gap: 7px; align-items: center;
    text-transform: none; letter-spacing: 0; font-size: 0.85rem;
    cursor: pointer;
    color: var(--text);
}
.radio-group input[type="radio"] { accent-color: var(--gold); }

.contact-info h3 { margin-bottom: 1rem; }
.contact-info .rule { margin-bottom: 1.5rem; }

.location-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    padding: 24px;
    margin-bottom: 16px;
}
.location-card h4 { margin-bottom: 8px; font-size: 1rem; }
.location-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }
.location-card a { color: var(--gold); font-weight: 500; }
.location-card a:hover { color: var(--gold-dark); }

/* ── Tabs ─────────────────────────────────────── */

.tabs-wrapper { margin-top: 40px; }
.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--cream-dark);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 0;
}
.tab-btn {
    padding: 12px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stone);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Product grid ────────────────────────────── */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    background: var(--white);
}
.product-card img {
    width: 100%; aspect-ratio: 1;
    object-fit: contain;
    background: var(--cream);
    padding: 10px;
    transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card-label {
    padding: 12px 14px;
    font-size: 0.82rem;
    color: var(--stone);
    text-align: center;
}

/* ── Inscription Verses ──────────────────────── */

.verses-section { padding: 70px 0; background: var(--charcoal); }
.verses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.verse-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
}

/* ── Locations page ───────────────────────────── */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.loc-card {
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    background: var(--white);
}
.loc-card-img { aspect-ratio: 16/9; overflow: hidden; }
.loc-card-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-card-body { padding: 28px; }
.loc-card-body h3 { font-size: 1.5rem; margin-bottom: 14px; }
.loc-card-body address { font-size: 0.88rem; color: var(--stone); line-height: 1.8; }
.loc-card-body a { color: var(--gold); font-weight: 500; }
.loc-card-body a:hover { color: var(--gold-dark); }
.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 10px 20px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: background var(--transition);
}
.directions-btn:hover { background: var(--cream-dark); }

/* ── Granite range ────────────────────────────── */

.granite-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.granite-swatch { overflow: hidden; border-radius: var(--radius); }
.granite-swatch img {
    width: 100%; aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.granite-swatch:hover img { transform: scale(1.06); }

/* ── Lightbox ─────────────────────────────────── */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ── Inline Brochure CTA ─────────────────────── */

.inline-cta {
    margin: 30px 0 0;
}
.inline-cta-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
}
.inline-cta-icon {
    flex-shrink: 0;
    color: var(--gold);
}
.inline-cta-text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--stone);
}
.inline-cta-text strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.inline-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 22px;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .inline-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .inline-cta-btn { width: 100%; justify-content: center; }
}

/* ── Footer ───────────────────────────────────── */

.site-footer {
    background: var(--charcoal-mid);
    color: rgba(255,255,255,0.65);
    padding: 60px 0 0;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 50px;
}
.footer-brand img { height: 18px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-phone {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.footer-phone:hover { color: var(--white); }

.footer-col h5 { color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { margin-bottom: 18px; font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.45); }
.footer-col address strong { color: rgba(255,255,255,0.7); display: block; margin-bottom: 3px; }
.footer-col address a { color: var(--gold-light); }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ── Notices / Success ───────────────────────── */

.notice {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.notice-success { background: #edf7f0; border: 1px solid #9ed4b0; color: #2d6e46; }
.notice-error   { background: #fdf0ef; border: 1px solid #d9a09c; color: #832b25; }

/* ── Stats bar ─────────────────────────────────── */

.stats-bar { background: var(--gold); padding: 40px 0; }
.stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item .stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
}

/* ── About page specific ───────────────────────── */

.about-content p { color: var(--stone); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.95rem; }
.services-list { list-style: none; }
.services-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--stone);
}
.services-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 1024px) {
    .monuments-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .granite-grid { grid-template-columns: repeat(4, 1fr); }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    :root { --header-h: 56px; }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: rgba(22,22,22,0.99);
        padding: 8px 0 16px;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 999;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; }
    .main-nav a {
        padding: 12px 2rem;
        font-size: 0.82rem;
        letter-spacing: 0.04em;
    }
    .main-nav a::after { display: none; }

    .hero-content { padding-top: 120px; }
    .hero-badge { display: none; }

    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .monuments-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .verses-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .granite-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-banner { height: 220px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .monuments-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .granite-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: 1fr 1fr; }
}
