:root {
    --bg: #050509;
    --bg-alt: #0c0f16;
    --surface: #11141f;
    --surface-soft: #191d28;
    --border-subtle: rgba(255, 255, 255, 0.07);

    --text-main: #f5f5f8;
    --text-muted: #9ca3b5;
    --accent: #d4af37;
    --accent-soft: rgba(212, 175, 55, 0.1);

    --danger: #f97373;

    --radius-lg: 20px;
    --radius-xl: 26px;

    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
}

/* RESET & BASE */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Playfair+Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #15192b 0, #050509 45%, #020308 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: "Playfair+Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0 0 0.5em;
    letter-spacing: 0.01em;
    color: #ffffff;
}

p {
    margin: 0 0 0.75em;
}

/* LAYOUT */

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5,5,9,0.95), rgba(5,5,9,0.85), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #f5f5f5, #d4af37 40%, #543b10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #040307;
    box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.header-phone {
    font-weight: 700;
    font-size: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: radial-gradient(circle at top, rgba(212,175,55,0.12), rgba(0,0,0,0.6));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.header-phone:hover {
    border-color: var(--accent);
}

.header-cta {
    font-size: 0.8rem;
}

/* HERO */

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    gap: 3rem;
}

.hero-content {
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #000;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 3vw + 1.1rem, 3rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
      text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;

}

.hero-text {
    font-size: 0.98rem;
    color: #000;
    max-width: 34rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.3rem 0 1.8rem;
}

.pill {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(17,20,31,0.95));
    color: #eae4c6;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.hero-reassure {
    font-size: 0.8rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-reassure .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #eee;
}

/* HERO RIGHT PANEL */

.hero-panel {
    display: grid;
    gap: 1rem;
}

.hero-card {
    background: radial-gradient(circle at top left, rgba(212,175,55,0.58), rgba(25,29,40,1));
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.4rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
}

.hero-card-header {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1rem;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    font-size: 0.9rem;
}

.hero-card-list li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.45rem;
    color: #000;
}

.hero-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #eee;
}

.hero-card-footer p {
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 0.45rem;
}

.hero-card-phone-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250,250,250,0.8);
    margin-top: 0.4rem;
}

.hero-card-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.3rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: #151826;
    border: 1px solid rgba(212,175,55,0.55);
    font-weight: 600;
    font-size: 3.7rem;
}

.hero-card-phone:hover {
    border-color: var(--accent);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.7rem;
}

.stat {
    padding: 0.7rem 0.85rem;
    border-radius: 18px;
    background: rgba(10,12,18,0.94);
    border: 1px solid rgba(255,255,255,0.06);
}

.stat-value {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECTIONS */

.section {
    padding: 3.5rem 0;
}

.section--alt {
    background: radial-gradient(circle at top, rgba(255,255,255,0.04), rgba(5,5,9,1));
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.section-intro {
    max-width: 32rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease, border-color 0.08s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #f6e0a8, #d4af37, #88651c);
    color: #1b1305;
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

.btn--outline-light {
    border: 1px solid rgba(255,255,255,0.32);
    background: transparent;
    color: var(--text-main);
}

.btn--outline-light:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.02);
}

.btn--ghost {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(10,10,13,0.7);
    color: var(--text-main);
}

.btn--ghost:hover {
    border-color: rgba(255,255,255,0.4);
}

.btn--full {
    width: 100%;
}

/* CARDS GRID */

.cards-grid {
    display: grid;
    gap: 1.4rem;
}

.cards-grid--testimonials {
    gap: 1.6rem;
}

.card {
    background: rgba(11, 13, 19, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 35px rgba(0,0,0,0.55);
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card--testimonial {
    position: relative;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.12), rgba(11,13,19,0.98));
}

.card--testimonial::before {
    content: "“";
    position: absolute;
    top: 0.3rem;
    left: 0.8rem;
    font-size: 3rem;
    color: rgba(255,255,255,0.12);
    font-family: "Playfair+Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.card--testimonial .quote {
    margin-top: 0.8rem;
}

.card--testimonial .quote-meta {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--accent);
}

/* STEPS */

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step {
    display: flex;
    gap: 0.9rem;
    padding-left: 0.9rem;
    margin-bottom: 1.3rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #050509;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transform: translateX(-15px);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.7);
}

.step-content h3 {
    font-size: 1.02rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* TWO COLUMNS */

.two-cols {
    display: grid;
    gap: 2rem;
    align-items: flex-start;
}

.two-cols--reverse {
    direction: rtl;
}

.two-cols--reverse > * {
    direction: ltr;
}

/* CHECKLIST */

.checklist {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.checklist li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.8rem;
    color: var(--accent);
}

/* ACCENT PANEL */

.accent-panel {
    background: radial-gradient(circle at top, rgba(212,175,55,0.17), rgba(9,9,13,0.98));
    border-radius: var(--radius-xl);
    padding: 1.6rem 1.5rem;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: var(--shadow-soft);
}

.accent-panel-title {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fdf4c8;
    margin-bottom: 0.4rem;
}

.accent-panel-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

.accent-phone {
    display: inline-flex;
    margin: 0.8rem 0;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    background: #131621;
    border: 1px solid rgba(255,255,255,0.26);
    font-weight: 600;
}

.accent-panel-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ */

.faq {
    display: grid;
    gap: 0.8rem;
}

.faq details {
    border-radius: 14px;
    background: rgba(9, 11, 18, 0.96);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    float: right;
    font-weight: 500;
    color: var(--accent);
}

.faq details[open] summary::after {
    content: "–";
}

.faq p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* FORM */

.contact-form {
    background: rgba(8, 10, 16, 0.95);
    border-radius: var(--radius-xl);
    padding: 1.6rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
    margin-top: 1rem;
}

.form-row {
    margin-bottom: 0.9rem;
}

.form-row--split {
    display: grid;
    gap: 0.9rem;
}

label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

input,
textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(4, 5, 9, 0.95);
    padding: 0.55rem 0.75rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
    background: rgba(7, 9, 14, 0.98);
}

textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0.9rem;
}

/* CONTACT PANEL */

.contact-panel {
    background: radial-gradient(circle at top, rgba(212,175,55,0.14), rgba(11,13,19,0.98));
    border-radius: var(--radius-xl);
    padding: 1.6rem 1.5rem;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: var(--shadow-soft);
}

.contact-panel-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f7efcf;
    margin-bottom: 0.6rem;
}

.contact-panel-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

.contact-panel-phone {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: #11141f;
    border: 1px solid rgba(255,255,255,0.32);
    font-weight: 600;
}

.contact-panel-time {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FOOTER */

.site-footer {
    padding: 1.8rem 0 2rem;
    background: #030308;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-meta {
    margin-top: 0.25rem;
}

.footer-right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-right a {
    text-decoration: none;
    color: var(--text-main);
    opacity: 0.75;
}

.footer-right a:hover {
    opacity: 1;
}

/* RESPONSIVE */

@media (min-width: 860px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: center;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-cols {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

@media (max-width: 720px) {
    .header-inner {
        align-items: flex-start;
    }
    .header-contact {
        justify-content: flex-start;
    }
    .hero {
        padding-top: 3.5rem;
    }
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .form-row--split {
        grid-template-columns: 1fr;
    }
    .header-phone {
        width: 100%;
        justify-content: center;
    }
}
