/**
 * Auto Lot — main theme stylesheet.
 *
 * Modern showroom aesthetic.
 *   Palette:    true black + warm ivory + antique gold
 *   Display:    Sora (geometric sans)
 *   Body / UI:  Inter (clean humanist sans)
 *
 * Organized top-down:
 *   1. Tokens & reset
 *   2. Typography
 *   3. Layout primitives
 *   4. Buttons
 *   5. Header
 *   6. Footer
 *   7. Homepage (hero, value strip, section primitives, story, stats)
 *   8. Page primitives (page-hero, prose, page-header)
 *   9. Featured grid (homepage)
 *   10. Pillars / Principles / Stats
 *   11. Testimonials
 *   12. Blog
 *   13. Contact + Forms
 *   14. 404
 *   15. CTA block
 *   16. Responsive overrides
 */

/* ===========================================================
   1. Design tokens + reset
   =========================================================== */
:root {
    --al-ink:         #0C0C0E;
    --al-ink-soft:    #1A1A1D;
    --al-paper:       #F8F5EF;
    --al-paper-pure:  #FFFFFF;
    --al-yellow:      #C9A24B;
    --al-yellow-dark: #A87E2E;
    --al-rust:        #A87E2E;
    --al-grey:        #6B6962;
    --al-grey-soft:   #9A968C;
    --al-grey-light:  #E7E2D6;
    --al-line:        #2A2A2A;

    --al-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --al-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --al-ui:      'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --al-max:     1280px;
    --al-gutter:  24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background: var(--al-paper);
    color: var(--al-ink);
    font-family: var(--al-ui);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--al-ink); }
a:hover { color: var(--al-rust); }

.screen-reader-text {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.al-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 12px 16px;
    background: var(--al-yellow);
    color: var(--al-ink);
    font-family: var(--al-display);
    text-transform: uppercase;
    text-decoration: none;
    z-index: 9999;
}
.al-skip-link:focus { left: 0; }

/* ===========================================================
   2. Typography
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--al-display);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.al-prose, .al-prose-narrow {
    font-family: var(--al-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--al-ink-soft);
}

.al-prose-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.al-prose p,
.al-prose-narrow p { margin: 0 0 1.25em; }

.al-prose h2,
.al-prose-narrow h2 {
    font-size: 32px;
    margin: 1.5em 0 0.5em;
    color: var(--al-ink);
}

.al-prose h3,
.al-prose-narrow h3 {
    font-size: 22px;
    margin: 1.5em 0 0.4em;
    color: var(--al-ink);
}

.al-prose ul,
.al-prose-narrow ul,
.al-prose ol,
.al-prose-narrow ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}

.al-prose li,
.al-prose-narrow li { margin-bottom: 0.5em; }

.al-prose a,
.al-prose-narrow a {
    color: var(--al-ink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: var(--al-yellow);
}
.al-prose a:hover,
.al-prose-narrow a:hover {
    text-decoration-color: var(--al-rust);
    color: var(--al-rust);
}

.al-eyebrow {
    font-family: var(--al-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--al-rust);
    font-weight: 600;
    margin: 0 0 12px;
    display: inline-block;
}

.al-eyebrow-light {
    color: var(--al-yellow);
}

/* ===========================================================
   3. Layout primitives
   =========================================================== */
.al-container {
    max-width: var(--al-max);
    margin: 0 auto;
    padding: 0 var(--al-gutter);
}

.al-main {
    min-height: 50vh;
}

.al-section {
    padding: 88px 0;
}

.al-section-dark {
    background: var(--al-ink);
    color: var(--al-paper);
}

.al-section-dark .al-section-title-light {
    color: var(--al-paper);
}

.al-section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.al-section-header-row {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: none;
    gap: 32px;
}

.al-section-header-row > div { text-align: left; }

.al-section-title {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 18px;
    color: var(--al-ink);
}

.al-section-lead {
    font-family: var(--al-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--al-ink-soft);
    margin: 0;
}

.al-section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===========================================================
   4. Buttons
   =========================================================== */
.al-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid var(--al-ink);
    background: transparent;
    color: var(--al-ink);
    font-family: var(--al-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.18s ease;
    border-radius: 0;
}

.al-btn:hover {
    background: var(--al-ink);
    color: var(--al-paper);
}

.al-btn-yellow {
    background: var(--al-yellow);
    border-color: var(--al-yellow);
    color: var(--al-ink);
}

.al-btn-yellow:hover {
    background: var(--al-ink);
    border-color: var(--al-ink);
    color: var(--al-yellow);
}

.al-btn-outline {
    background: transparent;
    border-color: var(--al-ink);
    color: var(--al-ink);
}

.al-btn-outline-light {
    background: transparent;
    border-color: var(--al-paper);
    color: var(--al-paper);
}

.al-btn-outline-light:hover {
    background: var(--al-paper);
    color: var(--al-ink);
}

.al-btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

.al-btn-block {
    display: flex;
    width: 100%;
}

/* ===========================================================
   5. Header
   =========================================================== */
.al-topbar {
    background: var(--al-ink);
    color: var(--al-paper);
    font-family: var(--al-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.al-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px var(--al-gutter);
    gap: 16px;
}

.al-topbar-tag {
    opacity: 0.75;
    font-weight: 500;
}

.al-topbar-phone {
    color: var(--al-yellow);
    text-decoration: none;
    font-weight: 600;
}

.al-topbar-phone:hover { color: #fff; }

.al-header {
    background: var(--al-paper-pure);
    border-bottom: 1px solid var(--al-grey-light);
    position: sticky;
    top: 0;
    z-index: 50;
}

.al-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px var(--al-gutter);
    gap: 24px;
}

.al-logo {
    flex-shrink: 0;
}

.al-logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--al-ink);
}

.al-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--al-ink);
    color: var(--al-yellow);
    font-family: var(--al-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
}

.al-logo-name {
    font-family: var(--al-display);
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
}

.al-logo-combo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.al-logo-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 0;
}

.al-logo-image img,
.al-logo-image .custom-logo {
    display: block;
    width: auto;
    max-height: 44px;
}

.al-logo-name-link {
    text-decoration: none;
    color: var(--al-ink);
}

.al-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.al-nav-menu {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.al-nav-menu a {
    font-family: var(--al-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--al-ink);
    font-weight: 500;
    transition: color 0.15s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.al-nav-menu a:hover {
    color: var(--al-rust);
    border-bottom-color: var(--al-rust);
}

.al-nav-cta {
    padding: 12px 22px;
    background: var(--al-yellow);
    color: var(--al-ink);
    text-decoration: none;
    font-family: var(--al-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: background-color 0.15s;
}

.al-nav-cta:hover {
    background: var(--al-ink);
    color: var(--al-yellow);
}

.al-menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.al-menu-toggle-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--al-ink);
    transition: transform 0.2s ease;
}

/* ===========================================================
   6. Footer
   =========================================================== */
.al-footer {
    background: var(--al-ink);
    color: var(--al-paper);
    font-family: var(--al-ui);
}

.al-footer-top {
    padding: 80px 0 56px;
    border-bottom: 1px solid var(--al-line);
}

.al-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
}
/* Newsletter column hidden — rebalance to 3 columns so there's no empty gap. */
.al-footer-grid--compact {
    grid-template-columns: 2fr 1fr 1fr;
}

.al-footer-logo {
    font-family: var(--al-display);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--al-yellow);
    display: block;
    margin-bottom: 16px;
}

.al-footer-address {
    font-style: normal;
    line-height: 1.8;
    color: var(--al-grey-soft);
    font-size: 14px;
}

.al-footer-address a {
    color: var(--al-paper);
    text-decoration: none;
}

.al-footer-address a:hover { color: var(--al-yellow); }

.al-footer-heading {
    font-family: var(--al-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--al-yellow);
    margin: 0 0 18px;
}

.al-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.al-footer-column li { margin-bottom: 10px; }

.al-footer-column a {
    color: var(--al-paper);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.al-footer-column a:hover { color: var(--al-yellow); }

.al-newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.al-newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid var(--al-line);
    color: var(--al-paper);
    font-family: inherit;
    font-size: 14px;
    border-radius: 0;
}

.al-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--al-yellow);
}

.al-newsletter-form input[type="email"]::placeholder {
    color: var(--al-grey-soft);
}

.al-newsletter-note {
    font-size: 12px;
    color: var(--al-grey-soft);
    margin: 12px 0 0;
    font-style: italic;
    line-height: 1.5;
}

.al-footer-bottom {
    padding: 24px 0;
}

.al-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: var(--al-grey-soft);
}

.al-copyright, .al-footer-meta {
    margin: 0;
}
.al-footer-license {
    margin-top: 4px;
    opacity: .8;
    letter-spacing: .02em;
}

/* ===========================================================
   7. Homepage — Hero
   =========================================================== */
.al-hero {
    position: relative;
    background-color: var(--al-ink);
    background-size: cover;
    background-position: center;
    color: var(--al-paper);
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 96px 0;
    overflow: hidden;
}

.al-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14,14,14,0.85) 0%,
        rgba(14,14,14,0.6) 60%,
        rgba(14,14,14,0.85) 100%
    );
    z-index: 1;
}

.al-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.al-hero-eyebrow {
    font-family: var(--al-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--al-yellow);
    font-weight: 500;
    margin: 0 0 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(245, 184, 0, 0.3);
    display: inline-block;
}

.al-hero-headline {
    font-family: var(--al-display);
    font-size: clamp(56px, 9vw, 120px);
    line-height: 0.95;
    margin: 0 0 24px;
    font-weight: 700;
    color: var(--al-paper);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.al-hero-sub {
    font-family: var(--al-body);
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.5;
    color: rgba(244, 241, 234, 0.85);
    max-width: 600px;
    margin: 0 0 40px;
}

.al-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.al-hero-credit {
    position: absolute;
    bottom: -48px;
    left: 0;
    font-family: var(--al-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(244, 241, 234, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.al-hero-credit-arrow {
    display: inline-block;
    animation: al-bounce 2s ease-in-out infinite;
}

@keyframes al-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===========================================================
   7b. Value strip
   =========================================================== */
.al-value-strip {
    background: var(--al-paper-pure);
    padding: 64px 0;
    border-bottom: 1px solid var(--al-grey-light);
}

.al-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.al-value-item h3 {
    font-size: 22px;
    margin: 16px 0 8px;
    color: var(--al-ink);
}

.al-value-num {
    font-family: var(--al-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--al-rust);
    letter-spacing: 0.15em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--al-yellow);
    display: inline-block;
}

.al-value-item p {
    font-family: var(--al-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--al-grey);
    margin: 0;
}

/* ===========================================================
   7c. Categories section
   =========================================================== */
.al-section-categories {
    background: var(--al-paper);
    padding-bottom: 88px;
}

.al-section-featured {
    background: var(--al-paper-pure);
}

/* ===========================================================
   9. Featured vehicle grid (homepage)
   =========================================================== */
.al-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.al-featured-card {
    background: var(--al-paper-pure);
    border: 1px solid var(--al-grey-light);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.al-featured-card:hover {
    box-shadow: 0 8px 32px rgba(14,14,14,0.12);
    transform: translateY(-4px);
    border-color: var(--al-ink);
}

.al-featured-image {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--al-paper);
}

.al-featured-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.al-featured-card:hover .al-featured-image img {
    transform: scale(1.06);
}

.al-featured-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--al-grey);
    font-family: var(--al-display);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
}

.al-featured-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--al-yellow);
    color: var(--al-ink);
    padding: 6px 12px;
    font-family: var(--al-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.al-featured-body {
    padding: 24px;
}

.al-featured-title {
    font-size: 22px;
    margin: 0 0 12px;
}

.al-featured-title a {
    color: var(--al-ink);
    text-decoration: none;
}

.al-featured-title a:hover { color: var(--al-rust); }

.al-featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.al-featured-price {
    font-family: var(--al-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--al-ink);
}

.al-featured-hours {
    font-family: var(--al-ui);
    font-size: 13px;
    color: var(--al-grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===========================================================
   10. Story block / Stats
   =========================================================== */
.al-section-story {
    background: var(--al-paper);
}

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

.al-story-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    margin: 0 0 24px;
}

.al-story-body {
    font-family: var(--al-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--al-ink-soft);
}

.al-story-body p { margin: 0 0 1.25em; }

.al-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--al-ink);
    padding: 2px;
}

.al-stat {
    padding: 36px 24px;
    background: var(--al-paper);
    text-align: center;
}

.al-stat-num {
    display: block;
    font-family: var(--al-display);
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    color: var(--al-ink);
    margin-bottom: 8px;
}

.al-stat-label {
    font-family: var(--al-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--al-rust);
    font-weight: 600;
}

/* ===========================================================
   10b. IRON+ Pillars
   =========================================================== */
.al-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.al-pillar {
    border-top: 4px solid var(--al-yellow);
    padding-top: 24px;
}

.al-pillar-num {
    font-family: var(--al-display);
    font-size: 14px;
    color: var(--al-yellow);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.al-pillar-title {
    font-size: 22px;
    margin: 12px 0 14px;
    color: var(--al-paper);
}

.al-pillar p {
    font-family: var(--al-body);
    color: rgba(244, 241, 234, 0.75);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* About page principles */
.al-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.al-principle {
    border-left: 4px solid var(--al-yellow);
    padding-left: 24px;
}

.al-principle h3 {
    color: var(--al-paper);
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 12px;
    text-transform: none;
    letter-spacing: normal;
}

.al-principle p {
    font-family: var(--al-body);
    color: rgba(244, 241, 234, 0.75);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* About page facts sidebar */
.al-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.al-about-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--al-ink);
    padding: 2px;
    position: sticky;
    top: 100px;
}

.al-fact {
    padding: 28px 16px;
    text-align: center;
    background: var(--al-paper);
}

.al-fact-num {
    display: block;
    font-family: var(--al-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--al-ink);
    line-height: 1;
}

.al-fact-label {
    font-family: var(--al-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--al-rust);
    margin-top: 6px;
    display: block;
}


/* About page team section */
.al-team-section {
    background: var(--al-paper-pure);
}

.al-team-section .al-section-header {
    max-width: 780px;
    margin-bottom: 44px;
}

.al-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.al-team-card {
    background: var(--al-paper);
    border: 1px solid var(--al-grey-light);
    padding: 32px 26px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.al-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(14,14,14,.12);
    border-color: var(--al-ink);
}

.al-team-photo {
    width: 138px;
    height: 138px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    background: var(--al-ink);
    border: 4px solid var(--al-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--al-yellow);
    font-family: var(--al-display);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
}

.al-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.al-team-name {
    font-size: 24px;
    margin: 0 0 6px;
}

.al-team-job {
    margin: 0 0 14px;
    font-family: var(--al-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--al-rust);
    font-weight: 600;
}

.al-team-bio {
    font-family: var(--al-body);
    color: var(--al-ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.al-team-bio p {
    margin: 0 0 1em;
}

.al-team-bio p:last-child {
    margin-bottom: 0;
}

.al-team-contact {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--al-ui);
    font-size: 13px;
}

.al-team-contact a {
    color: var(--al-ink);
    text-decoration: none;
    font-weight: 700;
}

.al-team-contact a:hover {
    color: var(--al-rust);
}

.al-team-empty {
    background: var(--al-paper);
    border: 1px dashed var(--al-grey-soft);
    padding: 28px;
    text-align: center;
    color: var(--al-grey);
}

/* Shipping & IRON+ shared step layout */
.al-shipping-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.al-shipping-step {
    padding: 28px;
    background: var(--al-paper-pure);
    border: 1px solid var(--al-grey-light);
    position: relative;
}

.al-step-num {
    font-family: var(--al-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--al-yellow);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.al-shipping-step h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--al-ink);
}

.al-shipping-step p {
    font-family: var(--al-body);
    font-size: 15px;
    color: var(--al-grey);
    line-height: 1.6;
    margin: 0;
}

.al-shipping-facts {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.al-shipping-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--al-body);
    font-size: 17px;
    line-height: 1.6;
    color: rgba(244, 241, 234, 0.85);
}

.al-shipping-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--al-line);
}

.al-shipping-list li:last-child { border-bottom: 0; }

.al-shipping-list strong {
    color: var(--al-yellow);
    font-family: var(--al-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-right: 8px;
}

/* IRON+ coverage list */
.al-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.al-coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 32px;
    font-family: var(--al-body);
    font-size: 17px;
}

.al-coverage-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--al-grey-light);
    break-inside: avoid;
}

.al-coverage-list li::before {
    content: "✓";
    color: var(--al-rust);
    font-weight: 700;
    margin-right: 10px;
}

/* ===========================================================
   11. Testimonials
   =========================================================== */
.al-section-testimonials {
    background: var(--al-paper);
}

.al-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.al-testimonial-card {
    background: var(--al-paper-pure);
    border: 1px solid var(--al-grey-light);
    padding: 32px;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.al-testimonial-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 48px;
    height: 4px;
    background: var(--al-yellow);
}

.al-testimonial-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.al-testimonial-avatar {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 68px;
    background: var(--al-ink);
    color: var(--al-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--al-display);
    font-size: 24px;
    font-weight: 700;
    border: 3px solid var(--al-yellow);
}

.al-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.al-testimonial-stars {
    color: var(--al-yellow);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.al-testimonial-quote {
    font-family: var(--al-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--al-ink-soft);
    margin: 0 0 24px;
    font-style: italic;
    flex: 1;
}

.al-testimonial-quote p { margin: 0 0 0.5em; }

.al-testimonial-attrib {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.al-testimonial-attrib strong {
    font-family: var(--al-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--al-ink);
}

.al-testimonial-role,
.al-testimonial-location {
    font-family: var(--al-ui);
    font-size: 13px;
    color: var(--al-grey);
}

.al-testimonial-purchase {
    margin-top: 20px;
    border-top: 1px solid var(--al-grey-light);
    padding-top: 18px;
}

.al-testimonial-machine-image {
    display: block;
    overflow: hidden;
    background: var(--al-paper);
    margin-bottom: 12px;
}

.al-testimonial-machine-image img,
.al-testimonial-purchase > img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.al-testimonial-machine-name {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.al-testimonial-machine-name span {
    font-family: var(--al-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--al-grey);
}

.al-testimonial-machine-name a,
.al-testimonial-machine-name strong {
    font-family: var(--al-display);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--al-ink);
    text-decoration: none;
}

.al-testimonial-machine-name a:hover {
    color: var(--al-rust);
}

.al-testimonials-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--al-grey);
    font-style: italic;
    background: var(--al-paper-pure);
    border: 1px dashed var(--al-grey-light);
}

/* ===========================================================
   12. Page header / Page hero (used on inner pages)
   =========================================================== */
.al-page-header {
    background: var(--al-paper);
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--al-grey-light);
}

.al-page-title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    margin: 0;
    color: var(--al-ink);
}

.al-page-lead {
    font-family: var(--al-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--al-grey);
    max-width: 720px;
    margin: 16px 0 0;
}

.al-page-hero {
    background: var(--al-ink);
    color: var(--al-paper);
    padding: 96px 0 80px;
    position: relative;
}

.al-page-hero::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--al-yellow);
}

.al-page-hero .al-eyebrow {
    color: var(--al-yellow);
}

.al-page-hero-title {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    margin: 0 0 24px;
    color: var(--al-paper);
}

.al-page-hero-sub {
    font-family: var(--al-body);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
    color: rgba(244, 241, 234, 0.85);
    max-width: 680px;
    margin: 0;
}

.al-page-body {
    padding: 64px 0;
}

/* ===========================================================
   13. Blog
   =========================================================== */
.al-blog-list {
    padding: 64px var(--al-gutter);
}

.al-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.al-blog-card {
    background: var(--al-paper-pure);
    border: 1px solid var(--al-grey-light);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.al-blog-card:hover {
    box-shadow: 0 8px 32px rgba(14,14,14,0.1);
    transform: translateY(-3px);
}

.al-blog-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.al-blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.al-blog-card:hover .al-blog-card-image img { transform: scale(1.05); }

.al-blog-card-body { padding: 28px; }

.al-blog-card-date {
    font-family: var(--al-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--al-rust);
    margin: 0 0 10px;
}

.al-blog-card-title {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.al-blog-card-title a {
    color: var(--al-ink);
    text-decoration: none;
}

.al-blog-card-title a:hover { color: var(--al-rust); }

.al-blog-card-excerpt {
    font-family: var(--al-body);
    font-size: 15px;
    color: var(--al-grey);
    line-height: 1.6;
    margin: 0 0 16px;
}

.al-blog-card-link {
    font-family: var(--al-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: var(--al-ink);
    font-weight: 600;
}

.al-blog-card-link:hover { color: var(--al-rust); }

.al-post-header {
    padding: 64px 0 32px;
    background: var(--al-paper);
    text-align: center;
}

.al-post-header-inner { max-width: 800px; margin: 0 auto; }

.al-post-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 16px;
}

.al-post-byline {
    font-family: var(--al-ui);
    color: var(--al-grey);
    font-size: 14px;
    margin: 0;
}

.al-post-hero {
    max-width: 1200px;
    margin: 0 auto 48px;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.al-post-hero img { width: 100%; height: 100%; object-fit: cover; }

.al-post-body {
    max-width: 760px;
    padding: 0 var(--al-gutter) 64px;
}

.al-post-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--al-grey-light);
}

.al-post-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.al-tag {
    padding: 6px 12px;
    background: var(--al-paper);
    color: var(--al-ink);
    text-decoration: none;
    font-family: var(--al-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid var(--al-grey-light);
}

.al-tag:hover {
    background: var(--al-yellow);
    border-color: var(--al-yellow);
}

.al-pagination {
    margin-top: 48px;
    text-align: center;
}

.al-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.al-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--al-grey-light);
    color: var(--al-ink);
    text-decoration: none;
    font-family: var(--al-display);
    font-size: 14px;
    font-weight: 600;
}

.al-pagination .page-numbers.current {
    background: var(--al-ink);
    color: var(--al-yellow);
    border-color: var(--al-ink);
}

.al-pagination .page-numbers:hover {
    background: var(--al-yellow);
    border-color: var(--al-ink);
}

/* ===========================================================
   14. Contact + Forms
   =========================================================== */
.al-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.al-contact-info {
    padding-right: 16px;
}

.al-contact-block-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--al-rust);
    margin: 0 0 8px;
}

.al-contact-big {
    font-family: var(--al-display);
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 8px;
    font-weight: 600;
}

.al-contact-big a {
    color: var(--al-ink);
    text-decoration: none;
}

.al-contact-big a:hover { color: var(--al-rust); }

.al-contact-address {
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: 22px;
    line-height: 1.4;
}

.al-contact-note {
    font-family: var(--al-body);
    color: var(--al-grey);
    font-size: 14px;
    margin: 0 0 8px;
    line-height: 1.5;
}

.al-divider {
    border: 0;
    height: 1px;
    background: var(--al-grey-light);
    margin: 36px 0;
}

.al-contact-form {
    background: var(--al-paper-pure);
    padding: 36px;
    border: 1px solid var(--al-grey-light);
}

.al-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.al-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.al-form-label {
    display: flex;
    flex-direction: column;
    font-family: var(--al-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--al-ink);
    font-weight: 600;
}

.al-form-input {
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid var(--al-grey-light);
    background: var(--al-paper);
    font-family: var(--al-ui);
    font-size: 15px;
    color: var(--al-ink);
    border-radius: 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
}

.al-form-input:focus {
    outline: none;
    border-color: var(--al-ink);
    background: var(--al-paper-pure);
    box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.2);
}

.al-form-disclaimer {
    margin-top: 12px;
    font-style: italic;
    font-size: 12px;
}

/* Job listings on careers */
.al-job-list {
    list-style: none;
    padding: 0;
}

.al-job-list > li {
    padding: 24px 0;
    border-bottom: 1px solid var(--al-grey-light);
}

.al-job-list h3 {
    font-size: 22px;
    margin: 0 0 6px;
    text-transform: none;
    letter-spacing: 0;
}

.al-job-list p {
    margin: 0;
    color: var(--al-grey);
    font-size: 15px;
}

/* ===========================================================
   15. 404
   =========================================================== */
.al-404 {
    padding: 120px 0;
    text-align: center;
}

.al-404-headline {
    font-size: clamp(120px, 20vw, 240px);
    line-height: 1;
    margin: 0;
    color: var(--al-ink);
    letter-spacing: -0.04em;
}

.al-404-sub {
    font-family: var(--al-body);
    font-size: 20px;
    color: var(--al-grey);
    max-width: 540px;
    margin: 16px auto 40px;
}

.al-404-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================================
   16. CTA block (shared)
   =========================================================== */
.al-cta-section {
    background: var(--al-yellow);
    color: var(--al-ink);
    padding: 88px 0;
    text-align: center;
    position: relative;
}

.al-cta-section::before,
.al-cta-section::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    background: var(--al-ink);
}
.al-cta-section::before { top: 0; }
.al-cta-section::after { bottom: 0; }

.al-cta-section .al-eyebrow {
    color: var(--al-ink);
    opacity: 0.7;
}

.al-cta-headline {
    font-family: var(--al-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
    color: var(--al-ink);
    text-transform: uppercase;
}

.al-cta-sub {
    font-family: var(--al-body);
    font-size: 18px;
    line-height: 1.55;
    color: var(--al-ink-soft);
    max-width: 540px;
    margin: 0 auto 32px;
}

.al-cta-section .al-btn-yellow {
    background: var(--al-ink);
    border-color: var(--al-ink);
    color: var(--al-yellow);
}

.al-cta-section .al-btn-yellow:hover {
    background: var(--al-paper);
    color: var(--al-ink);
    border-color: var(--al-ink);
}

.al-empty-state {
    text-align: center;
    color: var(--al-grey);
    padding: 64px 24px;
    font-style: italic;
}

/* ===========================================================
   17. Responsive
   =========================================================== */
@media (max-width: 1024px) {

    .al-section { padding: 64px 0; }

    .al-section-title { font-size: 40px; }

    .al-value-grid,
    .al-pillars,
    .al-principles,
    .al-team-grid,
    .al-shipping-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .al-story-grid,
    .al-about-grid,
    .al-coverage-grid,
    .al-shipping-facts,
    .al-contact-grid,
    .al-footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .al-about-sidebar { position: static; }

    .al-coverage-list { columns: 1; }
}

@media (max-width: 768px) {
    .al-topbar-tag { display: none; }

    /* Mobile nav */
    .al-menu-toggle { display: flex; }

    .al-nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 80%;
        max-width: 360px;
        background: var(--al-ink);
        padding: 80px 32px 32px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
    }

    .al-nav.is-open { right: 0; }

    body.al-menu-open { overflow: hidden; }

    .al-nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .al-nav-menu a {
        color: var(--al-paper);
        padding: 16px 0;
        border-bottom: 1px solid var(--al-line);
        font-size: 16px;
    }

    .al-nav-menu a:hover {
        color: var(--al-yellow);
        border-bottom-color: var(--al-yellow);
    }

    .al-nav-cta {
        margin-top: 24px;
        text-align: center;
    }

    /* Hero */
    .al-hero { min-height: auto; padding: 64px 0; }
    .al-hero-ctas { flex-direction: column; align-items: stretch; }
    .al-hero-credit { position: static; margin-top: 32px; }

    /* Section header rows stack */
    .al-section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Footer bottom stacks */
    .al-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Form row stacks */
    .al-form-row { grid-template-columns: 1fr; }

    /* 404 */
    .al-404 { padding: 64px 0; }
    .al-404-ctas { flex-direction: column; align-items: stretch; }
}

@media (max-width: 520px) {
    .al-value-grid,
    .al-pillars,
    .al-principles,
    .al-team-grid,
    .al-shipping-grid,
    .al-featured-grid {
        grid-template-columns: 1fr;
    }

    .al-section-title { font-size: 32px; }

    .al-hero-eyebrow { font-size: 11px; }

    .al-section { padding: 48px 0; }

    .al-page-header { padding: 48px 0 32px; }

    .al-page-hero { padding: 64px 0 48px; }

    .al-cta-section { padding: 56px 0; }

    .al-about-sidebar,
    .al-story-stats {
        grid-template-columns: 1fr 1fr;
    }

    .al-contact-form { padding: 24px; }
}

/* ---------- Full-width content wrapper (Elementor + setup pages) ---------- */
.al-fullwidth-content { width: 100%; }
.al-fullwidth-content > p:empty { display: none; }

/* ---------- Default hero background: bundled vehicle-themed art ----------
   Replace with a real photo of your yard via Elementor (section background)
   or Customize → Auto Lot — Brand → Hero image. */
.al-hero {
    background-image: url(../images/hero-placeholder.svg);
    background-size: cover;
    background-position: center;
    background-color: var(--al-ink);
}

/* ---------- Mobile header: keep the long logo from pushing the menu button off-screen ---------- */
@media (max-width: 768px) {
    .al-header-inner { gap: 12px; padding: 14px var(--al-gutter); }
    .al-logo { flex-shrink: 1; min-width: 0; }
    .al-logo-text { gap: 9px; }
    .al-logo-combo { gap: 9px; }
    .al-logo-image img,
    .al-logo-image .custom-logo { max-height: 38px; }
    .al-logo-mark { width: 38px; height: 38px; font-size: 15px; flex-shrink: 0; }
    .al-logo-name { font-size: 15px; line-height: 1.05; }
    .al-menu-toggle { flex-shrink: 0; margin-left: auto; }
}
@media (max-width: 400px) {
    .al-logo-name { font-size: 13px; }
}


/* Featured vehicle category badge readability fix */
.al-featured-image .al-featured-tag,
.al-featured-card .al-featured-tag {
    display: inline-flex !important;
    align-items: center !important;
    max-width: calc(100% - 32px) !important;
    background: var(--al-yellow) !important;
    color: var(--al-ink) !important;
    border: 1px solid rgba(14,14,14,.18) !important;
    box-shadow: 0 4px 14px rgba(14,14,14,.22) !important;
    text-shadow: none !important;
    line-height: 1.15 !important;
    z-index: 4 !important;
    overflow-wrap: anywhere !important;
}

/* ===========================================================
   17. Modern showroom restyle (Auto Lot)
   Overrides appended last so they win the cascade. Re-skins the
   inherited industrial layout into a rounded, blue-accented look.
   =========================================================== */

/* Soften the all-caps industrial typography into modern title case */
h1, h2, h3, h4, h5, h6 { text-transform: none; letter-spacing: -0.015em; }
.al-hero-headline { text-transform: none; letter-spacing: -0.03em; font-weight: 800; }
.al-section-title { text-transform: none; letter-spacing: -0.02em; font-weight: 700; }

/* Eyebrows stay upper, but lighter and blue */
.al-eyebrow { color: var(--al-yellow); letter-spacing: 0.18em; font-weight: 600; }
.al-eyebrow-light { color: #E4CE91; text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; font-weight: 600; margin: 0 0 18px; font-family: var(--al-display); }

/* Buttons: rounded, lower-contrast borders, soft motion */
.al-btn {
    text-transform: none;
    letter-spacing: 0.005em;
    border-radius: 12px;
    border-width: 1.5px;
    font-weight: 600;
    padding: 13px 26px;
}
.al-btn-accent {
    background: var(--al-yellow);
    border-color: var(--al-yellow);
    color: var(--al-ink);
    box-shadow: 0 8px 22px -10px rgba(201,162,75,.8);
}
.al-btn-accent:hover {
    background: var(--al-yellow-dark);
    border-color: var(--al-yellow-dark);
    color: var(--al-ink);
}
.al-btn-outline:hover { background: var(--al-ink); border-color: var(--al-ink); color: #fff; }
.al-btn-large { padding: 16px 34px; font-size: 16px; }

/* Hero: black-and-gold gradient by default, modern search bar */
.al-hero {
    background-color: var(--al-ink);
    background-image:
        radial-gradient(900px 500px at 80% -10%, rgba(201,162,75,.35), transparent 60%),
        radial-gradient(700px 500px at 0% 110%, rgba(216,189,119,.18), transparent 55%),
        linear-gradient(160deg, var(--al-ink) 0%, #1A140A 100%);
    min-height: 70vh;
}
.al-hero.has-image { background-color: var(--al-ink); }
.al-hero-sub { font-family: var(--al-body); color: rgba(233,238,247,.82); }
.al-hero-search {
    display: flex;
    gap: 10px;
    max-width: 620px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    padding: 10px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
}
.al-hero-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-family: var(--al-ui);
    padding: 8px 12px;
    outline: none;
}
.al-hero-search-input::placeholder { color: rgba(233,238,247,.6); }
.al-hero-actions { display: flex; gap: 28px; flex-wrap: wrap; }
.al-hero-link {
    color: #E4CE91;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.al-hero-link:hover { color: #fff; }

/* Section primitives used by the homepage */
.al-section { padding: 76px 0; }
.al-section-alt { background: #fff; }
.al-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.al-section-head .al-section-title { margin: 4px 0 0; font-size: clamp(28px, 4vw, 40px); }

/* Page primitives */
.al-page-title { font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; letter-spacing: -0.02em; }
.al-lead { font-size: 20px; color: var(--al-grey); max-width: 720px; margin: 0 0 24px; }

/* Reviews grid (also used by [vehicle_reviews]) */
.al-reviews-grid, .autolot-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.autolot-review {
    background: #fff;
    border: 1px solid var(--al-grey-light);
    border-radius: 16px;
    padding: 26px;
    margin: 0;
    box-shadow: 0 14px 40px -28px rgba(12,12,14,.5);
}
.autolot-review-stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 12px; }
.autolot-review-text { font-family: var(--al-body); font-size: 16px; line-height: 1.6; color: var(--al-ink-soft); margin: 0 0 18px; }
.autolot-review-author strong { display: block; font-family: var(--al-display); }
.autolot-review-author span { color: var(--al-grey); font-size: 14px; }

/* Value strip cards rounded */
.al-value-item { border-radius: 14px; }

/* Header polish */
.al-logo-mark {
    background: var(--al-yellow) !important;
    color: var(--al-ink) !important;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .al-hero-search { flex-direction: column; }
    .al-hero-search .al-btn { width: 100%; }
}

/* ---- Editable header CTA ---- */
.al-header-cta{
    display:inline-flex;align-items:center;margin-left:18px;padding:10px 20px;
    background:var(--al-yellow,var(--al-yellow));color:var(--al-ink,var(--al-ink));
    border-radius:8px;font-weight:700;text-decoration:none;font-size:.95rem;
    transition:background .15s,color .15s;
}
.al-header-cta:hover{background:var(--al-ink,var(--al-ink));color:#fff;}

/* ---- Footer about + social ---- */
.al-footer-about{color:rgba(255,255,255,.72);font-size:.92rem;line-height:1.6;margin:12px 0 16px;max-width:30ch;}
.al-footer-social{display:flex;gap:10px;margin-top:14px;}
.al-footer-social .al-social-link{
    display:inline-flex;align-items:center;justify-content:center;
    width:38px;height:38px;border-radius:50%;
    border:1px solid rgba(255,255,255,.22);color:#fff;text-decoration:none;
    font-weight:700;font-size:.85rem;transition:all .15s;
}
.al-footer-social .al-social-link:hover{background:var(--al-yellow,var(--al-yellow));color:var(--al-ink,var(--al-ink));border-color:var(--al-yellow,var(--al-yellow));}

/* ---- Newsletter status message ---- */
.al-newsletter-msg{margin-top:10px;font-size:.9rem;}
.al-newsletter-msg.is-ok{color:#7CCF9A;}
.al-newsletter-msg.is-error{color:#F0A6A6;}

/* ===== Leave-a-review form (Reviews page) ===== */
.al-review-cta{background:var(--al-ink,var(--al-ink));color:#fff;padding:64px 20px;margin-top:48px;}
.al-review-cta-inner{max-width:760px;margin:0 auto;}
.al-review-eyebrow{font-family:'Sora',sans-serif;text-transform:uppercase;letter-spacing:.24em;font-size:12px;font-weight:600;color:var(--al-yellow,var(--al-yellow));margin:0 0 14px;text-align:center;}
.al-review-title{font-family:'Sora',sans-serif;font-size:34px;font-weight:700;text-transform:uppercase;text-align:center;color:#fff;margin:0 0 14px;line-height:1.1;}
.al-review-sub{text-align:center;color:rgba(255,255,255,.72);font-size:16px;line-height:1.7;margin:0 auto 32px;max-width:600px;}
.al-review-form{background:rgba(255,255,255,.04);border:1px solid rgba(201,162,75,.35);border-radius:14px;padding:30px;}
.al-review-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.al-review-form label{display:block;font-family:'Sora',sans-serif;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:#e7e2d6;margin-bottom:0;}
.al-review-form .al-opt{font-weight:400;text-transform:none;letter-spacing:0;color:rgba(255,255,255,.5);font-family:'Inter',sans-serif;}
.al-review-form input[type=text],.al-review-form input[type=email],.al-review-form textarea{
    width:100%;margin-top:8px;margin-bottom:4px;padding:12px 14px;border:1px solid rgba(255,255,255,.18);
    border-radius:9px;background:rgba(255,255,255,.06);color:#fff;font-size:15px;font-family:'Inter',sans-serif;}
.al-review-form input:focus,.al-review-form textarea:focus{outline:none;border-color:var(--al-yellow,var(--al-yellow));background:rgba(255,255,255,.09);}
.al-review-form input::placeholder,.al-review-form textarea::placeholder{color:rgba(255,255,255,.4);}
.al-review-full{margin-top:16px;display:block;}
.al-review-rating{display:flex;align-items:center;gap:14px;margin-top:18px;}
.al-review-rating-label{font-family:'Sora',sans-serif;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:#e7e2d6;}
.al-stars{display:inline-flex;flex-direction:row-reverse;justify-content:flex-end;}
.al-stars input{display:none;}
.al-stars label{color:#43413c;font-size:30px;line-height:1;cursor:pointer;padding:0 2px;transition:color .12s;}
.al-stars input:checked ~ label{color:var(--al-yellow,var(--al-yellow));}
.al-stars label:hover,.al-stars label:hover ~ label{color:#E4CE91;}
.al-review-submit{margin-top:22px;}
.al-hp{position:absolute !important;left:-9999px !important;width:1px;height:1px;opacity:0;}
.al-review-msg{margin:16px 0 0;font-size:.95rem;}
.al-review-msg.is-ok{color:#7CCF9A;}
.al-review-msg.is-error{color:#F0A6A6;}
@media(max-width:680px){.al-review-grid{grid-template-columns:1fr;}.al-review-title{font-size:26px;}}

/* ===== Review form: file uploads + consent ===== */
.al-review-note{display:block;margin-top:6px;font-size:.8rem;color:rgba(255,255,255,.45);font-family:'Inter',sans-serif;font-weight:400;text-transform:none;letter-spacing:0;}
.al-review-form input[type=file]{
    width:100%;margin-top:8px;color:rgba(255,255,255,.7);font-size:14px;
    border:1px dashed rgba(255,255,255,.22);border-radius:9px;padding:12px;background:rgba(255,255,255,.04);
}
.al-review-form input[type=file]::file-selector-button{
    background:var(--al-ink,var(--al-ink));color:var(--al-yellow,var(--al-yellow));border:1px solid var(--al-yellow,var(--al-yellow));
    border-radius:7px;padding:8px 14px;margin-right:12px;font-family:'Sora',sans-serif;font-weight:600;
    text-transform:uppercase;letter-spacing:.06em;font-size:11px;cursor:pointer;
}
.al-review-consent{display:flex;align-items:flex-start;gap:12px;margin-top:22px;padding:16px;
    border-left:3px solid var(--al-yellow,var(--al-yellow));background:rgba(201,162,75,.07);border-radius:8px;
    font-family:'Inter',sans-serif;font-weight:400;text-transform:none;letter-spacing:0;}
.al-review-consent input[type=checkbox]{width:18px;height:18px;margin-top:2px;flex-shrink:0;accent-color:var(--al-yellow,var(--al-yellow));}
.al-review-consent span{font-size:.9rem;line-height:1.6;color:rgba(255,255,255,.8);}

/* Review cards: avatar + vehicle photo */
.autolot-review-avatar{width:60px;height:60px;border-radius:50%;overflow:hidden;margin-bottom:14px;border:2px solid var(--al-yellow,var(--al-yellow));}
.autolot-review-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.autolot-review-vehicle{margin:14px 0 4px;border-radius:10px;overflow:hidden;}
.autolot-review-vehicle img{width:100%;height:auto;display:block;}

