:root {
    --bg-dark: #0b0d10;
    --bg-darker: #07090c;
    --bg-light: #f6f6f2;
    --text-light: #f7f7f5;
    --text-dark: #101419;
    --muted-light: #b9c0c8;
    --muted-dark: #5b6470;
    --accent: #c8a461;
    --accent-strong: #e6c885;
    --cool: #5b6f88;
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(16, 20, 25, 0.14);
    --shadow-dark: 0 18px 50px rgba(0, 0, 0, 0.35);
    --shadow-light: 0 24px 60px rgba(16, 20, 25, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 80px;
    --font-serif: "DM Serif Display", "Times New Roman", serif;
    --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-light);
    background: radial-gradient(30% 40% at 15% 10%, rgba(200, 164, 97, 0.18), transparent 60%),
        radial-gradient(35% 35% at 85% 10%, rgba(91, 111, 136, 0.22), transparent 55%),
        linear-gradient(180deg, #0b0d10 0%, #0f1217 60%, #0b0d10 100%);
    line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-strong);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -40px;
    background: var(--accent);
    color: #1a1208;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.section {
    padding: var(--space-7) 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 22px
        );
    opacity: 0.35;
    pointer-events: none;
}

.section-alt {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-alt::before {
    background-image: repeating-linear-gradient(
            135deg,
            rgba(16, 20, 25, 0.07),
            rgba(16, 20, 25, 0.07) 1px,
            transparent 1px,
            transparent 26px
        );
    opacity: 0.25;
}

.section .container {
    position: relative;
    z-index: 1;
}

.section-head {
    max-width: 720px;
    margin-bottom: var(--space-5);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: var(--space-2);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: var(--space-2);
}

h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-1);
}

p.lead {
    font-size: 1.1rem;
    color: var(--muted-light);
}

.muted {
    color: var(--muted-light);
}

.section-alt .muted {
    color: var(--muted-dark);
}

.grid {
    display: grid;
    gap: var(--space-4);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stack {
    display: grid;
    gap: var(--space-3);
}

.card {
    background: rgba(8, 10, 12, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: var(--space-3);
    box-shadow: var(--shadow-dark);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(200, 164, 97, 0.4), rgba(91, 111, 136, 0.2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 164, 97, 0.4);
    box-shadow: 0 36px 70px rgba(0, 0, 0, 0.45);
}

.section-alt .card {
    background: #ffffff;
    border-color: var(--border-dark);
    box-shadow: var(--shadow-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #1a1208;
    box-shadow: 0 18px 40px rgba(200, 164, 97, 0.35);
}

.btn-accent:hover {
    transform: translateY(-3px);
}

.btn-ghost {
    border-color: rgba(200, 164, 97, 0.5);
    color: var(--text-light);
    background: rgba(8, 10, 12, 0.4);
}

.section-alt .btn-ghost {
    color: var(--text-dark);
    background: rgba(16, 20, 25, 0.04);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(200, 164, 97, 0.35);
    font-size: 0.85rem;
    color: var(--muted-light);
    background: rgba(8, 10, 12, 0.5);
}

.section-alt .badge {
    background: rgba(16, 20, 25, 0.04);
    color: var(--muted-dark);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(8, 10, 12, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-family: var(--font-serif);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-menu a {
    font-size: 0.95rem;
    color: var(--muted-light);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(200, 164, 97, 0.5);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    margin: 4px 0;
    transition: transform 0.2s ease;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: var(--space-7) 0;
    overflow: hidden;
    background: #000;
}

.hero::before {
    display: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000 url('/assets/img/poster.jpg') center/cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(125%);
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.35));
}

.hero-ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-ornaments span {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 10px;
    border: 1px solid rgba(200, 164, 97, 0.35);
    background: linear-gradient(135deg, rgba(200, 164, 97, 0.2), transparent 65%);
    opacity: 0.65;
}

.hero-ornaments span:nth-child(1) {
    top: 12%;
    right: 12%;
}

.hero-ornaments span:nth-child(2) {
    bottom: 14%;
    left: 10%;
    border-color: rgba(91, 111, 136, 0.35);
    background: linear-gradient(135deg, rgba(91, 111, 136, 0.2), transparent 70%);
}

.hero-ornaments span:nth-child(3) {
    top: 48%;
    left: 35%;
    width: 240px;
    height: 240px;
    border-color: rgba(200, 164, 97, 0.25);
    background: linear-gradient(135deg, rgba(200, 164, 97, 0.15), transparent 70%);
}

.video-fallback {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    display: none;
}

.video-fallback.show {
    display: inline-flex;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-5);
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(8, 10, 12, 0.7);
    border: 1px solid rgba(200, 164, 97, 0.45);
    width: fit-content;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hero-logo .logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    display: none;
}

.hero-logo:hover {
    transform: scale(1.06);
    box-shadow: 0 0 22px rgba(200, 164, 97, 0.45);
}

.hero-text {
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.stats h3 {
    font-size: 2rem;
}

.stats .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(200, 164, 97, 0.7), rgba(91, 111, 136, 0.4));
}

.icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(200, 164, 97, 0.14);
    color: var(--accent);
    margin-bottom: var(--space-2);
}

.icon svg {
    width: 24px;
    height: 24px;
}

.section-alt .icon {
    background: rgba(200, 164, 97, 0.12);
}

.why-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-frame {
    width: 100%;
    min-height: 360px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(200, 164, 97, 0.12), rgba(91, 111, 136, 0.12));
    position: relative;
    overflow: hidden;
    padding: var(--space-3);
    display: flex;
    align-items: flex-end;
}

.section-alt .why-frame {
    border-color: rgba(16, 20, 25, 0.12);
}

.why-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    opacity: 0.6;
}

.why-grid span {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-alt .why-grid span {
    border-color: rgba(16, 20, 25, 0.08);
}

.timeline {
    list-style: none;
    display: grid;
    gap: var(--space-3);
}

.timeline li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3);
    align-items: start;
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-alt .timeline li {
    background: rgba(16, 20, 25, 0.03);
    border-color: rgba(16, 20, 25, 0.1);
}

.step {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.testimonial blockquote {
    font-size: 1rem;
    margin-bottom: var(--space-2);
    position: relative;
    padding-left: 22px;
}

.testimonial blockquote::before {
    content: "\"";
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2.5rem;
    color: rgba(200, 164, 97, 0.6);
    line-height: 1;
}

.testimonial figcaption {
    color: var(--muted-light);
}

.section-alt .testimonial figcaption {
    color: var(--muted-dark);
}

.meta {
    font-size: 0.85rem;
    color: var(--cool);
    margin-bottom: var(--space-1);
}

.link {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    margin-top: var(--space-2);
}

.contact-details p {
    margin-bottom: var(--space-2);
}

.form-card {
    display: grid;
    gap: var(--space-3);
}

.field-group {
    display: grid;
    gap: 6px;
}

.field-group input,
.field-group textarea {
    background: rgba(8, 10, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 12px;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.section-alt .field-group input,
.section-alt .field-group textarea {
    background: #ffffff;
    border-color: rgba(16, 20, 25, 0.12);
    color: var(--text-dark);
}

.field-group.checkbox {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.field-group.hidden {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.field-error {
    color: #f2a3a3;
    font-size: 0.85rem;
}

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.alert.success {
    background: rgba(200, 164, 97, 0.2);
    border: 1px solid rgba(200, 164, 97, 0.35);
}

.alert.error {
    background: rgba(242, 163, 163, 0.15);
    border: 1px solid rgba(242, 163, 163, 0.35);
}

.site-footer {
    padding: var(--space-6) 0 var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 8, 10, 0.95);
}

.footer-grid {
    display: grid;
    gap: var(--space-4);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: var(--space-4);
}

.footer-title {
    margin-bottom: var(--space-2);
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: var(--space-2);
}

.social-links {
    display: flex;
    gap: var(--space-2);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted-light);
}

.align-center {
    align-items: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(8, 10, 12, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-3);
        gap: var(--space-2);
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 75vh;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .badge-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}
