* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #070707;
    --bg-soft: #111111;
    --bg-card: #161616;
    --text-main: #f7f2e9;
    --text-muted: #b8b0a6;
    --gold: #c89a3b;
    --gold-soft: #e2bd74;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    max-width: 100%;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: #000;
    padding: 10px 14px;
    z-index: 9999;
}

.skip-link:focus {
    top: 16px;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: 0.35s ease;
}

.site-header.scrolled {
    background: rgba(7, 7, 7, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    border-radius: 50%;
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
}

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

.nav-link {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    transition: 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: 0.25s ease;
}

.header-cta:hover {
    background: var(--gold);
    color: #000;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 34px;
    height: 2px;
    background: var(--text-main);
    margin-left: auto;
    transition: 0.3s ease;
}

.menu-toggle span + span {
    margin-top: 10px;
    width: 24px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active span:nth-child(2) {
    width: 34px;
    transform: rotate(-45deg) translateY(-8px);
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at 30% 50%, rgba(200, 154, 59, 0.22), transparent 42%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding-top: 60px;
}

.hero-title {
    overflow: hidden;
    max-width: 1200px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 8vw, 7.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    opacity: 0;
    will-change: transform, opacity;
    animation-duration: 0.95s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 22px rgba(200, 154, 59, 0.3);
}

.slide-left {
    transform: translateX(-500%);
    animation-name: slideFromLeft;
}

.slide-right {
    transform: translateX(500%);
    animation-name: slideFromRight;
}

.title-line:nth-child(1) .title-word {
    animation-delay: 0.25s;
}

.title-line:nth-child(2) .title-word {
    animation-delay: 0.45s;
}

.title-line:nth-child(3) .title-word {
    animation-delay: 0.65s;
}

.hero-text {
    max-width: 820px;
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-fade {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeIn 0.9s ease forwards;
    animation-delay: 1.15s;
}

.hero-fade-delay {
    animation-delay: 1.35s;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.location-copy h2,
.contact-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 0.98;
}

@keyframes slideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 92vh;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero-title {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

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

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--gold);
    color: #080808;
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================
   IMAGE STRIP
========================== */

.brand-strip {
    padding: 0;
    background: #050505;
    border-top: 1px solid rgba(200, 154, 59, 0.15);
    border-bottom: 1px solid rgba(200, 154, 59, 0.15);
    overflow: hidden;
}

.brand-slider {
    overflow: hidden;
    width: 100%;
}

.brand-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: imageScroll 45s linear infinite;
    padding: 20px 0;
}

.brand-track img {
    width: 320px;
    height: 190px;
    object-fit: contain;
    object-position: center;
    background: #0b0b0b;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(200, 154, 59, 0.15);
    flex-shrink: 0;
    transition: transform .35s ease;
}

.brand-track img:hover {
    transform: scale(1.03);
}

@keyframes imageScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */

section {
    padding: 110px 0;
}

.intro-section,
.services-section,
.gallery-section {
    background: var(--bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
}

.section-copy h2,
.section-heading h2,
.location-copy h2,
.contact-copy h2 {
    font-size: clamp(2.6rem, 5vw, 5rem);
}

.intro-text p,
.section-heading p,
.location-copy p,
.contact-copy p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

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

.feature-card,
.service-card,
.review-card,
.contact-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 34px;
}

.feature-card i {
    color: var(--gold);
    font-size: 2rem;
}

.feature-card h3,
.service-card h3 {
    margin-top: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
}

.feature-card p,
.service-card p {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* SERVICES */

.section-heading {
    max-width: 760px;
    text-align: center;
    margin-bottom: 64px;
}

.section-heading p {
    margin-top: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 154, 59, 0.45);
}

.service-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 26px;
}

.service-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    font-weight: 700;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.82rem;
}

.service-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 700;
}

/* LOCATION */

.location-section {
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 1), rgba(7, 7, 7, 1));
}

.location-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

.location-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.location-copy p {
    margin: 24px 0 32px;
}

/* REVIEWS */

.reviews-grid {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    position: relative;
    overflow: hidden;

    min-height: 420px;
    padding: 50px;

    opacity: 0;
    transform: translateY(18px) scale(0.98);

    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));

    border: 1px solid rgba(200, 154, 59, 0.18);
    border-radius: 28px;

    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.review-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.review-card:hover {
    border-color: rgba(200, 154, 59, 0.36);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.6),
        0 0 38px rgba(200, 154, 59, 0.08);
}

.logo-image-background {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 260px;
    opacity: 0.20;
    filter: grayscale(100%) brightness(0.85);
    pointer-events: none;
    z-index: 0;
}

.stars {
    position: relative;
    z-index: 2;
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 4px;
    margin-bottom: 22px;
    text-shadow: 0 0 14px rgba(200, 154, 59, 0.35);
}

.review-card p {
    position: relative;
    z-index: 2;

    color: var(--text-main);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    line-height: 1.45;
    font-weight: 500;

    margin-bottom: 24px;
}

.review-card span {
    position: relative;
    z-index: 2;

    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 22px;
}

.gallery-grid img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.gallery-grid img:nth-child(2) {
    height: 430px;
    margin-top: 90px;
}

/* CONTACT */

.contact-section {
    background:
        radial-gradient(circle at top right, rgba(200, 154, 59, 0.16), transparent 42%),
        #0b0b0b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-copy p {
    margin-top: 22px;
}

.contact-details {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

.contact-details a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s ease;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-details i {
    color: var(--gold);
}

.contact-form {
    padding: 34px;
}

.form-group {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.form-group label {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-main);
    padding: 15px 16px;
    outline: none;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.09);
}

.form-group textarea {
    resize: vertical;
}

.form-group select option {
    color: #111;
}

/* MAP SECTION */

.map-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(200, 154, 59, 0.12), transparent 34%),
        linear-gradient(180deg, #0b0b0b, #050505);
}

.map-heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 52px;
}

.map-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 500;
    line-height: 1;
}

.map-heading p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.map-frame {
    position: relative;
    overflow: hidden;
    height: 520px;
    border-radius: 30px;
    border: 1px solid rgba(200, 154, 59, 0.24);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(200, 154, 59, 0.08);
    background: #050505;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;

    filter:
        grayscale(100%)
        invert(92%)
        contrast(95%)
        brightness(65%)
        sepia(18%)
        saturate(120%);

    opacity: 0.78;
}

.map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 45%, rgba(0, 0, 0, 0.25)),
        radial-gradient(circle at 20% 30%, rgba(200, 154, 59, 0.16), transparent 32%);
}

.map-overlay-card {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 2;
    max-width: 360px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(200, 154, 59, 0.28);
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.map-overlay-card span {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-overlay-card p {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA */

.demo-cta-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(200, 154, 59, 0.16), transparent 36%),
        linear-gradient(180deg, #060606, #0b0b0b);
}

.demo-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 40px;
    border: 1px solid rgba(200, 154, 59, 0.28);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.demo-cta-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1;
}

.demo-cta-box p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px auto 34px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.demo-cta-box .btn {
    min-width: 280px;
}

/* FOOTER */

.site-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding-top: 70px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.6fr;
    gap: 44px;
}

.footer-inner p {
    color: var(--text-muted);
    margin-top: 18px;
    line-height: 1.7;
    max-width: 420px;
}

.footer-links {
    display: grid;
    gap: 14px;
}

.footer-links a,
.footer-socials a {
    color: var(--text-muted);
    transition: 0.25s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding: 22px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.86rem;
}

/* REVEAL */

.reveal-card {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* 404 PAGE */

.error-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
    padding: 32px;
}

.error-page .bg-image {
    position: absolute;
    inset: 0;
    background-image: url("../images/hero1.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    z-index: 0;
}

.error-page .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 45%, rgba(200, 154, 59, 0.18), transparent 38%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.94));
}

.error-page .content {
    position: relative;
    z-index: 2;
    width: min(100%, 860px);
    text-align: center;
    padding: 72px 46px;
    border-radius: 32px;
    border: 1px solid rgba(200, 154, 59, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(18px);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.72),
        0 0 50px rgba(200, 154, 59, 0.08);
}

.error-code {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.error-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7.4rem);
    font-weight: 500;
    line-height: 0.95;
    color: var(--text-main);
}

.error-page p {
    max-width: 620px;
    margin: 28px auto 38px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 360px);
        height: 100vh;
        background: rgba(7, 7, 7, 0.96);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        padding: 110px 32px 32px;
        transition: 0.35s ease;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .logo-image {
        height: 52px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .intro-grid,
    .location-grid,
    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .review-card {
        min-height: 320px;
        padding: 38px;
    }

    .logo-image-background {
        width: 220px;
        opacity: 0.2;
    }

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

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

    .gallery-grid img,
    .gallery-grid img:nth-child(2) {
        height: 420px;
        margin-top: 0;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-header {
        padding: 16px 0;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .brand-text {
        font-size: 1.35rem;
    }

    .brand-track img {
        width: 150px;
        height: 120px;
        object-fit: contain;
    }

    .hero {
        min-height: 92vh;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

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

    .btn {
        width: 100%;
    }

    .brand-strip-inner {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 22px 0;
    }

    .brand-strip-inner span {
        flex: 0 0 auto;
    }

    section {
        padding: 78px 0;
    }

    .section-copy h2,
    .section-heading h2,
    .location-copy h2,
    .contact-copy h2 {
        font-size: 2.7rem;
    }

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

    .service-image {
        min-height: 250px;
    }

    .location-image img {
        min-height: 390px;
    }

    .review-card {
        min-height: 300px;
        padding: 30px;
    }

    .review-card p {
        font-size: 1.4rem;
    }

    .logo-image-background {
        width: 190px;
        bottom: -24px;
        right: -24px;
    }

    .gallery-grid img,
    .gallery-grid img:nth-child(2) {
        height: 360px;
    }

    .contact-form {
        padding: 24px;
    }

    .demo-cta-section {
        padding: 80px 0;
    }

    .demo-cta-box {
        padding: 48px 24px;
        border-radius: 22px;
    }

    .demo-cta-box .btn {
        min-width: 100%;
    }

    .map-section {
        padding: 80px 0;
    }

    .map-frame {
        height: 440px;
        border-radius: 24px;
    }

    .map-overlay-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    /* 404 PAGE */

    .error-page {
        padding: 18px;
    }

    .error-page .content {
        padding: 48px 24px;
        border-radius: 24px;
    }

    .error-page p {
        font-size: 0.98rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}