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

:root {
    --bg-primary: #0e0710;
    --bg-secondary: #1a0f1e;
    --bg-card: #1e1224;
    --bg-card-hover: #251730;
    --burgundy: #6b1d3a;
    --burgundy-light: #8a2550;
    --burgundy-dark: #4a0e1e;
    --blush: #f2c4ce;
    --blush-light: #fce9ed;
    --blush-muted: #d4a0aa;
    --gold: #c9a962;
    --gold-light: #dfc080;
    --gold-dark: #a8853a;
    --text-primary: #f5f0f7;
    --text-secondary: #c4b5c9;
    --text-muted: #8a7a8e;
    --border: rgba(201, 169, 98, 0.15);
    --border-light: rgba(201, 169, 98, 0.08);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

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

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

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

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

.nav.scrolled {
    background: rgba(14, 7, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.nav__logo-icon {
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav__links a:not(.nav__cta):hover {
    color: var(--gold);
}

.nav__links a:not(.nav__cta):hover::after {
    width: 100%;
}

.nav__cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 24px;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--bg-primary) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

/* ─── HERO ────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 7, 16, 0.95) 0%,
        rgba(74, 14, 30, 0.85) 40%,
        rgba(14, 7, 16, 0.9) 100%
    );
}

.hero__grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 8px 16px;
    margin-bottom: 28px;
}

.hero__title {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hero__title-accent {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero__title-main {
    display: block;
    font-weight: 300;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.hero__stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__stat-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
}

/* Hero image stack */
.hero__right {
    position: relative;
    height: 620px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__img-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero__img-card--main {
    width: 320px;
    height: 420px;
    top: 0;
    right: 20px;
    z-index: 2;
}

.hero__img-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero__img-card--main:hover img {
    transform: scale(1.05);
}

.hero__img-card--secondary {
    width: 220px;
    height: 280px;
    bottom: 80px;
    left: 0;
    z-index: 3;
    border: 2px solid var(--border);
}

.hero__img-card--secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img-card--accent {
    width: 160px;
    height: 200px;
    bottom: 20px;
    right: 0;
    z-index: 1;
    opacity: 0.8;
}

.hero__img-card--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: 260px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: var(--burgundy-dark);
    border: 1px solid var(--gold);
    padding: 16px 24px;
    text-align: center;
}

.hero__badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

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

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

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

.btn--full {
    width: 100%;
}

/* ─── SECTION COMMON ──────────────────────────── */
.section__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section__title--light {
    color: var(--text-primary);
}

.section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

/* ─── SERVICES ────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services__header {
    text-align: center;
    margin-bottom: 72px;
}

.services__header .section__subtitle {
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.card--service {
    display: flex;
    flex-direction: column;
}

.card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card__img-wrap img {
    transform: scale(1.08);
}

.card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 7, 16, 0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.card:hover .card__img-overlay {
    opacity: 1;
}

.card__img-overlay svg {
    color: var(--gold);
}

.card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card__features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* ─── MARQUEE ─────────────────────────────────── */
.marquee {
    padding: 32px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee__item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee__sep {
    color: var(--gold);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ─── GALLERY ─────────────────────────────────── */
.gallery {
    padding: 120px 0;
    background: var(--bg-primary);
}

.gallery__header {
    text-align: center;
    margin-bottom: 72px;
}

.gallery__header .section__subtitle {
    margin: 0 auto;
}

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

.gallery__item {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 7, 16, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item--wide {
    grid-column: span 7;
    aspect-ratio: 8/5;
}

.gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 3/4;
}

/* ─── ABOUT ───────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 29, 58, 0.15), transparent 70%);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about__visual {
    position: relative;
    height: 680px;
}

.about__img-main {
    width: 360px;
    height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--bg-secondary);
    box-shadow: var(--shadow);
}

.about__img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--burgundy-dark);
    border: 1px solid var(--gold);
    padding: 28px 32px;
    text-align: center;
    z-index: 2;
}

.about__exp-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.about__exp-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about__value strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.06), transparent 70%);
    pointer-events: none;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.card--testimonial {
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
}

.card__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 28px;
}

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

.card__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--burgundy-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

.card__author-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ─── CTA / CONTACT ───────────────────────────── */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--bg-primary) 60%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.cta__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.cta__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.cta__contact-item:hover {
    color: var(--gold);
}

.cta__contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Form */
.form {
    background: rgba(30, 18, 36, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    backdrop-filter: blur(10px);
}

.form__title {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

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

.form__input:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

.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 24 24' fill='none' stroke='%23c9a962' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 90px;
}

.form__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.form__success svg {
    color: var(--gold);
}

.form__success-title {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.form__success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 280px;
}

.footer__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__links a {
    transition: var(--transition);
}

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

.footer__hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    gap: 16px;
}

.footer__bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer__bottom a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__right {
        display: none;
    }

    .hero__left {
        max-width: 600px;
    }

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

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__visual {
        height: 480px;
        max-width: 480px;
    }

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

    .cta__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(14, 7, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__toggle {
        display: flex;
        z-index: 1001;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero__grid {
        padding-top: 100px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

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

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

    .gallery__item--wide {
        grid-column: span 2;
    }

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

    .form {
        padding: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }

    .about__visual {
        height: 360px;
    }

    .about__img-main {
        width: 100%;
        height: 360px;
    }

    .about__img-float {
        display: none;
    }

    .about__experience {
        right: 10px;
    }
}

/* ─── REDUCED MOTION ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .marquee__track {
        animation: none;
    }
}
