@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f4d978;
    --black: #070707;
    --surface: #101010;
    --surface-2: #171717;
    --text: #ffffff;
    --muted: #aaa79f;
    --border: rgba(212, 175, 55, 0.22);
    --container: 1180px;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 820px;
    text-align: center;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 16px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--gold);
    color: #000;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.custom-logo {
    width: auto;
    max-height: 54px;
}

.text-logo,
.footer-brand {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.text-logo {
    font-size: 26px;
}

.text-logo span,
.footer-brand span {
    color: var(--gold);
}

.primary-menu,
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-menu a {
    position: relative;
    display: block;
    padding: 9px 0;
    color: #e9e9e9;
    font-size: 14px;
    font-weight: 600;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transition: right .25s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--gold);
}

.banner-slider {
    position: relative;
    overflow: hidden;
    background: #050505;
}

.banner-track {
    position: relative;
    min-height: clamp(260px, 32vw, 620px);
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}

.banner-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.banner-slide img {
    width: 100%;
    min-height: clamp(260px, 32vw, 620px);
    object-fit: cover;
}

.banner-placeholder {
    min-height: clamp(360px, 42vw, 620px);
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(212,175,55,.18), transparent 35%),
        linear-gradient(135deg, #070707 0%, #11100c 55%, #070707 100%);
}

.banner-placeholder h1 {
    max-width: 780px;
    margin: 12px 0 16px;
    font: 700 clamp(42px, 7vw, 88px)/1 "Playfair Display", serif;
}

.banner-placeholder p {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
}

.eyebrow,
.section-kicker {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
}

.banner-arrow,
.service-arrow {
    border: 1px solid var(--border);
    background: rgba(7,7,7,.8);
    color: var(--gold);
    cursor: pointer;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 64px;
    transform: translateY(-50%);
    font-size: 40px;
}

.banner-prev { left: 16px; }
.banner-next { right: 16px; }

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 4;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.banner-dots button {
    width: 26px;
    height: 4px;
    border: 0;
    background: rgba(255,255,255,.36);
    cursor: pointer;
}

.banner-dots button.is-active {
    background: var(--gold);
}

.ticker {
    background: #0b0b0b;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ticker-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    flex: 0 0 auto;
    padding-right: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.ticker-window {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}

.ticker-content span {
    padding-right: 70px;
    white-space: nowrap;
    color: #dedede;
    font-size: 13px;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.service-slider-wrap {
    position: relative;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
}

.service-slider-shell {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: stretch;
}

.service-slider {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.service-slider::-webkit-scrollbar {
    display: none;
}

.service-item {
    position: relative;
    flex: 0 0 150px;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    scroll-snap-align: center;
    color: #efefef;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-left: 1px solid rgba(255,255,255,.04);
    transition: color .25s ease, background .25s ease;
}

.service-item::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: transparent;
}

.service-item:hover {
    color: var(--gold-light);
    background: rgba(212,175,55,.05);
}

.service-item:hover::after {
    background: var(--gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
}

.service-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.service-icon-placeholder {
    color: var(--gold);
    font-size: 26px;
}

.service-arrow {
    width: 44px;
    min-height: 112px;
    font-size: 34px;
}

.section {
    padding: 90px 0;
}

.about-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(212,175,55,.08), transparent 35%),
        var(--black);
}

.section h1,
.section h2,
.page-header h1 {
    margin: 10px 0 18px;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
}

.section h1,
.section h2 {
    font-size: clamp(34px, 5vw, 54px);
}

.lead,
.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

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

.info-card {
    min-height: 260px;
    padding: 32px;
    background: linear-gradient(145deg, #151515, #0d0d0d);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.card-number {
    display: block;
    margin-bottom: 28px;
    color: var(--gold);
    font: 700 30px/1 "Playfair Display", serif;
}

.info-card h3,
.why-item h3 {
    margin: 0 0 10px;
}

.info-card p,
.why-item p,
.cta-box p,
.site-footer p {
    margin: 0;
    color: var(--muted);
}

.why-section {
    background: #0b0b0b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.02);
    border-radius: 14px;
}

.why-mark {
    flex: 0 0 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
    background:
        linear-gradient(120deg, rgba(212,175,55,.12), rgba(212,175,55,.02)),
        #111;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cta-box h2 {
    margin-bottom: 8px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.button-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #090909;
    box-shadow: 0 12px 35px rgba(212,175,55,.2);
}

.site-footer {
    padding: 70px 0 24px;
    background: #050505;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 40px;
}

.footer-brand {
    margin-bottom: 14px;
    font-size: 28px;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 15px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .14em;
}

.footer-menu li + li {
    margin-top: 8px;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 13px;
}

.page-main {
    min-height: 60vh;
    padding: 90px 0;
}

.content-container {
    max-width: 900px;
}

.page-header {
    margin-bottom: 36px;
}

.page-header h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.entry-content {
    color: #d0d0d0;
}

.entry-content h2,
.entry-content h3 {
    color: #fff;
    font-family: "Playfair Display", serif;
}

.entry-content a {
    color: var(--gold-light);
}

.post-list {
    display: grid;
    gap: 18px;
}

.post-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.error-page {
    text-align: center;
}

.error-code {
    display: block;
    color: var(--gold);
    font: 700 clamp(90px, 18vw, 180px)/1 "Playfair Display", serif;
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 14px;
        background: #101010;
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0,0,0,.45);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-menu {
        display: block;
    }

    .primary-menu a {
        padding: 13px 12px;
    }

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

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

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

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .primary-nav {
        top: 68px;
    }

    .custom-logo {
        max-height: 44px;
    }

    .banner-track,
    .banner-slide img {
        min-height: 240px;
    }

    .banner-placeholder {
        min-height: 430px;
    }

    .banner-placeholder h1 {
        font-size: 44px;
    }

    .banner-placeholder p {
        font-size: 15px;
    }

    .banner-arrow {
        width: 38px;
        height: 54px;
    }

    .banner-prev { left: 6px; }
    .banner-next { right: 6px; }

    .service-slider-shell {
        width: 100%;
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }

    .service-arrow {
        width: 34px;
    }

    .service-item {
        flex-basis: 122px;
        min-height: 98px;
        font-size: 10px;
    }

    .service-icon,
    .service-icon img {
        width: 44px;
        height: 44px;
    }

    .section {
        padding: 66px 0;
    }

    .info-card {
        min-height: auto;
        padding: 25px;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
