/* ==========================================================================
   Kevin’s Bartending & Event Services (KBS)
   Main Stylesheet - Stitch Inspired Premium Luxury Design System
   ========================================================================== */

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

/* CSS Variables */
:root {
    /* Color Palette */
    --charcoal: #121212;
    --charcoal-light: #1A1A1A;
    --charcoal-subtle: #242424;
    --gold: #C5A059;
    --gold-bright: #E5C158;
    --gold-dark: #A47E3B;
    --gold-glow: rgba(197, 160, 89, 0.15);
    --ivory: #FAF9F6;
    --ivory-dark: #F3F1EA;
    --silver: #EAEAEA;
    --silver-dark: #CCCCCC;
    
    /* Text Colors */
    --text-on-dark: #F3F1EA;
    --text-on-light: #2A2A2A;
    --text-muted-dark: #999999;
    --text-muted-light: #666666;

    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --container-padding: 2rem;
    --section-padding-desktop: 4.5rem 0; /* Tightened global desktop section padding */
    --section-padding-mobile: 2.75rem 0; /* Tightened global mobile section padding */

    /* Transitions & FX */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --shadow-luxury: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-luxury-hover: 0 20px 40px rgba(197, 160, 89, 0.08);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-sans);
    background-color: var(--ivory);
    color: var(--text-on-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-on-dark);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
}

/* Specific heading styling for alternating sections */
.section-dark h2 {
    color: var(--text-on-dark);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted-light);
}

.section-dark p {
    color: var(--text-muted-dark);
}

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

/* Helper Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.section-dark {
    background-color: var(--charcoal);
    color: var(--text-on-dark);
}
.section-light {
    background-color: var(--ivory);
    color: var(--text-on-light);
}
.section-alt {
    background-color: var(--ivory-dark);
    color: var(--text-on-light);
}

/* Animation Utilities for scroll-fade */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Button & Link Component States */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 0; /* Premium luxury is sharp and geometric */
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--gold-dark);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    border-color: var(--gold-dark);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-on-dark);
    border: 1px solid rgba(243, 241, 234, 0.3);
}

.section-light .btn-secondary {
    color: var(--charcoal);
    border-color: rgba(18, 18, 18, 0.2);
}

.btn-secondary:hover {
    background-color: var(--text-on-dark);
    color: var(--charcoal);
    border-color: var(--text-on-dark);
}

.section-light .btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--text-on-dark);
    border-color: var(--charcoal);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    transition: var(--transition-fast);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.btn-text-link:hover {
    color: var(--gold-bright);
    border-bottom-color: var(--gold-bright);
}

.btn-text-link::after {
    content: ' →';
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn-text-link:hover::after {
    transform: translateX(4px);
}

/* 1. Sticky Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(18, 18, 18, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .container {
    height: 70px;
}

.logo-container {
    display: flex;
    flex-direction: row; /* Horizontal logo mark + text layout */
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
    padding: 0.15rem 0; /* Align perfectly in the header and prevent too tall layout */
}

.header-logo-img {
    height: 55px; /* Premium prominent logo size */
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

header.scrolled .header-logo-img {
    height: 46px; /* Elegant shrink transition on scroll for high-end feel */
}

/* Nav links desktop */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.35rem; /* Adjusted gap to prevent header wrapping */
    flex-wrap: nowrap;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    font-size: 0.82rem; /* Snugger font size for cleaner horizontal layout */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em; /* Slightly tighter letter-spacing for premium spacing */
    color: var(--text-on-dark);
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap; /* Prevent nav link text wrap */
}

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

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

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

.nav-cta {
    background-color: var(--gold);
    color: #FFF !important;
    padding: 0.5rem 1rem !important; /* Snugger padding to ensure no line wrapping */
    font-weight: 500 !important;
    transition: var(--transition-smooth) !important;
    white-space: nowrap !important; /* Force single line on desktop and prevent wrapping */
    flex-shrink: 0;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--gold-dark);
    color: #FFF !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Hamburger mobile menu button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 102;
}

.menu-btn span {
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background-color: var(--text-on-dark);
    transition: var(--transition-smooth);
    left: 0;
}

.menu-btn span:nth-child(1) { top: 0px; }
.menu-btn span:nth-child(2) { top: 10px; width: 80%; }
.menu-btn span:nth-child(3) { top: 20px; }

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    background-color: var(--text-on-dark);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
    left: -20px;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
    background-color: var(--text-on-dark);
}

/* 2. Hero Section */
.hero-section {
    padding-top: 160px; /* Slightly reduced top padding to tighten spacing */
    padding-bottom: 80px; /* Slightly reduced bottom padding to tighten spacing */
    background: linear-gradient(135deg, #121212 0%, #1c1c1c 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh; /* Clean viewport footprint */
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 40%, rgba(197, 160, 89, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-muted-dark);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-glow);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(36, 36, 36, 0.8) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    pointer-events: none;
}

.hero-image-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.hero-image-placeholder p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-on-dark);
    opacity: 0.8;
}

.hero-image-placeholder span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted-dark);
    margin-top: 0.5rem;
}

.hero-visual-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    top: 20px;
    left: 20px;
    z-index: 1;
    pointer-events: none;
}

/* 3. Trust Bar */
.trust-bar {
    background-color: var(--charcoal-light);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2.5rem 0;
    color: var(--text-on-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(197, 160, 89, 0.15);
}

.trust-number {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted-dark);
}

/* 4. Event Service Without Stress */
.services-section {
    padding: var(--section-padding-desktop);
    background-color: var(--ivory);
}

.section-intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.section-intro-grid h2 {
    margin-bottom: 0;
}

.section-intro-grid p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #FFF;
    border: 1px solid rgba(18, 18, 18, 0.03);
    padding: 3rem 2.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury-hover);
    border-color: rgba(197, 160, 89, 0.2);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--ivory-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
}

.service-card h3 {
    font-family: var(--font-serif);
    color: var(--charcoal);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 5. A Better Bar Experience for Guests */
.experience-section {
    padding: var(--section-padding-desktop);
    background-color: var(--charcoal);
    color: var(--text-on-dark);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content h2 {
    margin-bottom: 2rem;
}

.experience-content p {
    color: rgba(250, 249, 246, 0.85) !important; /* Premium high contrast, very easy to read on dark background */
}

.experience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    list-style: none;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(250, 249, 246, 0.82) !important; /* Lighter silver/ivory for excellent legibility */
}

.experience-list li svg {
    color: var(--gold);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.experience-visual {
    position: relative;
    height: 500px;
}

.experience-image-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-glow);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(36, 36, 36, 0.9) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    z-index: 2;
}

.experience-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    pointer-events: none;
}

.experience-image-placeholder p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-on-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.experience-image-placeholder span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.experience-visual-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    top: -20px;
    left: -20px;
    z-index: 1;
    pointer-events: none;
}

/* 6. Built for Southern California Celebrations */
.celebrations-section {
    padding: var(--section-padding-desktop);
    background-color: var(--ivory-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.celebrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.celebration-card {
    background-color: #FFF;
    border: 1px solid var(--silver);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

.celebration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury-hover);
    border-color: var(--gold);
}

.celebration-visual {
    height: 240px;
    background-color: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--silver);
    position: relative;
    overflow: hidden;
}

.celebration-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.6); /* Elegant 60% charcoal overlay for readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.celebration-card:hover .celebration-img {
    transform: scale(1.06); /* Soft, luxurious parallax zoom */
}

.celebration-card:hover .visual-overlay {
    background-color: rgba(18, 18, 18, 0.45); /* Soften overlay slightly on hover */
}

.celebration-visual::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 3; /* Placed above the overlay for consistent premium borders */
}

.celebration-visual p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-on-dark);
    font-size: 1.15rem;
    position: relative;
    z-index: 3;
}

.celebration-visual span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 0.5rem;
    position: relative;
    z-index: 3;
}

/* Real Branded Website Images Styling */
.hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important; /* Fill frame naturally with zero dark borders */
    position: relative;
    z-index: 2;
}

.experience-img,
.wedding-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Center horizontally, top vertically to capture head/shoulders beautifully */
    position: relative;
    z-index: 2;
}

.celebration-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.celebration-body h3 {
    font-family: var(--font-serif);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.celebration-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 7. Serving San Diego and Los Angeles */
.markets-section {
    padding: var(--section-padding-desktop);
    background-color: var(--ivory);
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.market-card {
    background-color: #FFF;
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

.market-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(197, 160, 89, 0.08);
    pointer-events: none;
}

.market-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-luxury-hover);
    transform: translateY(-3px);
}

.market-badge {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.market-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.market-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.market-footer {
    text-align: center;
}

.market-footer p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-muted-light);
}

/* 8. How the KBS Experience Works */
.steps-section {
    padding: var(--section-padding-desktop);
    background-color: var(--charcoal-light);
    color: var(--text-on-dark);
}

.steps-section h2,
.steps-section .section-header h2 {
    color: #FAF9F6 !important; /* Explicit bright ivory for premium high contrast on dark background */
}

.steps-section .section-subtitle {
    color: var(--gold-bright) !important;
}

.steps-section .section-header p {
    color: var(--text-muted-dark) !important;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold-glow);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    color: var(--gold);
    transform: translateY(-3px);
}

.step-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 9. Wedding Bar Service & Day-of Support */
.wedding-section {
    padding: var(--section-padding-desktop);
    background-color: var(--ivory);
}

.wedding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wedding-visual {
    position: relative;
    height: 520px;
    order: 1;
}

.wedding-image-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid var(--silver);
    background: linear-gradient(135deg, #FFF 0%, var(--ivory-dark) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-luxury);
}

.wedding-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    pointer-events: none;
}

.wedding-image-placeholder p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--charcoal);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.wedding-image-placeholder span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.wedding-visual-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    top: 20px;
    left: 20px;
    z-index: 1;
    pointer-events: none;
}

.wedding-content {
    order: 2;
}

.wedding-content h2 {
    margin-bottom: 2rem;
}

.wedding-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    list-style: none;
}

.wedding-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-muted-light);
}

.wedding-list li svg {
    color: var(--gold);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* 10. More than Bartending (Grid of 6) */
.more-services-section {
    padding: var(--section-padding-desktop);
    background-color: var(--ivory-dark);
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.more-service-card {
    background-color: #FFF;
    border: 1px solid rgba(18, 18, 18, 0.05);
    padding: 3rem 2.25rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-luxury);
    position: relative;
}

.more-service-card::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.more-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury-hover);
    border-color: var(--gold);
}

.more-service-card:hover::after {
    border-color: rgba(197, 160, 89, 0.15);
}

.more-service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.more-service-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
}

.more-service-card h3 {
    font-family: var(--font-serif);
    color: var(--charcoal);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.more-services-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.more-services-note p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
}

/* 11. Reviews (Testimonials) */
.reviews-section {
    padding: var(--section-padding-desktop);
    background-color: var(--ivory);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background-color: #FFF;
    border: 1px solid var(--silver);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(197, 160, 89, 0.15);
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--gold-bright);
    margin-bottom: 1.5rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 2rem;
    flex-grow: 1;
    z-index: 2;
}

.review-author {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-author::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--gold);
    display: inline-block;
}

/* 12. Founder Preview */
.founder-section {
    padding: var(--section-padding-desktop);
    background-color: var(--charcoal-subtle);
    color: var(--text-on-dark);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.founder-visual {
    position: relative;
    height: 480px;
}

.founder-image-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-glow);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    z-index: 2;
}

.founder-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    pointer-events: none;
}

.founder-image-placeholder p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-on-dark);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.founder-image-placeholder span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.founder-visual-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    top: 20px;
    left: -20px;
    z-index: 1;
    pointer-events: none;
}

.founder-content h2 {
    color: #FAF9F6 !important; /* Warm ivory for premium contrast on dark background */
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.founder-content p {
    color: #D1CFCA !important; /* Lighter silver/gray for excellent legibility */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* 13. Final CTA (Premium Card Vibe) */
.final-cta-section {
    padding: 6rem 0;
    background-color: var(--charcoal);
}

.quote-form-container {
    background: linear-gradient(135deg, #1A1A1A 0%, #121212 100%);
    border: 1px solid var(--gold-glow);
    padding: 4.5rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.quote-form-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(197, 160, 89, 0.05);
    pointer-events: none;
    z-index: 1;
}

.quote-form {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2.5rem;
    margin-bottom: 2.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 2;
    width: 100%;
    margin-top: 0.5rem;
}

.form-group label,
.form-group .group-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-bright);
    margin-bottom: 0.65rem;
    display: block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
    width: 100%;
    background-color: #121212;
    border: 1px solid var(--charcoal-subtle);
    border-radius: 0; /* Premium sharp luxury edges */
    padding: 0.95rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-on-dark);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.15);
    background-color: #151515;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--gold);
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input[type="date"] {
    cursor: text;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(70%) sepia(20%) saturate(1000%) hue-rotate(5deg);
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Custom Checkboxes Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 2rem;
    width: 100%;
    background-color: #121212;
    border: 1px solid var(--charcoal-subtle);
    padding: 2.25rem;
    margin-bottom: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted-dark);
    transition: var(--transition-fast);
    user-select: none;
    padding-left: 2rem;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #181818;
    border: 1px solid var(--charcoal-subtle);
    transition: var(--transition-fast);
}

.checkbox-label:hover .custom-checkbox {
    border-color: var(--gold);
}

.checkbox-label input:checked ~ .custom-checkbox {
    background-color: var(--gold);
    border-color: var(--gold);
}

.custom-checkbox::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #FFF;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-label:hover {
    color: var(--text-on-dark);
}

.checkbox-label input:checked ~ span + *,
.checkbox-label input:checked {
    color: var(--text-on-dark);
}

/* Honeypot & Utilities */
.hidden {
    display: none !important;
}

.form-submit-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.form-submit-wrap .btn {
    min-width: 280px;
    margin-bottom: 1.5rem;
}

.form-note {
    font-size: 0.85rem;
    max-width: 600px;
    line-height: 1.6;
    color: var(--text-muted-dark);
    font-weight: 300;
}

/* 14. Footer */
footer {
    background-color: #0B0B0B;
    color: var(--text-on-dark);
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-on-dark);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted-dark);
    margin-bottom: 0;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.9rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--gold-bright);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Tablets & Desktops */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }

    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .experience-visual {
        max-width: 500px;
        height: 380px;
        margin: 0 auto;
    }

    .celebrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .celebration-card:last-child {
        grid-column: span 2;
        max-width: 48%;
        margin: 0 auto;
    }

    .wedding-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .wedding-visual {
        max-width: 500px;
        height: 380px;
        margin: 0 auto;
        order: 2;
    }

    .wedding-content {
        order: 1;
    }

    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .founder-visual {
        max-width: 420px;
        height: 380px;
        margin: 0 auto;
    }
}

/* Mobile & Tablet Sticky Header Menu Drawer (Active for screens <= 1024px to prevent horizontal menu overflow) */
@media (max-width: 1024px) {
    /* Sticky Header Mobile Menu Drawer */
    header .container {
        height: 70px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--charcoal);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 4rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 101;
        overflow-y: auto;
    }

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

    .nav-links a {
        font-size: 1.25rem;
    }

    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        white-space: nowrap !important;
    }

    .header-logo-img {
        height: 44px; /* Snugger height on mobile/tablet */
    }
}

/* Layout Adaptations for Small Tablets & Mobile Devices */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 130px; /* Snugger padding for small screens */
        padding-bottom: 60px;
    }

    /* Layout Adaptations */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .trust-item:nth-child(2)::after {
        display: none;
    }

    .trust-item:not(:last-child)::after {
        height: 60%;
    }

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

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

    .celebration-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .more-services-grid {
        grid-template-columns: 1fr;
    }

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

    /* Quote Form Tablet Layout Adaptations */
    .quote-form-container {
        padding: 3rem 2rem;
    }

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

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1.25rem 1rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item::after {
        display: none !important;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    .experience-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wedding-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Quote Form Mobile Layout Adaptations */
    .quote-form-container {
        padding: 2.25rem 1.25rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 1rem;
    }
}

/* Intermediate Desktop Responsive Tuning to prevent any wrapping or overflow issues */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-links {
        gap: 1.1rem;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
    .nav-cta {
        padding: 0.55rem 0.95rem !important;
    }
    /* Removed unused logo text responsive styles */
}
