@media (max-width: 1100px) {
    .container {
        width: min(calc(100% - 48px), 1000px);
    }

    .navbar {
        gap: 20px;
    }

    .nav-links {
        gap: 18px;
    }

    .story__grid {
        gap: 50px;
    }

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

    .category-card--large {
        grid-row: span 2;
    }

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

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

    .special__items {
        grid-template-columns: repeat(7, 1fr);
    }

    .special-item {
        height: 260px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .founder__quote {
        grid-column: 1 / -1;
    }

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

    .footer-tagline {
        display: none;
    }

    .special-showcase__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .container {
        width: min(calc(100% - 36px), 680px);
    }

    .section {
        padding: 85px 0;
    }

    .site-header {
        background: rgba(8,9,9,.95);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        overflow: visible;
    }

    .navbar {
        min-height: 72px;
        position: relative;
    }

    .brand {
        min-width: auto;
    }

    .brand__main {
        font-size: 30px;
    }

    .brand__script {
        font-size: 23px;
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        position: relative;
        z-index: 1010;
    }

    .nav-book-btn {
        display: none;
    }

    .page-home .nav-book-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: var(--gold-light);
        color: #111;
        font-family: "DM Sans", Arial, sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .04em;
        text-transform: uppercase;
        padding: 7px 13px;
        border-radius: 999px;
        text-decoration: none;
        box-shadow: 0 2px 10px rgba(201, 166, 107, 0.28);
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        line-height: 1;
        cursor: pointer;
        flex-shrink: 0;
    }

    .page-home .nav-book-btn:hover {
        background: #f0d7a5;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(225, 197, 143, 0.45);
        color: #111;
    }

    .page-home .nav-book-btn:active {
        transform: scale(0.96);
    }

    .page-home .nav-book-btn svg {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
        fill: currentColor;
    }

    .menu-toggle {
        display: block;
        margin-left: 0;
        position: relative;
        z-index: 1010;
    }

    /* ── Backdrop overlay on body ── */
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        animation: fadeIn .3s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* ── Mobile Drawer Panel ── */
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        background: #0c0d0d;
        border-left: 1px solid rgba(201, 166, 107, 0.22);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 0;
        transform: translateX(110%);
        transition: transform .38s cubic-bezier(.22, .68, .18, 1),
                    visibility .38s ease;
        visibility: hidden;
        box-shadow: none;
        overflow-y: auto;
        z-index: 1005;
    }

    .nav-links.is-open {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -8px 0 35px rgba(0, 0, 0, 0.55);
    }

    /* ── Gold accent strip at top of drawer ── */
    .nav-links.is-open::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
        z-index: 2;
        flex-shrink: 0;
    }

    /* ── Nav link items ── */
    .nav-links a {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 500;
        color: rgba(244, 239, 230, 0.85);
        padding: 18px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        gap: 14px;
        position: relative;
        transition: color .25s ease, background .25s ease, padding-left .25s ease;
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-links.is-open a {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger animation for each nav item */
    .nav-links.is-open a:nth-child(1) { transition: opacity .3s ease .06s, transform .3s ease .06s, color .25s ease, background .25s ease, padding-left .25s ease; }
    .nav-links.is-open a:nth-child(2) { transition: opacity .3s ease .12s, transform .3s ease .12s, color .25s ease, background .25s ease, padding-left .25s ease; }
    .nav-links.is-open a:nth-child(3) { transition: opacity .3s ease .18s, transform .3s ease .18s, color .25s ease, background .25s ease, padding-left .25s ease; }
    .nav-links.is-open a:nth-child(4) { transition: opacity .3s ease .24s, transform .3s ease .24s, color .25s ease, background .25s ease, padding-left .25s ease; }
    .nav-links.is-open a:nth-child(5) { transition: opacity .3s ease .30s, transform .3s ease .30s, color .25s ease, background .25s ease, padding-left .25s ease; }
    .nav-links.is-open a:nth-child(6) { transition: opacity .3s ease .36s, transform .3s ease .36s, color .25s ease, background .25s ease, padding-left .25s ease; }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold-light);
        background: rgba(201, 166, 107, 0.08);
        padding-left: 34px;
    }

    .nav-links a.active::after {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        bottom: 10px;
        width: 3px;
        background: var(--gold-light);
        border-radius: 0 3px 3px 0;
        transform: scaleX(1);
    }

    /* Remove the desktop underline effect on mobile */
    .nav-links a::after {
        display: none;
    }

    .nav-links a.active::after {
        display: block;
    }

    .hero {
        min-height: 720px;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(4,5,5,.93), rgba(4,5,5,.45)),
            linear-gradient(0deg, rgba(4,5,5,.9), transparent 60%);
    }

    .hero__title {
        font-size: clamp(60px, 16vw, 92px);
    }

    .hero__bottom {
        bottom: -145px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        margin-bottom: 35px;
    }

    h2 {
        font-size: 48px;
    }

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

    .image-stack {
        min-height: 460px;
    }

    .image-stack > img:first-child {
        height: 400px;
    }

    .image-stack > img:nth-child(2) {
        height: 260px;
    }

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

    .category-card {
        height: 340px;
    }

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

    .special__items {
        grid-template-columns: repeat(4, 1fr);
    }

    .special-item {
        height: 220px;
    }

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

    .stat {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

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

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

    .founder__quote {
        grid-column: auto;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 300px 300px;
    }

    .work-card--tall {
        grid-row: auto;
        grid-column: 1 / -1;
    }

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

    .cta__content {
        flex-direction: column;
        align-items: start;
    }

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

    /* Inner Hero Reusable */
    .inner-hero {
        min-height: 460px;
        padding: 130px 0 60px;
    }

    .inner-hero h1 {
        font-size: clamp(44px, 10vw, 72px);
    }

    /* Mobile Nav CTA */
    .nav-cta--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 20px 20px 28px;
        padding: 15px 24px;
        background: var(--gold-light);
        color: #111;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        font-family: var(--sans);
        letter-spacing: .04em;
        border-bottom: none;
        transition: background .25s ease, transform .25s ease, opacity .35s ease .42s, transform .35s ease .42s;
        opacity: 0;
    }

    .nav-links.is-open .nav-cta--mobile {
        opacity: 1;
    }

    .nav-cta--mobile:hover {
        background: var(--gold);
        padding-left: 24px !important;
    }

    /* About Section */
    .about-intro,
    .founder-about__grid,
    .service-area__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-intro__statement {
        position: static;
    }

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

    .founder-about__photo {
        min-height: 480px;
    }

    /* Services Page */
    .services-detail-grid {
        grid-template-columns: 1fr;
    }

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

    /* Gallery Page */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-container {
        padding: 35px 24px;
    }
}

@media (max-width: 520px) {
    .container {
        width: calc(100% - 28px);
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 680px;
    }

    .hero__content {
        padding-top: 90px;
    }

    .hero__title {
        font-size: 61px;
    }

    .hero__description {
        font-size: 13px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        min-height: 46px;
        padding: 0 20px;
    }

    h2 {
        font-size: 43px;
    }

    .feature-list {
        grid-template-columns: 1fr 1fr;
    }

    .image-stack {
        min-height: 390px;
    }

    .image-stack > img:first-child {
        width: 78%;
        height: 330px;
    }

    .image-stack > img:nth-child(2) {
        width: 48%;
        height: 220px;
    }

    .image-note {
        right: 17%;
        bottom: 60px;
        padding: 20px;
    }

    .image-note span {
        font-size: 20px;
    }

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

    .category-card,
    .category-card--large {
        height: 350px;
        grid-row: auto;
    }

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

    .service-card {
        min-height: 220px;
    }

    .special {
        padding: 80px 0;
    }

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

    .special-item {
        height: 230px;
    }

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

    .stat {
        padding: 38px 8px;
    }

    .stat strong {
        font-size: 48px;
    }

    .stat small {
        font-size: 8px;
    }

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

    .founder__image {
        height: 390px;
    }

    .founder__content h2 {
        font-size: 50px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
    }

    .work-card--tall {
        grid-column: auto;
    }

    .testimonial p {
        font-size: 21px;
    }

    .cta {
        min-height: 450px;
    }

    .cta__actions {
        width: 100%;
    }

    .cta__actions .btn {
        flex: 1;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    /* Inner Hero on Mobile */
    .inner-hero {
        min-height: 400px;
        padding: 110px 0 45px;
    }

    .inner-hero h1 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .about-quote p {
        font-size: 26px;
    }

    .founder-about__photo {
        min-height: 360px;
    }

    .special-showcase__grid {
        grid-template-columns: 1fr;
    }

    .special-card {
        height: 280px;
    }

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

    .gallery-card {
        height: 300px;
    }

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

    .contact-form-container {
        padding: 24px 16px;
    }

    /* Lightbox on mobile */
    .lightbox__close {
        top: -42px;
        right: 0;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .lightbox__prev {
        left: 10px;
        bottom: 25px;
        top: auto;
        transform: none;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .lightbox__next {
        right: 10px;
        bottom: 25px;
        top: auto;
        transform: none;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .lightbox__media {
        max-height: 60vh;
    }

    .lightbox__caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 60px;
    }
}
