/* Font Awesome 6 — Brand & Solid icons (social media, UI) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

/* ============================================================
   CLASSIC CAR LIMOUSINES — Main Stylesheet
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
    --black:        #0A0A0A;
    --black-mid:    #111111;
    --black-card:   #1C1C1C;
    --black-card-hover: #242424;
    --black-feat:   #1E1A10;
    --gold:         #C9A84C;
    --gold-light:   #D4AF37;
    --gold-pale:    #E8D5A3;
    --gold-dim:     rgba(201, 168, 76, 0.15);
    --gold-dim2:    rgba(201, 168, 76, 0.08);
    --cream:        #F5F0E8;
    --cream-dark:   #EDE5D4;
    --white:        #FFFFFF;
    --gray:         #888888;
    --gray-light:   #AAAAAA;

    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Montserrat', Arial, sans-serif;

    --announcement-h: 44px;
    --nav-h: 80px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
}

h4 {
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.8;
}

strong {
    color: var(--cream);
    font-weight: 500;
}

/* ============================================================
   3. UTILITY
   ============================================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

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

.section-sub {
    max-width: 540px;
    margin: 1.5rem auto 0;
    font-size: 0.9rem;
    text-align: center;
    color: var(--gray);
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.4);
}

.btn-outline:hover {
    border-color: var(--cream);
    background: rgba(245, 240, 232, 0.05);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 0.75rem;
}

/* ============================================================
   5. SCROLL REVEAL
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

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

/* ============================================================
   6. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--announcement-h);
    background: #0A0A0A;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 60px;
    transition: transform var(--transition);
}

.announcement-bar p {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-pale);
    text-align: center;
}

.announcement-bar a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: opacity var(--transition);
}

.announcement-bar a:hover {
    opacity: 0.7;
}

.announcement-close {
    position: absolute;
    right: 20px;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.6;
    transition: opacity var(--transition);
    padding: 4px 8px;
}

.announcement-close:hover {
    opacity: 1;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: var(--announcement-h);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: top var(--transition), background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    top: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

.nav.announcement-gone {
    top: 0;
}

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

.nav-logo img {
    height: 52px;
    width: auto;
    transition: height var(--transition);
}

.nav.scrolled .nav-logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.75);
    transition: color var(--transition);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.5);
    padding: 8px 20px;
    letter-spacing: 0.15em;
    transition: all var(--transition);
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Account for announcement bar + nav height at top of page */
    padding-top: calc(var(--announcement-h) + var(--nav-h));
}

.hero-media {
    position: absolute;
    inset: 0;
    /* Warm-dark luxury fallback for when video isn't loaded */
    background: radial-gradient(ellipse at 40% 50%, #1C1408 0%, #0A0A0A 60%, #060606 100%);
}

.hero-video,
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) contrast(1.1) saturate(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.hero-sub {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.55);
    line-height: 2;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Animated scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-line-wrap {
    width: 1px;
    height: 60px;
    background: rgba(201, 168, 76, 0.2);
    overflow: hidden;
    position: relative;
}

.scroll-line {
    width: 1px;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollDown {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ============================================================
   9. ABOUT
   ============================================================ */
.about {
    background: var(--black-mid);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.95);
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Gold accent frame offset behind image */
.about-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    z-index: 0;
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-content h2 {
    color: var(--cream);
}

.about-content p {
    max-width: 480px;
}

.about-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-pale);
    background: var(--gold-dim2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 6px 14px;
}

.badge-icon {
    color: var(--gold);
    font-size: 0.6rem;
}

/* ============================================================
   10. COLLECTIONS
   ============================================================ */
.collections {
    background: var(--black);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.collection-card {
    background: var(--black-card);
    padding: 48px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background var(--transition);
}

.collection-card:hover {
    background: var(--black-card-hover);
}

.collection-card:hover::before {
    background: var(--gold);
}

/* Featured card */
.collection-card.featured {
    background: var(--black-feat);
}

.collection-card.featured::before {
    background: var(--gold);
}

.featured-ribbon {
    position: absolute;
    top: 24px;
    right: -1px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px 5px 10px;
    clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 8px 100%, 0% 50%);
}

/* Large decorative tier number */
.card-tier {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.07);
    line-height: 1;
    margin-bottom: -1.5rem;
    user-select: none;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.card-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.collection-card h3 {
    font-size: 1.7rem;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.card-tagline {
    font-size: 0.78rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.card-divider {
    width: 30px;
    height: 1px;
    background: rgba(201, 168, 76, 0.4);
    margin-bottom: 1.2rem;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
}

.price-unit {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.card-min {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.card-includes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.card-includes li {
    font-size: 0.82rem;
    color: var(--gray-light);
    padding-left: 1rem;
    position: relative;
}

.card-includes li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 300;
}

.card-includes li em {
    color: var(--gold-pale);
    font-style: italic;
}

/* ============================================================
   11. POLICY STRIP
   ============================================================ */
.policy-strip {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 52px 0;
}

.policy-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.policy-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0 40px;
}

.policy-divider {
    width: 1px;
    height: 80px;
    background: rgba(201, 168, 76, 0.2);
    align-self: center;
    flex-shrink: 0;
}

.policy-icon {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.policy-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.policy-item p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================================
   12. GALLERY
   ============================================================ */
.gallery {
    background: var(--black-mid);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--black-card);
}

.gallery-item.large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: brightness(0.85) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.7) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream);
}

/* Placeholder for when no images are loaded */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A1408 0%, #111111 100%);
    z-index: -1;
}

/* ============================================================
   13. REVIEWS
   ============================================================ */
.reviews {
    background: var(--cream);
}

.reviews .section-label {
    color: var(--black-mid);
    opacity: 0.5;
}

.reviews h2 {
    color: var(--black);
}

.reviews h2 em {
    color: #9A7B28;
}

.reviews-slider-wrap {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 100%;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.review-stars {
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

.review-text {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--black-mid);
    max-width: 800px;
    line-height: 1.7;
}

.review-author {
    margin-top: 0.5rem;
}

.author-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.author-detail {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 0.08em;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 0 40px;
}

.review-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-mid);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.review-btn:hover {
    background: var(--black-mid);
    color: var(--cream);
    border-color: var(--black-mid);
    transform: translateY(-1px);
}

.review-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.review-dot.active {
    background: #9A7B28;
    transform: scale(1.3);
}

/* ============================================================
   14. CONTACT / BOOKING
   ============================================================ */
.contact {
    background: var(--black-mid);
}

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

.contact-info h2 {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-details p {
    font-size: 0.85rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-icon {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
}

.contact-phone {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    margin: 1.5rem 0;
}

.phone-link {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: opacity var(--transition);
    line-height: 1.2;
}

.phone-link:hover {
    opacity: 0.7;
}

.contact-phone span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
}

.contact-note {
    border-left: 2px solid rgba(201, 168, 76, 0.4);
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.contact-note p {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

/* Form */
.contact-form-wrap {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--cream);
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.2);
    font-style: italic;
}

.form-group select option {
    background: var(--black-card);
    color: var(--cream);
}

.form-group input[type="date"] {
    color-scheme: dark;
}

/* Google Places custom autocomplete dropdown */
.gmp-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1C1C1C;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-top: none;
    z-index: 9999;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.gmp-dropdown-item {
    padding: 10px 16px;
    font-size: 0.82rem;
    font-family: 'Montserrat', Arial, sans-serif;
    color: rgba(245, 240, 232, 0.75);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.12s, color 0.12s;
}

.gmp-dropdown-item:last-of-type {
    border-bottom: none;
}

.gmp-dropdown-item:hover,
.gmp-dropdown-item.active {
    background: rgba(201, 168, 76, 0.08);
    color: #F5F0E8;
}

.gmp-dropdown-attr {
    padding: 6px 12px;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gmp-dropdown-attr img {
    height: 14px;
    opacity: 0.5;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 0.25rem;
}

/* ── Time Slot Picker ─────────────────────────────── */
.slot-picker-wrap {
    margin-top: 0;
}

.slot-vehicle-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 8px;
    opacity: 0.8;
}

.slot-loading {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gray);
    padding: 12px 0;
}

.slot-loading-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: slotPulse 1.2s ease-in-out infinite;
}
.slot-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.slot-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes slotPulse {
    0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
    40%           { opacity: 1;   transform: scale(1); }
}

.slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.slot-btn {
    padding: 8px 16px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: transparent;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.slot-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.slot-btn.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
}

.slot-none {
    font-size: 0.78rem;
    color: var(--gray);
    font-style: italic;
    padding: 8px 0;
}

.slot-timezone {
    font-size: 0.72rem;
    color: rgba(201, 168, 76, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 0;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 280px;
}

.footer-social {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li {
    font-size: 0.82rem;
    color: var(--gray);
    transition: color var(--transition);
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: var(--gray);
}

.footer-col ul li a:hover,
.footer-col ul li a:hover {
    color: var(--cream);
}

.footer-col > p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.footer-btn {
    font-size: 0.65rem;
    padding: 10px 20px;
}

.footer-policy-note {
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 1rem;
    opacity: 0.6;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

.footer-legal a {
    color: rgba(201, 168, 76, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ============================================================
   16. RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .section { padding: 90px 0; }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .about-image img {
        height: 460px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

/* ============================================================
   17. RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --announcement-h: 36px;
        --nav-h: 64px;
    }

    .container { padding: 0 20px; }
    .section { padding: 72px 0; }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 6, 6, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .nav-links .nav-cta {
        padding: 12px 32px;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-sub {
        font-size: 0.62rem;
        display: none; /* too much on small screens */
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 320px;
    }

    .about-image-accent {
        display: none;
    }

    /* Collections */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .collection-card {
        padding: 36px 28px;
    }

    /* Policy */
    .policy-grid {
        flex-direction: column;
        gap: 0;
    }

    .policy-item {
        padding: 28px 0;
    }

    .policy-divider {
        width: 100%;
        height: 1px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 280px;
    }

    .gallery-item {
        height: 180px;
    }

    /* Reviews */
    .review-card {
        padding: 40px 24px;
    }

    /* Contact form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .announcement-bar {
        padding: 0 40px;
    }
}

/* ============================================================
   18. MISC / OVERRIDES
   ============================================================ */

/* Smooth anchor offset for fixed header */
:target {
    scroll-margin-top: calc(var(--announcement-h) + var(--nav-h) + 20px);
}

/* Prevent layout shift when announcement bar is dismissed */
body.no-announcement .nav {
    top: 0;
}

/* Highlight placeholder images with gradient until real images load */
.gallery-item img[src=""],
.gallery-item img:not([src]),
.about-image img[src=""],
.about-image img:not([src]) {
    min-height: 280px;
    background: linear-gradient(135deg, #1A1408 0%, #111 100%);
}

/* ============================================================
   19. PAGE HERO (services.php, gallery.php)
   ============================================================ */
.page-hero {
    position: relative;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--announcement-h) + var(--nav-h));
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28) contrast(1.1) saturate(0.7);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.page-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
}

/* Nav active link */
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    width: 100%;
}

/* Gallery teaser CTA (homepage) */
.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   20. FLEET SECTION (services.php)
   ============================================================ */
.fleet {
    background: var(--black-mid);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.fleet-card {
    background: var(--black-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}

.fleet-card:hover {
    background: var(--black-card-hover);
}

.fleet-card-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 0.7s ease, filter 0.5s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.04);
    filter: brightness(0.7) contrast(1.1);
}

.fleet-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    backdrop-filter: blur(4px);
}

.fleet-card-body {
    padding: 48px 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.fleet-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.fleet-card-header h3 {
    font-size: 2rem;
    color: var(--cream);
    line-height: 1.1;
}

.fleet-card-year {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    white-space: nowrap;
}

.fleet-card-body > p {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 440px;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.fleet-features li {
    font-size: 0.82rem;
    color: var(--gray-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fleet-features li span {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.card-ideal {
    font-size: 0.78rem;
    color: var(--gray);
    font-style: italic;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

/* ============================================================
   21. FULL GALLERY — MASONRY (gallery.php)
   ============================================================ */
.gallery-full-section {
    background: var(--black);
}

.gallery-group-label {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.gallery-masonry {
    columns: 3;
    column-gap: 5px;
    margin-bottom: 60px;
}

.gallery-full-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-card);
}

.gallery-full-item img {
    width: 100%;
    display: block;
    filter: brightness(0.88) contrast(1.05);
    transition: transform 0.65s ease, filter 0.45s ease;
}

.gallery-full-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.6) contrast(1.1);
}

.gallery-full-item .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-full-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-full-item .gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--cream);
}

/* ============================================================
   22. LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img-wrap img {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.45);
    text-align: center;
    letter-spacing: 0.05em;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    color: var(--cream);
    font-size: 2.2rem;
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.2s;
    padding: 8px 12px;
    z-index: 10000;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cream);
    font-size: 1.4rem;
    padding: 20px 18px;
    opacity: 0.3;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.04);
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* ============================================================
   23. RESPONSIVE — New elements
   ============================================================ */
@media (max-width: 1024px) {
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-card-image { height: 320px; }
    .fleet-card-body { padding: 36px 32px; }
    .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
    .page-hero { height: 44vh; min-height: 320px; }
    .page-hero-content h1 { font-size: 2.2rem; }
    .fleet-card-body { padding: 28px 22px; }
    .fleet-card-image { height: 240px; }
    .gallery-masonry { columns: 2; column-gap: 3px; margin-bottom: 36px; }
    .gallery-full-item { margin-bottom: 3px; }
    .lightbox-prev { left: 4px; padding: 16px 10px; }
    .lightbox-next { right: 4px; padding: 16px 10px; }
}

@media (max-width: 480px) {
    .gallery-masonry { columns: 1; }
}
