/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #2d5a27;       /* Deep Forest Green */
    --color-primary-dark: #1b3d17;  /* Darker Green for backgrounds/headers */
    --color-secondary: #8b6914;     /* Earthy Bronze/Gold */
    --color-secondary-light: #ab8522; 
    --color-accent: #a3c9a8;        /* Sage Green */
    --color-bg: #f5f0e8;            /* Warm Linen/Cream */
    --color-surface: #ffffff;
    --color-surface-dark: #222d20;
    --color-text: #1c281a;          /* Deep Forest Charcoal */
    --color-text-muted: #556253;
    --color-text-light: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing (Rem-based) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius & Transitions */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(28, 40, 26, 0.05);
    --shadow-medium: 0 15px 35px rgba(28, 40, 26, 0.1);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   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-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.25;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Common Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #ede7dd;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

.section-title.text-left {
    left: 0;
    transform: none;
}

.section-title.text-left::after {
    margin: 0.75rem 0 0 0;
}

.section-subtitle-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-md) auto;
    font-weight: 300;
}

.section-subtitle-text.text-left {
    margin: 0 0 var(--spacing-md) 0;
    text-align: left;
}

/* Grids */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    background-color: transparent;
    padding: 1.5rem 0;
}

/* Header scrolled state */
.site-header.scrolled {
    background-color: rgba(27, 61, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.nav-phone-svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin-right: 0.35rem;
}

.hero-phone-svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.service-svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 1.5rem;
}

.banner-trowel-svg {
    width: 80px;
    height: 80px;
    color: var(--color-accent);
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.contact-detail-svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-icon-svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    margin: 0 auto 1.5rem auto;
    animation: growAndRotate 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.contact-nav-btn {
    background-color: var(--color-secondary);
    color: var(--color-text-light) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.contact-nav-btn:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 105, 20, 0.3);
}

.nav-phone-link {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    display: block;
}

.nav-phone-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Permanent dark gradient behind nav so it's always legible */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(6, 16, 5, 0.72) 0%, transparent 100%);
    z-index: 15;
    pointer-events: none;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    user-select: none;
}

.slider-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer-before {
    z-index: 1;
}

.layer-after {
    z-index: 2;
    width: var(--clip-width, 50%); /* Controlled dynamically via JS */
    overflow: hidden;
    border-right: 0px solid transparent; /* Edge smoothing */
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    max-width: none;
    pointer-events: none;
}

/* Image Labels (Before / After tag) */
.image-label {
    position: absolute;
    bottom: 2rem;
    padding: 0.4rem 1rem;
    background-color: rgba(27, 40, 26, 0.7);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 5;
    pointer-events: none;
}

.before-label {
    left: 2rem;
}

.after-label {
    right: 2rem;
}

/* Wipe divider & handle */
.slider-handle-bar {
    position: absolute;
    top: 0;
    left: var(--clip-width, 50%); /* Controlled via JS */
    width: 3px;
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle-button {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 0.75rem;
    gap: 2px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-handle-bar:hover .slider-handle-button,
.slider-handle-bar:active .slider-handle-button {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: #ffffff;
}

.handle-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.slider-handle-bar:hover .arrow-left {
    transform: translateX(-2px);
}
.slider-handle-bar:hover .arrow-right {
    transform: translateX(2px);
}

/* Foreground Content Overlay */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20; /* Above images, below header (100) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Allows slider dragging through transparent areas */
}

.hero-card {
    pointer-events: auto; /* Re-enable clicks for text box controls */
    background: rgba(22, 38, 20, 0.5); /* Frosted Forest Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 650px;
    width: 90%;
    box-shadow: var(--shadow-dark);
    margin: 0 1rem;
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.8rem;
    font-family: 'Inter', var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(0.62rem, 3.2vw, 1.1rem);
    white-space: nowrap;
    color: var(--color-bg);
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
}

.subtitle-loc {
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-phone-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.55rem 1.8rem;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-phone-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.hero-phone-number {
    font-weight: 600;
    font-size: 1rem;
}

.hero-phone-subtitle {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-cta-btn {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.4);
}

.hero-cta-btn:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.5);
}

/* Scroll indicator */
.scroll-down-hint {
    position: absolute;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    gap: 0.5rem;
    animation: pulseScroll 2s infinite;
}

/* Hero trust strip — bike hardening / all-weather signal */
.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 0.5rem 1.2rem;
    backdrop-filter: blur(4px);
}

.trust-group-primary,
.trust-group-secondary {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.trust-group-primary::after {
    content: '·';
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-left: 0.6rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes pulseScroll {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-section {
    background-color: var(--color-bg);
}

.why-card {
    background-color: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(45, 90, 39, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(45, 90, 39, 0.15);
}

.why-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    display: block;
    mix-blend-mode: multiply;
    transition: var(--transition-smooth);
}

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.services-floating-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.services-floating-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 5;
}

.service-floating-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    padding: 2.5rem 2.25rem;
    box-shadow: 0 10px 30px rgba(28, 40, 26, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(30px);
}

.service-floating-card:hover {
    transform: translateY(-5px) translateX(4px);
    box-shadow: 0 20px 40px rgba(28, 40, 26, 0.08);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(45, 90, 39, 0.25);
}

/* Staggered Scroll Fade In for Floating Cards */
.animate-on-scroll.appear .service-floating-card {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-on-scroll.appear .service-floating-card:nth-child(1) { transition-delay: 0.1s; animation-delay: 0.1s; }
.animate-on-scroll.appear .service-floating-card:nth-child(2) { transition-delay: 0.25s; animation-delay: 0.25s; }
.animate-on-scroll.appear .service-floating-card:nth-child(3) { transition-delay: 0.4s; animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.service-floating-card .service-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-secondary);
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    padding-right: 0.75rem;
    margin-right: 0.5rem;
    border-right: 1px solid rgba(45, 90, 39, 0.2);
}

.service-floating-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin: 0;
}

.service-floating-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.services-floating-img-col {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-floating-img {
    position: absolute;
    top: -4rem;
    left: -20vw;
    width: 85vw;
    max-width: none;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
    transform: scale(1.05);
    transform-origin: left center;
    transition: var(--transition-smooth);
}

.services-floating-img:hover {
    transform: scale(1.07);
}

@media (max-width: 992px) {
    .services-floating-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        position: relative;
    }
    
    .services-floating-img-col {
        position: absolute;
        top: 120px; /* Shifted slightly downward on mobile */
        bottom: 0;
        right: 0;
        width: 100%;
        z-index: 1;
        overflow: hidden;
        pointer-events: none;
    }
    
    .services-floating-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 55% center; /* More subtle horizontal focus shift */
        opacity: 0.95; /* Restored opacity for vibrant colors */
        transform: none;
        pointer-events: none;
    }
}

.coming-soon-banner {
    margin-top: var(--spacing-lg);
    background-color: var(--color-surface-dark);
    color: var(--color-text-light);
    padding: 2rem 3rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
    text-align: left;
    box-shadow: var(--shadow-medium);
}

.bike-emoji {
    font-size: 2.5rem;
    animation: wobble 3s ease infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-10deg) scale(1.1); }
    30% { transform: rotate(10deg) scale(1.1); }
    45% { transform: rotate(-5deg); }
    60% { transform: rotate(5deg); }
}

.coming-soon-banner p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    margin-top: var(--spacing-md);
}

.process-step {
    position: relative;
    background-color: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(45, 90, 39, 0.12);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================================================
   SERVICE ARRANGEMENTS / PRICING SECTION
   ========================================================================== */
.arrangements-section {
    background-color: var(--color-bg);
}

.arrangements-eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exclusive-roster-card-container {
    max-width: 850px;
    margin: var(--spacing-lg) auto 0 auto;
    display: flex;
    justify-content: center;
}

.exclusive-roster-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    width: 100%;
    transition: var(--transition-smooth);
}

.brush-stroke-container {
    position: relative;
    width: 100%;
    min-width: 320px;
    max-width: 500px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Sits on top */
}

.card-brush-stroke-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(0 6px 12px rgba(27, 61, 23, 0.22));
}

.price-overlay {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: var(--font-heading);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-overlay--secondary {
    color: var(--color-primary-dark); /* Dark green text for readability on light green background */
    position: absolute;
    top: 52px; /* Shifted further up to center vertically in the visible sage band */
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px; /* Move text rightward relative to the brushstroke shape */
}

.price-prefix {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    margin-right: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.price-label {
    font-size: 1.35rem;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.exclusive-explainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 650px;
    margin-top: 1.25rem;
}

.exclusive-explainer h3 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
    margin: 0;
}

.exclusive-explainer p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

.plan-cta-button {
    align-self: center;
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary-dark);
    transition: var(--transition-smooth);
    text-decoration: none;
    margin-top: 0.75rem;
}

.plan-cta-button:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.practice-intro-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.practice-lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 3.5rem;
}

.gardener-signature-block {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    margin-top: 0.5rem;
    background: transparent;
    border: 1px solid rgba(27, 61, 23, 0.08); /* Extremely subtle outline */
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    box-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.02),
        -1px -1px 3px rgba(255, 255, 255, 0.95),
        inset 1px 1px 1px rgba(255, 255, 255, 0.8),
        inset -1px -1px 1px rgba(0, 0, 0, 0.02); /* Embossed border shadow */
}

.sig-initial {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-secondary);
    font-style: italic;
    line-height: 0.8;
    border-right: 1px solid rgba(45, 90, 39, 0.15);
    padding-right: 1.25rem;
}

.sig-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sig-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.sig-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.pricing-label-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.stacked-brush-strokes {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    height: 215px; /* Explicit space to contain the overlay */
}

.brush-stroke-container--secondary {
    position: absolute;
    top: 85px; /* Offset to expose bottom */
    height: 130px;
    max-width: 450px;
    z-index: 1; /* Sits underneath */
    transform: translateX(50px); /* Move rightward more along with the sage bg */
}

.price-subtext-overlay {
    font-size: 1.15rem;
    font-weight: 600; /* slightly bolder for dark-on-light readability */
    letter-spacing: 0.02em;
}

.roster-availability {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.commitments-editorial-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    border-top: 1px solid rgba(45, 90, 39, 0.15);
}

.editorial-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(45, 90, 39, 0.15);
    margin: 2.5rem auto;
}

.editorial-two-col .commitment-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-bottom: none;
    text-align: left;
}

@media (min-width: 769px) {
    /* Divider between left and right columns (Items 1 and 3) */
    .editorial-two-col .commitment-row:nth-child(odd) {
        border-right: 1px solid rgba(45, 90, 39, 0.12);
        padding-right: 4rem;
    }
    /* Divider between top and bottom rows (Items 1 and 2) */
    .editorial-two-col .commitment-row:nth-child(1),
    .editorial-two-col .commitment-row:nth-child(2) {
        border-bottom: 1px solid rgba(45, 90, 39, 0.12);
        padding-bottom: 2rem;
    }
    /* Adjust top spacing of bottom row (Items 3 and 4) */
    .editorial-two-col .commitment-row:nth-child(3),
    .editorial-two-col .commitment-row:nth-child(4) {
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .editorial-two-col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .editorial-two-col .commitment-row {
        padding: 1.5rem 0;
    }
    .editorial-two-col .commitment-row:not(:last-child) {
        border-bottom: 1px solid rgba(45, 90, 39, 0.12);
    }
}

.commitment-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(45, 90, 39, 0.12);
    align-items: baseline;
    text-align: left;
    gap: 2.5rem;
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.commitment-num {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.commitment-sep {
    color: rgba(45, 90, 39, 0.3);
}

.commitment-title {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-primary-dark);
}

.commitment-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2.25rem 0; /* Reduced padding between sections on mobile */
    }
    
    .commitment-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }
}

@media (max-width: 768px) {
    .exclusive-roster-card-container {
        margin-top: 1.25rem; /* Reduced space above signature card on mobile */
    }

    .exclusive-roster-card {
        flex-direction: column;
        padding: 1rem 2rem 2.5rem 2rem; /* Reduced top padding from 2.5rem to 1rem */
        gap: 2rem;
        text-align: center;
    }
    
    .brush-stroke-container {
        min-width: 100%;
        max-width: 100%;
    }
    
    .plan-cta-button {
        align-self: center;
    }
    
    .gardener-signature-block {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .sig-initial {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(45, 90, 39, 0.15);
        padding-bottom: 0.5rem;
        line-height: 1;
    }
}


/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg);
}

.contact-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Info Panel */
.contact-info-panel {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contact-info-panel h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

a.contact-detail-item:hover {
    color: var(--color-accent);
}

.contact-icon {
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.bike-diagram {
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.mini-bike-svg {
    width: 80px;
    height: auto;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.bike-caption {
    font-size: 0.8rem;
    color: var(--color-accent) !important;
    margin-bottom: 0 !important;
}

/* Form Panel */
.contact-form-panel {
    padding: 4rem;
    position: relative;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #faf9f6;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    background-color: #faf9f6;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: var(--transition-smooth);
}

.checkbox-label:hover input ~ .custom-checkbox {
    border-color: var(--color-primary);
}

.checkbox-label input:checked ~ .custom-checkbox {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .custom-checkbox::after {
    display: block;
}

.submit-btn {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 105, 20, 0.4);
}

/* Success Alert Modal Style */
.success-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.success-alert.show {
    opacity: 1;
    pointer-events: auto;
}

.success-alert-content {
    text-align: center;
    padding: 3rem;
    max-width: 450px;
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
    animation: growAndRotate 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes growAndRotate {
    from {
        transform: scale(0) rotate(-45deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

.success-alert h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-alert p {
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.close-alert-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.close-alert-btn:hover {
    background-color: var(--color-primary-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-surface-dark);
    color: var(--color-text-light);
    padding: 5rem 0 2rem 0;
    border-top: 1.5px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Inter', var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 1.6rem;
    color: #ffffff;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
    max-width: 320px;
    margin: 0 auto;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

a.footer-contact-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Tablet & Mobile Nav Toggle Layout */
@media (max-width: 992px) {
    /* Layout shifts */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-box {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel p {
        margin-bottom: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
}

/* Navigation for Mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* Hamburger Button Display */
    .mobile-nav-toggle {
        display: block;
        width: 32px;
        height: 32px;
        position: relative;
        z-index: 150;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
        position: absolute;
        transition: var(--transition-smooth);
        transform-origin: center;
    }
    
    .hamburger {
        left: 4px;
        top: 15px;
    }
    
    .hamburger::before {
        left: 0;
        top: -8px;
    }
    
    .hamburger::after {
        left: 0;
        top: 8px;
    }
    
    /* Cross states for burger */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    /* Nav Menu Panel Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--color-primary-dark);
        z-index: 120;
        padding: 6rem 2rem 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 1.8rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 0.5rem;
    }
    
    .contact-nav-btn {
        text-align: center;
        margin-top: 1rem;
    }
    
    .nav-phone-wrapper {
        margin-top: 0.5rem;
    }
    
    .nav-phone-link {
        text-align: center;
    }
    
    /* Hero size adjustments */
    .hero-section {
        height: 100vh;
    }
    
    .slider-img {
        height: 100vh;
        object-position: 32% center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        margin-bottom: 0.4rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.62rem, 3.2vw, 0.9rem);
        margin-bottom: 1.5rem;
    }
    

    
    .hero-trust-strip {
        flex-direction: column;
        gap: 0.35rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .trust-group-primary,
    .trust-group-secondary {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .trust-group-primary::after {
        display: none;
    }
    
    .trust-item {
        font-size: 0.65rem;
        white-space: nowrap;
    }
    
    .trust-sep {
        display: inline;
        font-size: 0.65rem;
    }
    
    .hero-overlay-content {
        justify-content: flex-end;
        padding-bottom: 14vh;
    }
    
    .slider-handle-button {
        top: 90%;
    }
    
    .hero-card {
        padding: 2.5rem 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Form modifications */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .image-label {
        font-size: 0.7rem;
        bottom: 1rem;
        padding: 0.2rem 0.6rem;
    }
    
    .before-label {
        left: 1rem;
    }
    
    .after-label {
        right: 1rem;
    }
}
