:root {
    --bg: #050608;
    --bg-soft: #0b0d10;
    --panel: #101218;
    --panel-soft: #151821;
    --text: #f4f4f5;
    --text-soft: #a1a1aa;
    --border-subtle: #27272f;
    --gold: #f5d27b;
    --gold-soft: rgba(245, 210, 123, 0.16);
    --gold-strong: #e2b45a;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.6);
    --max-width: 1120px;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top, #111827 0, #020617 42%, #000 100%);
    color: var(--text);
    line-height: 1.6;
}

/* Layout helpers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 6, 11, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(23, 23, 30, 0.9);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.logo img {
    height: 34px;
    width: 34px;
    object-fit: contain;
    border-radius: 999px;
    background: radial-gradient(circle at top, #2a2420, #050608);
    padding: 4px;
    border: 1px solid rgba(245, 210, 123, 0.7);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.95rem;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
    opacity: 0.9;
}

.nav-link.active {
    color: var(--gold);
    border-color: var(--gold-soft);
}

.nav-button {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 210, 123, 0.6);
    background: linear-gradient(
        135deg,
        rgba(245, 210, 123, 0.16),
        rgba(24, 21, 14, 0.95)
    );
    color: var(--gold);
    font-size: 0.9rem;
}

/* Mobile nav button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.9);
    background: rgba(9, 9, 13, 0.98);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: #e4e4e7;
}

/* Hero */
.hero {
    padding: 3.8rem 0 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 2.8rem;
    align-items: center;
}

/* Left side */
.hero-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(39, 39, 47, 0.9);
    background: radial-gradient(circle at top, #17131a, #050608);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.hero-logo-card img {
    height: 42px;
    width: 42px;
    object-fit: contain;
}

.hero-left h1 {
    font-size: clamp(2.3rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.hero-left p {
    color: var(--text-soft);
    max-width: 30rem;
    margin-bottom: 1.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.btn.primary {
    background: radial-gradient(circle at top, #f5d27b, #e2b45a);
    color: #14110c;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.85);
}

.btn.ghost {
    background: rgba(15, 15, 20, 0.95);
    border-color: rgba(63, 63, 70, 0.9);
    color: var(--text-soft);
}

.btn.ghost:hover {
    background: rgba(19, 19, 27, 0.98);
    color: var(--text);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.badge {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.32rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(39, 39, 47, 0.9);
    background: rgba(12, 12, 18, 0.95);
    color: var(--text-soft);
}

/* Right side */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-panel {
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, #18141f, #050608);
    border: 1px solid rgba(63, 63, 70, 0.98);
    box-shadow: var(--shadow-soft);
}

.hero-panel h2 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.hero-panel ul {
    list-style: none;
    margin-bottom: 0.9rem;
}

.hero-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.hero-panel li::before {
    content: "•";
    color: var(--gold);
    margin-top: 0.1rem;
}

.panel-link {
    display: inline-flex;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--gold);
    opacity: 0.9;
}

.panel-link:hover {
    opacity: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.stat {
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(10, 10, 15, 0.96);
    border: 1px solid rgba(39, 39, 47, 0.9);
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* Sections general */
.section {
    padding: 3rem 0;
}

.section-soft {
    background: radial-gradient(circle at top, #09090f, #020308);
    border-top: 1px solid rgba(24, 24, 32, 0.9);
    border-bottom: 1px solid rgba(24, 24, 32, 0.9);
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    color: var(--text-soft);
    max-width: 36rem;
    margin-bottom: 1.7rem;
}

/* Grid */
.grid.three-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

/* Cards */
.card {
    padding: 1.3rem 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(10, 10, 16, 0.98);
    border: 1px solid rgba(39, 39, 47, 0.95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.card-outline {
    background: linear-gradient(
        135deg,
        rgba(245, 210, 123, 0.06),
        rgba(9, 9, 14, 0.98)
    );
    border-color: rgba(245, 210, 123, 0.35);
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-soft);
    font-size: 0.94rem;
}

/* Approach section */
.approach {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: center;
}

.list {
    list-style: none;
}

.list li {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.list li::before {
    content: "– ";
    color: var(--gold);
}

.quote-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, #26202b, #050608);
    border: 1px solid rgba(63, 63, 70, 0.98);
    box-shadow: var(--shadow-soft);
    color: var(--text-soft);
    font-size: 0.96rem;
    font-style: italic;
}

/* Section CTA */
.section-cta {
    margin-top: 2rem;
    text-align: center;
}

/* CTA bar bottom */
.section-cta-bar {
    padding: 2.1rem 0 2.3rem;
    border-top: 1px solid rgba(24, 24, 32, 0.9);
    background: linear-gradient(
        135deg,
        rgba(245, 210, 123, 0.14),
        rgba(6, 6, 10, 1)
    );
}

.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.cta-bar-inner h2 {
    font-size: 1.25rem;
}

.cta-bar-inner p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 1.4rem 0 1.8rem;
    background: #020308;
    border-top: 1px solid rgba(24, 24, 32, 0.9);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer a {
    color: var(--text-soft);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 950px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-right {
        order: -1;
    }

    .hero-panel {
        margin-bottom: 0.4rem;
    }

    .grid.three-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approach {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .header-inner {
        height: 66px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        inset: 66px 1.5rem auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 1rem;
        background: rgba(9, 9, 14, 0.98);
        border-radius: 18px;
        border: 1px solid rgba(39, 39, 47, 0.98);
        box-shadow: 0 24px 55px rgba(0, 0, 0, 0.85);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 0.18s ease,
            transform 0.18s ease;
    }

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

    .grid.three-cols {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
}



/* Contact page – luxury style */
.contact-hero {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.contact-hero h1 {
    font-size: 2.1rem;
    margin-bottom: 0.4rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: flex-start;
}

/* Main card */
.contact-panel {
    padding: 1.8rem 1.9rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(245, 210, 123, 0.06), #050608);
    border: 1px solid rgba(245, 210, 123, 0.35);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
}

.contact-panel h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--text-soft);
    margin-bottom: 0.4rem;
}

.contact-email a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.92rem;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Form layout */
.contact-form {
    margin-top: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.input-group label {
    font-size: 0.83rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.input-group input,
.input-group textarea {
    padding: 0.68rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(39, 39, 47, 0.95);
    background: rgba(7, 7, 12, 0.98);
    color: var(--text);
    font-size: 0.94rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #52525b;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: rgba(245, 210, 123, 0.85);
    box-shadow: 0 0 0 1px rgba(245, 210, 123, 0.4);
    background: rgba(10, 10, 16, 0.98);
}

.contact-submit {
    align-self: flex-start;
    margin-top: 0.2rem;
    padding-inline: 1.8rem;
}

/* Small note */
.contact-note {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* Honeypot hidden */
.honeypot {
    display: none;
}

/* Side info card */
.contact-side {
    padding: 1.5rem 1.6rem;
    border-radius: 22px;
    background: rgba(8, 8, 13, 0.98);
    border: 1px solid rgba(39, 39, 47, 0.95);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
}

.contact-side h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.contact-side ul {
    list-style: none;
    margin-bottom: 1.1rem;
}

.contact-side li {
    color: var(--text-soft);
    font-size: 0.93rem;
    margin-bottom: 0.4rem;
}

.contact-side li::before {
    content: "• ";
    color: var(--gold);
}

.contact-meta p {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 0.3rem;
}

.contact-meta span {
    color: var(--text);
}

/* Responsive contact */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-panel,
    .contact-side {
        border-radius: 20px;
    }
}
