:root {
    --bg-main: #0F0A07;
    --bg-secondary: #16100C;
    --brown: #3B2416;
    --gold: #C89B63;
    --beige: #E8D9C7;
    --text-white: #F5F5F5;
    --text-secondary: #B8A999;
    --ink: #17100c;
    --cream: #F4EEE7;
    --cream-soft: #FBF7F1;
    --line-dark: rgba(232, 217, 199, .18);
    --line-light: rgba(59, 36, 22, .2);
    --shadow-premium: 0 30px 80px rgba(15, 10, 7, .42);
    --radius: 20px;
    --container: 1400px;
    --header-height: 96px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    background: var(--bg-main);
    color: var(--text-white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 5px;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header-height);
    transition: height .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 7, .68), rgba(15, 10, 7, 0));
    pointer-events: none;
    transition: opacity .35s ease;
}

.site-header.is-scrolled {
    height: 78px;
    background: rgba(15, 10, 7, .72);
    border-bottom: 1px solid rgba(200, 155, 99, .18);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before {
    opacity: 0;
}

.site-header__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 104px, var(--container));
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 260px 1fr 220px;
    align-items: center;
    gap: 28px;
}

.brand {
    width: fit-content;
}

.brand img {
    width: 210px;
    height: auto;
}

.primary-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 42px;
}

.primary-nav a {
    position: relative;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.primary-nav a:first-child,
.primary-nav a:hover {
    color: var(--gold);
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    justify-self: end;
    min-width: 164px;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(15, 10, 7, .22);
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.header-cta svg,
.btn svg,
.back-to-top svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-cta:hover {
    color: var(--bg-main);
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 38px rgba(200, 155, 99, .22);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(200, 155, 99, .42);
    border-radius: 50%;
    background: rgba(15, 10, 7, .42);
    color: var(--gold);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-main);
}

.hero__background {
    position: absolute;
    inset: -3% 0 -9%;
    background-size: cover;
    background-position: center top;
    will-change: transform;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.02);
}

.hero__background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 10, 7, .08) 0%, rgba(15, 10, 7, .02) 63%, rgba(15, 10, 7, .72) 100%),
        radial-gradient(ellipse at 66% 32%, rgba(200, 155, 99, .16), transparent 32%);
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-top: 74px;
    display: grid;
    grid-template-columns: minmax(570px, .92fr) minmax(420px, 1.08fr);
    align-items: center;
}

.hero__content {
    max-width: 690px;
    padding-top: 42px;
}

.hero h1,
.about-copy h2,
.products-heading h2,
.visit-cta h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0;
}

.hero h1 {
    color: var(--text-white);
    font-size: 5.3rem;
    line-height: .95;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .42);
}

.hero h1 .line {
    display: block;
    white-space: nowrap;
}

.hero h1 .accent,
.about-copy h2 .gold {
    color: var(--gold);
}

.hero p {
    max-width: 420px;
    margin: 30px 0 32px;
    color: var(--text-white);
    font-size: 1.25rem;
    line-height: 1.55;
}

.btn {
    position: relative;
    isolation: isolate;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #D8AA6A 0%, var(--gold) 48%, #9F6B36 100%);
    transition: filter .28s ease, transform .28s ease;
}

.btn-primary {
    color: #fff;
    box-shadow: 0 18px 42px rgba(200, 155, 99, .24);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(200, 155, 99, .34);
}

.btn-primary:hover::before {
    filter: brightness(1.08);
    transform: scale(1.02);
}

.btn-outline {
    color: #B37639;
    border-color: rgba(176, 118, 57, .7);
    background: rgba(255, 255, 255, .38);
}

.btn-outline::before {
    background: rgba(255, 255, 255, .15);
}

.btn-outline:hover {
    color: var(--text-white);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(59, 36, 22, .14);
}

.btn-outline:hover::before {
    background: linear-gradient(135deg, #D8AA6A, #9F6B36);
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 74px;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(244, 238, 231, .95) 46%, rgba(232, 217, 199, .78) 100%),
        var(--cream);
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 34%),
        radial-gradient(ellipse at 78% 32%, rgba(200, 155, 99, .12), transparent 36%);
    pointer-events: none;
}

.about-grid {
    position: relative;
    z-index: 1;
    width: min(100% - 156px, 1240px);
    display: grid;
    grid-template-columns: .88fr 1.25fr;
    align-items: center;
    gap: 92px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #B37639;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-copy h2 {
    color: var(--ink);
    font-size: 2.65rem;
    line-height: 1.05;
}

.about-copy h2 .about-line {
    color: var(--ink);
    display: inline-block;
    white-space: nowrap;
}

.about-copy p:not(.eyebrow) {
    max-width: 520px;
    margin: 26px 0 0;
    color: #3b3029;
    font-size: .96rem;
    line-height: 1.9;
}

.about-copy .btn {
    margin-top: 34px;
}

.about-media {
    position: relative;
    min-height: 420px;
}

.about-media img {
    width: 100%;
    height: 394px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 34px 70px rgba(59, 36, 22, .22);
}

.stats-card {
    position: absolute;
    right: 24px;
    bottom: -66px;
    width: 266px;
    padding: 22px 28px;
    border: 1px solid rgba(232, 217, 199, .18);
    border-radius: 16px;
    background: rgba(22, 16, 12, .92);
    color: var(--text-white);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(18px);
}

.stats-card__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
    align-items: center;
    padding: 10px 0 20px;
}

.stats-card__item + .stats-card__item {
    border-top: 1px solid rgba(232, 217, 199, .13);
    padding-top: 22px;
    padding-bottom: 8px;
}

.stats-card__icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200, 155, 99, .72);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.stats-card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stats-card strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 600;
}

.stats-card small {
    color: var(--text-secondary);
    font-size: .74rem;
    line-height: 1.45;
}

.differentials {
    position: relative;
    z-index: 1;
    width: min(100% - 120px, 1240px);
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.differential-card {
    min-height: 168px;
    padding: 22px 20px;
    border-radius: 18px;
    text-align: center;
    transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.differential-card svg {
    width: 42px;
    height: 42px;
    margin-inline: auto;
    color: #B37639;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.differential-card h3 {
    margin: 14px 0 8px;
    color: #16100C;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 600;
}

.differential-card p {
    max-width: 240px;
    margin: 0 auto;
    color: #3d3129;
    font-size: .9rem;
    line-height: 1.75;
}

.differential-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .32);
    box-shadow: 0 22px 58px rgba(59, 36, 22, .11);
}

.products-section {
    position: relative;
    overflow: hidden;
    padding: 58px 0 66px;
    background:
        radial-gradient(ellipse at 12% 24%, rgba(90, 54, 28, .42), transparent 34%),
        linear-gradient(90deg, #100906 0%, #28160c 47%, #100906 100%);
}

.products-section::before,
.products-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.products-section::before {
    background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 18%, transparent 82%, rgba(0,0,0,.28));
}

.products-section::after {
    border-top: 1px solid rgba(232, 217, 199, .08);
    border-bottom: 1px solid rgba(232, 217, 199, .08);
}

.products-heading {
    position: relative;
    z-index: 1;
    text-align: center;
}

.products-heading .eyebrow {
    margin-bottom: 6px;
    color: var(--gold);
}

.products-heading h2 {
    font-size: 3.65rem;
    line-height: 1.05;
}

.products-heading p:not(.eyebrow) {
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: .95rem;
}

.product-grid {
    position: relative;
    z-index: 1;
    width: min(100% - 78px, 1310px);
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-card {
    position: relative;
    overflow: hidden;
    min-height: 276px;
    border: 1px solid rgba(232, 217, 199, .28);
    border-radius: 9px;
    background: rgba(22, 16, 12, .74);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(15, 10, 7, .9) 66%, rgba(15, 10, 7, .98) 100%);
    pointer-events: none;
}

.product-card figure {
    margin: 0;
    height: 174px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
}

.product-card__body {
    position: relative;
    z-index: 1;
    margin-top: -34px;
    padding: 0 18px 18px;
}

.product-card__icon {
    width: 33px;
    height: 33px;
    border: 1px solid rgba(200, 155, 99, .74);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(15, 10, 7, .54);
    backdrop-filter: blur(10px);
}

.product-card__icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-card h3 {
    margin: 16px 0 8px;
    color: var(--text-white);
    font-size: 1.12rem;
    line-height: 1.35;
    font-weight: 500;
}

.product-card p {
    margin: 0;
    color: #D3C6B8;
    font-size: .84rem;
    line-height: 1.75;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 155, 99, .64);
    box-shadow: 0 32px 70px rgba(0, 0, 0, .36), 0 0 36px rgba(200, 155, 99, .09);
}

.product-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.06) contrast(1.05);
}

.products-action {
    position: relative;
    z-index: 1;
    margin-top: 36px;
    text-align: center;
}

.products-action .btn {
    min-width: 288px;
    border-radius: 9px;
}

.visit-cta {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(232, 217, 199, .16);
    border-bottom: 1px solid rgba(232, 217, 199, .16);
}

.visit-cta__background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.visit-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 26% 54%, rgba(200, 155, 99, .16), transparent 38%);
    pointer-events: none;
}

.visit-cta__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 156px, 1180px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.visit-cta__copy {
    display: flex;
    align-items: center;
    gap: 34px;
}

.visit-cta__icon {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(15, 10, 7, .3);
}

.visit-cta__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.visit-cta h2 {
    font-size: 3rem;
    line-height: 1.02;
}

.visit-cta p {
    margin: 10px 0 0;
    color: var(--beige);
    font-size: 1rem;
    line-height: 1.55;
}

.visit-cta .btn {
    min-width: 282px;
    border-radius: 9px;
}

.site-footer {
    position: relative;
    padding: 56px 0 30px;
    background:
        radial-gradient(ellipse at 18% 18%, rgba(75, 42, 22, .28), transparent 38%),
        linear-gradient(90deg, #120b07 0%, #24150d 50%, #120b07 100%);
    color: var(--beige);
}

.footer-grid {
    width: min(100% - 156px, 1180px);
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.1fr;
    gap: 90px;
}

.footer-brand img {
    width: 190px;
    height: auto;
}

.footer-brand p {
    max-width: 320px;
    margin: 28px 0 24px;
    color: #D1C2B1;
    font-size: .94rem;
    line-height: 1.9;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a,
.footer-contact svg {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(200, 155, 99, .32);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.social-links svg,
.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links a:hover {
    color: var(--bg-main);
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-links h2,
.footer-contact h2 {
    margin: 0 0 24px;
    color: var(--text-white);
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links a {
    width: min(100%, 220px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    color: #D1C2B1;
    font-size: .92rem;
    transition: color .25s ease, transform .25s ease;
}

.footer-links a span {
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact {
    margin: 0;
    font-style: normal;
}

.footer-contact a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    margin: 0 0 22px;
    color: #D1C2B1;
    font-size: .93rem;
    line-height: 1.55;
    transition: color .25s ease;
}

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

.footer-contact svg {
    width: 42px;
    height: 42px;
    padding: 10px;
}

.footer-bottom {
    width: min(100% - 156px, 1180px);
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(232, 217, 199, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #938577;
    font-size: .78rem;
}

.back-to-top {
    position: fixed;
    right: 34px;
    bottom: 28px;
    z-index: 45;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: #D5A86E;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
