:root {
    --charcoal: #1a1a1f;
    --charcoal-light: #2a2a30;
    --charcoal-mid: #3a3a42;
    --brass: #c9a96e;
    --brass-light: #dfc493;
    --brass-dark: #a8873f;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d2;
    --white: #ffffff;
    --red: #c43a31;
    --text-dark: #1a1a1f;
    --text-mid: #6b6b73;
    --text-light: #a0a0a8;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== HEADER / NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(26, 26, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 3rem;
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.nav-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.nav-logo-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--brass);
    color: var(--brass) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--brass);
    color: var(--charcoal) !important;
}

.nav-cta::after { display: none !important; }

/* ===== MOBILE NAV ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 26, 31, 0.98);
        padding: 2rem;
        gap: 1.5rem;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-tag-line {
    width: 40px;
    height: 1px;
    background: var(--brass);
}

.hero-tag-text {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 500;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: var(--brass);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--brass);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brass-dark);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-ghost:hover { color: var(--white); }

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,31,0.6) 0%, transparent 50%);
}

.hero-diagonal {
    position: absolute;
    top: 0;
    left: -80px;
    width: 160px;
    height: 100%;
    background: var(--charcoal);
    transform: skewX(-3deg);
    z-index: 2;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    writing-mode: vertical-lr;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brass), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== ADVANTAGES STRIP ===== */
.advantages {
    background: var(--charcoal);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: background 0.4s;
}

.advantage-item:last-child { border-right: none; }

.advantage-item:hover {
    background: rgba(201, 169, 110, 0.05);
}

.advantage-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--brass);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.advantage-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-tag-line {
    width: 30px;
    height: 1px;
    background: var(--brass);
}

.section-tag-text {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brass-dark);
    font-weight: 600;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.section-title em {
    font-style: italic;
    color: var(--brass-dark);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.about-list {
    list-style: none;
    margin-bottom: 3rem;
}

.about-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 400;
}

.about-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brass);
    flex-shrink: 0;
    margin-top: 0.5rem;
    transform: rotate(45deg);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    position: relative;
}

.about-images::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--brass);
    opacity: 0.2;
    z-index: -1;
}

.about-img {
    overflow: hidden;
}

.about-img:first-child {
    grid-row: span 2;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(15%) contrast(1.05);
}

.about-img:hover img {
    transform: scale(1.06);
}

.about-btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-dark:hover { background: var(--charcoal-light); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* ===== SERVICES ===== */
.services {
    background: var(--charcoal);
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: 'SERVICES';
    position: absolute;
    top: 50%;
    left: -3%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: 14vw;
    font-weight: 700;
    color: rgba(255,255,255,0.015);
    letter-spacing: 0.05em;
    pointer-events: none;
    white-space: nowrap;
}

.services-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header .section-title { color: var(--white); }
.services-header .section-tag-text { color: var(--brass); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.5);
}

.service-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.35);
}

.service-card-content {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.service-card-num {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 300;
    color: var(--brass);
    opacity: 0.2;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
}

.service-card-title {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 360px;
    font-weight: 300;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-desc {
    transform: translateY(0);
    opacity: 1;
}

.service-card-line {
    width: 40px;
    height: 2px;
    background: var(--brass);
    margin-bottom: 1.25rem;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-line { width: 80px; }

/* ===== FEATURES ===== */
.features {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: var(--brass);
    opacity: 0.4;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brass);
    transform: rotate(45deg);
}

.feature-icon svg {
    transform: rotate(-45deg);
    color: var(--brass-dark);
}

.feature-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    overflow: hidden;
    margin: 0 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-inner {
    background: var(--charcoal);
    padding: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-inner::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(201, 169, 110, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-title em {
    font-style: italic;
    color: var(--brass);
}

.cta-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 300;
}

.cta-offerings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cta-offer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.cta-offer:hover {
    border-color: var(--brass);
    background: rgba(201, 169, 110, 0.05);
}

.cta-offer-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass);
}

.cta-offer-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.03em;
    font-weight: 400;
}

/* ===== CONTACT ===== */
.contact {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-phone {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

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

.contact-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-promise {
    padding: 1.5rem;
    border-left: 2px solid var(--brass);
    background: rgba(201, 169, 110, 0.04);
}

.contact-promise p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
}

.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color 0.3s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--brass);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

.form-submit:hover {
    background: var(--brass-dark);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

.form-status--success {
    color: #2e7d32;
}

.form-status--error {
    color: var(--red);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    padding: 4rem 3rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.footer-logo-text {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--brass); }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer-phone {
    color: var(--brass);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: 90vh; }
    .hero-image { position: absolute; inset: 0; }
    .hero-image img { filter: brightness(0.3); }
    .hero-diagonal { display: none; }
    .hero-content { padding: 8rem 3rem 5rem; position: relative; z-index: 3; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { order: -1; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { aspect-ratio: auto; }
    .service-card-content { position: relative; inset: auto; padding: 2rem; background: rgba(26,26,31,0.85); }
    .service-card img { position: absolute; inset: 0; height: 100%; }
    .service-card { position: relative; overflow: hidden; }
    .service-card-desc { opacity: 1; transform: none; }
    .service-card-num { font-size: 3.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner-inner { grid-template-columns: 1fr; padding: 3rem; }
    .cta-offerings { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero-content { padding: 7rem 1.5rem 4rem; }
    .hero-sub { font-size: 0.95rem; }
    .advantages-grid { grid-template-columns: 1fr; }
    .advantage-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .about { padding: 5rem 1.5rem; }
    .services { padding: 5rem 1.5rem; }
    .features { padding: 5rem 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-banner { margin: 0 1.5rem; }
    .cta-banner-inner { padding: 2.5rem 1.5rem; }
    .cta-offerings { grid-template-columns: 1fr; }
    .contact { padding: 5rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .hero-scroll { display: none; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .about-btn-group { gap: 1rem; }
    .about-btn-group .btn-dark,
    .about-btn-group .btn-outline { white-space: nowrap; padding: 1rem 1.5rem; }
}
