/* =============================================
   PROVENANCE — Global Styles
   ============================================= */

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

:root {
    /* Colors */
    --ivory:       #FAF8F5;
    --charcoal:    #1A1A1A;
    --warm-white:  #F5F0EB;
    --gold:        #8B7355;
    --navy:        #0A1628;
    --stone:       #7A7168;
    --green:       #2C4A3E;
    --light-cream: #E8E4DF;

    /* Typography */
    --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad:      140px;
    --section-pad-mob:  72px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--ivory);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul { list-style: none; }

/* ---------- Utility ---------- */
.section-label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 16px;
    text-align: center;
}

.section-heading {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--charcoal);
    text-align: center;
    line-height: 1.25;
}

/* Outlined CTA button */
.btn--outline {
    display: inline-block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn--outline:hover {
    background: rgba(139, 115, 85, 0.08);
}

/* Premium CTA button */
.btn--premium {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 40px;
    color: var(--gold);
    background: rgba(139, 115, 85, 0.05);
    border: 1px solid rgba(139, 115, 85, 0.3);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.btn--premium:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(139, 115, 85, 0.2);
}

.btn--premium:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn__text, .btn__icon {
    position: relative;
    z-index: 1;
    transition: color 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn--premium:hover .btn__text,
.btn--premium:hover .btn__icon {
    color: var(--navy);
}

.btn__icon {
    display: flex;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn--premium:hover .btn__icon {
    transform: translateX(4px);
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   1. NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: var(--ivory);
    border-bottom-color: var(--gold);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
}

.nav__wordmark {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--light-cream);
    transition: color 0.4s ease;
}

.nav.scrolled .nav__wordmark {
    color: var(--charcoal);
}

.nav__links {
    display: flex;
    gap: 36px;
}

.nav__links a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-cream);
    transition: color 0.3s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav.scrolled .nav__links a {
    color: var(--charcoal);
}

.nav.scrolled .nav__links a:hover {
    color: var(--gold);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--light-cream);
    transition: background 0.3s ease;
}

.nav.scrolled .nav__hamburger span {
    background: var(--charcoal);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 40px;
    background: none;
    border: none;
    color: var(--light-cream);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__links a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-cream);
    transition: color 0.3s ease;
}

.mobile-menu__links a:hover {
    color: var(--gold);
}


/* =============================================
   2. HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 30%, #17283c 0%, var(--navy) 80%);
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.hero__label::before,
.hero__label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(139, 115, 85, 0.4);
}

.hero__label::before {
    right: 100%;
    margin-right: 16px;
}

.hero__label::after {
    left: 100%;
    margin-left: 16px;
}

.hero__headline {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero__headline span {
    display: block;
    font-style: italic;
    color: var(--gold);
}

.hero__subtext {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 300;
    color: var(--light-cream);
    opacity: 0.8;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
    max-width: 500px;
    margin-inline: auto;
}

.hero .btn--premium {
    margin-bottom: 48px;
}


/* =============================================
   3. BRAND STATEMENT
   ============================================= */
.brand-statement {
    background: var(--ivory);
    padding: 100px 40px;
}

.brand-statement__inner {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.brand-statement__quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 3.5vw, 32px);
    line-height: 1.6;
    color: var(--charcoal);
    border: none;
    margin-bottom: 0;
}

.brand-statement__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.brand-statement__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brand-statement__stat-value {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--charcoal);
}

.brand-statement__stat-label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--stone);
    text-transform: uppercase;
}

.brand-statement__divider {
    width: 1px;
    height: 48px;
    background: var(--gold);
}


/* =============================================
   4. SERVICES
   ============================================= */
.services {
    background: var(--warm-white);
    padding: var(--section-pad) 40px;
}

.services__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services__header {
    margin-bottom: 80px;
}

.services__editorial {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Service Row: always-visible, no accordion --- */
.service-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
    cursor: pointer;
    position: relative;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                padding-left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.5;
}

.service-row:first-child {
    border-top: 1px solid rgba(139, 115, 85, 0.15);
}

/* Gold accent line that slides in on hover */
.service-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.service-row.active,
.service-row:hover {
    opacity: 1;
    padding-left: 20px;
}

.service-row.active::before,
.service-row:hover::before {
    transform: scaleY(1);
}

.service-row__number {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--gold);
    letter-spacing: 0.04em;
    padding-top: 2px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-row__content {
    flex: 1;
}

.service-row__title {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 10px;
    transition: color 0.6s ease;
}

.service-row.active .service-row__title,
.service-row:hover .service-row__title {
    color: var(--charcoal);
}

.service-row__desc {
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--stone);
    max-width: 560px;
}

.service-row__link {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                color 0.3s ease;
    align-self: center;
    white-space: nowrap;
}

.service-row.active .service-row__link,
.service-row:hover .service-row__link {
    opacity: 1;
    transform: translateX(0);
}

.service-row__link:hover {
    color: var(--charcoal);
}

/* --- Services Visual / Image Panel --- */
.services__visual {
    position: sticky;
    top: 120px;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.services__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.services__image.active {
    opacity: 1;
    transform: scale(1);
}


/* =============================================
   5. SELECTED VEHICLES
   ============================================= */
.vehicles {
    background: var(--ivory);
    padding: var(--section-pad) 40px;
}

.vehicles__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.vehicles__header {
    margin-bottom: 72px;
}

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

.vehicle-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.vehicle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-card__image img {
    transform: scale(1.02);
}

.vehicle-card__image span {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--light-cream);
    opacity: 0.5;
}

.vehicle-card__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 19px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.vehicle-card__spec {
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 12px;
    line-height: 1.6;
}

.vehicle-card__link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold);
    transition: color 0.3s ease;
}

.vehicle-card__link:hover {
    color: var(--charcoal);
}


/* =============================================
   6. ABOUT
   ============================================= */
.about {
    background: var(--navy);
    padding: var(--section-pad) 40px;
    overflow: hidden;
}

.about__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about__top {
    text-align: center;
    margin-bottom: 72px;
}

.about__label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.about__headline {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    color: var(--light-cream);
    margin-bottom: 0;
}

.about__headline-accent {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.about__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about__col--left {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-top: 8px;
}

.about__accent-line {
    width: 3px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(139, 115, 85, 0.15) 100%);
    border-radius: 2px;
    transition: background 0.6s ease;
}

.about__col--left:hover .about__accent-line {
    background: linear-gradient(180deg, var(--gold) 0%, rgba(139, 115, 85, 0.5) 100%);
}

.about__pullquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 1.5;
    color: var(--light-cream);
    border: none;
    margin: 0;
    padding: 0;
}

.about__col--right {
    padding-top: 8px;
}

.about__body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--light-cream);
    opacity: 0.8;
    margin-bottom: 24px;
}

.about__link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.about__link:hover {
    color: var(--light-cream);
    gap: 10px;
}



/* =============================================
   7. JOURNAL
   ============================================= */
.journal {
    background: var(--ivory);
    padding: var(--section-pad) 40px;
}

.journal__inner {
    max-width: 880px;
    margin: 0 auto;
}

.journal__header {
    margin-bottom: 56px;
}

.journal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.journal-card {
    padding-top: 24px;
}

.journal-card__border {
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.journal-card__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.35;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.journal-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 16px;
}

.journal-card__link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold);
    transition: color 0.3s ease;
}

.journal-card__link:hover {
    color: var(--charcoal);
}


/* =============================================
   8. CONTACT
   ============================================= */
.contact {
    background: var(--warm-white);
    padding: var(--section-pad) 40px;
}

.contact__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact__headline {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.contact__subtext {
    font-size: 15px;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 48px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.contact__input,
.contact__textarea {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    padding: 14px 18px;
    border: 1px solid rgba(122, 113, 104, 0.25);
    background: var(--ivory);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: var(--stone);
    opacity: 0.7;
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--gold);
}

.contact__textarea {
    resize: vertical;
    min-height: 96px;
}

.contact__form .btn--outline {
    align-self: center;
}

.contact__alt {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.8;
}

.contact__channels {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.04em;
}


/* =============================================
   9. FOOTER
   ============================================= */
.footer {
    background: var(--navy);
    padding: 72px 40px;
    text-align: center;
}

.footer__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.footer__wordmark {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--light-cream);
    margin-bottom: 28px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.footer__links a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 228, 223, 0.6);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--light-cream);
}

.footer__copy {
    font-size: 12px;
    color: var(--stone);
    opacity: 0.5;
}


/* =============================================
   RESPONSIVE — Tablet & Mobile
   ============================================= */
@media (max-width: 960px) {
    .services__editorial {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .services__visual {
        position: relative;
        top: 0;
    }

    .vehicles__grid {
        grid-template-columns: 1fr;
        gap: 56px;
        max-width: 480px;
        margin: 0 auto;
    }

    .about__columns {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__top {
        margin-bottom: 48px;
    }

    .about__col--left {
        max-width: 520px;
    }

    .journal__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: var(--section-pad-mob);
    }

    body {
        font-size: 14px;
    }

    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__inner {
        padding: 20px 24px;
    }

    .hero {
        padding: 100px 24px 64px;
    }

    .hero__headline {
        font-size: clamp(36px, 10vw, 52px);
    }

    .hero__subtext {
        font-size: 19px;
    }

    .hero__rule {
        width: 120px;
    }

    .brand-statement {
        padding: var(--section-pad-mob) 24px;
    }

    .brand-statement__stats {
        flex-direction: column;
        gap: 28px;
    }

    .brand-statement__divider {
        width: 48px;
        height: 1px;
    }

    .services,
    .vehicles,
    .journal,
    .about {
        padding: var(--section-pad-mob) 24px;
    }

    .contact {
        padding: var(--section-pad-mob) 24px;
    }

    .contact__input,
    .contact__textarea {
        width: 100%;
    }

    .footer {
        padding: 56px 24px;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .section-heading {
        font-size: clamp(24px, 5vw, 32px);
    }
}
