/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-950: #0d0a0f;
    --plum-900: #1a1220;
    --plum-800: #231829;
    --plum-700: #2e2038;
    --plum-600: #3d2d4a;
    --plum-500: #5a3d6e;
    --plum-400: #8b5fa0;
    --plum-300: #b88ec4;
    --plum-200: #d4b8dc;
    --plum-100: #ede4f0;
    --plum-50: #f7f2fa;

    --amber-500: #C9A84C;
    --amber-400: #D4B96A;
    --amber-300: #E0CA88;
    --amber-200: #EBDAA6;
    --amber-100: #F5EDC4;
    --amber-600: #B8943F;
    --amber-700: #9A7B32;

    --cream: #F5F0EB;
    --cream-dark: #E8E0D8;
    --text-light: #F0E8F5;
    --text-muted: #B8A8C0;
    --text-dark: #1A1220;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E0CA88 50%, #B8943F 100%);
    --plum-gradient: linear-gradient(160deg, #1a1220 0%, #2e2038 50%, #3d2d4a 100%);
}

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

body {
    font-family: var(--font-body);
    background: var(--plum-950);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(13, 10, 15, 0.95);
    border-bottom-color: rgba(201, 168, 76, 0.2);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--amber-400);
    white-space: nowrap;
}

.nav-brand-icon {
    color: var(--amber-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.25s ease;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-cta {
    background: var(--gold-gradient) !important;
    color: var(--plum-950) !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    margin-left: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--plum-950);
    padding-top: 72px;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(93, 61, 110, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 95, 160, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--amber-500);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-verb {
    display: block;
    font-style: italic;
    color: var(--amber-400);
    font-size: 0.85em;
}

.hero-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 16px 0;
    border-radius: 2px;
}

.hero-highlight {
    position: relative;
    color: var(--text-light);
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-trust-item svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 50%;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gold-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    z-index: -1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--plum-950);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(240, 232, 245, 0.2);
}

.btn-ghost:hover {
    border-color: var(--amber-500);
    color: var(--amber-400);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--amber-500);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 20px;
}

.gold-text {
    color: var(--amber-400);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--plum-900);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-sub {
    margin: 0 auto;
}

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

.service-card {
    background: var(--plum-800);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-featured {
    background: linear-gradient(160deg, var(--plum-700) 0%, var(--plum-800) 100%);
    border-color: rgba(201, 168, 76, 0.15);
}

.service-card-featured::before {
    opacity: 1;
}

.service-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-950);
    background: var(--gold-gradient);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    color: var(--amber-500);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== APPROACH ===== */
.approach {
    padding: 120px 0;
    background: var(--plum-950);
    position: relative;
}

.approach-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.approach-visual {
    position: relative;
}

.approach-image-stack {
    position: relative;
    height: 620px;
}

.approach-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.approach-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 48%;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.approach-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-quote {
    position: absolute;
    bottom: 60px;
    left: -30px;
    background: var(--plum-800);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.approach-quote svg {
    color: var(--amber-500);
    margin-bottom: 12px;
    opacity: 0.6;
}

.approach-quote blockquote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.approach-quote cite {
    font-size: 0.8rem;
    color: var(--amber-500);
    font-style: normal;
}

.approach-content .section-sub {
    margin-bottom: 40px;
}

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

.approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pillar {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(201, 168, 76, 0.3);
    padding-top: 2px;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 4px;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--plum-900);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-sub {
    margin-bottom: 24px;
}

.about-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--plum-800);
    border: 1px solid rgba(201, 168, 76, 0.06);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.about-value-icon {
    color: var(--amber-500);
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-bar {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--plum-800) 0%, var(--plum-900) 50%, var(--plum-950) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 95, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content .section-eyebrow {
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--plum-950);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

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

.contact-info .section-sub {
    margin-bottom: 40px;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    color: var(--amber-500);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--amber-400);
}

.contact-hours {
    background: var(--plum-800);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
}

.contact-hours h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: var(--plum-800);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--plum-900);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: border-color 0.25s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(184, 168, 192, 0.5);
}

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

.form-group 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 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select option {
    background: var(--plum-800);
    color: var(--text-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px;
    color: var(--amber-400);
}

.form-success svg {
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--plum-950);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--amber-400);
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--amber-500);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(184, 168, 192, 0.5);
}

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

    .hero-visual {
        height: 450px;
        max-width: 500px;
    }

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

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

    .approach-image-stack {
        height: 450px;
        max-width: 500px;
    }

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

    .about-image {
        max-width: 500px;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        margin-top: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-inner {
        padding: 40px 24px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .services {
        padding: 80px 0;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.9rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: no-preference) {
    .service-card {
        transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
