﻿/* ============================================================
   COLOR CLICK STUDIO — Shared Stylesheet
   Fonts: Cormorant Garamond (serif) + Jost (sans)
   Palette: --gold #C9A96E | --dark #0D0D0D | --text #F5F0E8
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --dark: #0D0D0D;
    --dark2: #1A1816;
    --dark3: #252220;
    --text: #F5F0E8;
    --muted: #9A9088;
    --serif: 'Cormorant Garamond',serif;
    --sans: 'Jost',sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font-family: var(--sans);
    cursor: pointer
}

/* ===== NAV ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 4rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13,13,13,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    transition: box-shadow 0.3s
}

.logo img {
    height: 42px;
    width: auto
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center
}

    .nav-links a {
        color: var(--muted);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        transition: color 0.3s
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--gold)
        }

.nav-dropdown {
    position: relative
}

    .nav-dropdown > a::after {
        content: ' ▾';
        font-size: 0.55rem
    }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(13,13,13,0.98);
    border: 1px solid rgba(201,169,110,0.15);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 200
}

.nav-dropdown:hover .dropdown-menu {
    display: block
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    transition: color 0.2s,background 0.2s
}

    .dropdown-menu a:hover {
        color: var(--gold);
        background: rgba(201,169,110,0.05)
    }

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap
}

    .nav-cta:hover {
        background: var(--gold);
        color: var(--dark)
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s
    }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 5rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(13,13,13,0.97) 30%,rgba(13,13,13,0.6) 100%);
    z-index: 1
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.breadcrumb {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem
}

    .breadcrumb a {
        color: var(--muted);
        transition: color 0.2s
    }

        .breadcrumb a:hover {
            color: var(--gold)
        }

    .breadcrumb span {
        color: var(--muted)
    }

.page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.2rem,5vw,4rem);
    font-weight: 300;
    line-height: 1.1;
    max-width: 700px
}

    .page-hero h1 em {
        font-style: italic;
        color: var(--gold)
    }

.page-hero p {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 580px;
    margin-top: 1rem;
    line-height: 1.85
}

/* ===== SHARED ===== */
.section-label {
    font-size: 0.63rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem
}

h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem,3.5vw,2.8rem);
    font-weight: 300;
    line-height: 1.2
}

h3 {
    font-family: var(--serif);
    font-weight: 300
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.8rem 0
}

.see-all {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s
}

    .see-all:hover {
        color: var(--gold)
    }

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 0.85rem 2.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer
}

    .btn-primary:hover {
        background: var(--gold-light)
    }

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer
}

    .btn-outline:hover {
        background: var(--gold);
        color: var(--dark)
    }

.btn-dark {
    background: var(--dark);
    color: var(--gold);
    padding: 0.85rem 2.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer
}

    .btn-dark:hover {
        background: #1A1816
    }

/* ===== LOCATIONS ===== */
.locations {
    padding: 4rem;
    background: var(--dark);
    border-top: 1px solid rgba(201,169,110,0.1);
    border-bottom: 1px solid rgba(201,169,110,0.1)
}

.loc-inner {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: flex-start
}

.loc-col h4 {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem
}

.loc-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem
}

    .loc-col ul li a {
        font-size: 0.82rem;
        color: var(--muted);
        transition: color 0.3s
    }

        .loc-col ul li a:hover {
            color: var(--gold)
        }

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 6rem 4rem;
    text-align: center;
    background: var(--dark)
}

.quote-mark {
    font-family: var(--serif);
    font-size: 7rem;
    color: rgba(201,169,110,0.15);
    line-height: 0.4;
    margin-bottom: 2.5rem
}

.quote-text {
    font-family: var(--serif);
    font-size: clamp(1.15rem,2.5vw,1.75rem);
    font-weight: 300;
    font-style: italic;
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.75
}

.quote-author {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold)
}

/* ===== CTA BAND ===== */
.cta-band {
    padding: 5rem 4rem;
    background: var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem
}

    .cta-band h3 {
        font-family: var(--serif);
        font-size: clamp(1.7rem,3vw,2.5rem);
        font-weight: 300;
        color: var(--dark);
        line-height: 1.25
    }

        .cta-band h3 em {
            font-style: italic
        }

.cta-contact {
    text-align: right
}

.cta-phone {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--dark);
    font-weight: 300;
    margin-bottom: 0.3rem
}

    .cta-phone a {
        color: var(--dark)
    }

.cta-phone2 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: rgba(13,13,13,0.7);
    font-weight: 300;
    margin-bottom: 0.4rem
}

    .cta-phone2 a {
        color: rgba(13,13,13,0.7)
    }

.cta-location {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: rgba(13,13,13,0.55);
    margin-bottom: 0.3rem;
    line-height: 1.6
}

.cta-email a {
    color: rgba(13,13,13,0.7);
    font-size: 0.82rem
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(201,169,110,0.1)
}

.footer-logo img {
    height: 36px;
    margin-bottom: 1rem
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem
}

.footer-col h5 {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem
}

    .footer-col ul li a {
        font-size: 0.78rem;
        color: var(--muted);
        transition: color 0.3s
    }

        .footer-col ul li a:hover {
            color: var(--gold)
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(201,169,110,0.08);
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    font-size: 0.68rem;
    color: var(--muted)
}

    .footer-copy a {
        color: var(--gold)
    }

.footer-socials {
    display: flex;
    gap: 1.5rem
}

    .footer-socials a {
        font-size: 0.68rem;
        color: var(--muted);
        letter-spacing: 0.15em;
        text-transform: uppercase;
        transition: color 0.3s
    }

        .footer-socials a:hover {
            color: var(--gold)
        }

/* ===== FADE-IN ===== */
/* Only hide when JS is active (body.no-js removed by site.js) */
body:not(.no-js) .fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease
}

body:not(.no-js) .fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
    nav, .page-hero, .cta-band, .locations, .testimonial, .footer-bottom {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    nav {
        padding: 1rem 1.5rem
    }

    .nav-links, .nav-cta {
        display: none
    }

    .nav-toggle {
        display: flex
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13,13,13,0.98);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid rgba(201,169,110,0.15);
        z-index: 999
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none
    }

    .page-hero {
        padding: 3rem 1.5rem 2.5rem;
        min-height: 240px
    }

    .cta-band {
        padding: 2.5rem 1.5rem;
        flex-direction: column;
        text-align: center
    }

    .cta-contact {
        text-align: center
    }

    .footer-bottom {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center
    }

    .locations {
        padding: 2.5rem 1.5rem
    }

    .loc-inner {
        gap: 2rem
    }

    .testimonial {
        padding: 3rem 1.5rem
    }
}
