/**
 * Equipment Yard — main theme stylesheet.
 *
 * Editorial-industrial aesthetic.
 *   Palette:    charcoal + cream + safety yellow + rust
 *   Display:    Oswald (condensed sans, all-caps)
 *   Body:       Lora (transitional serif)
 *   UI:         system-ui (sans, clean labels)
 *
 * 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 {
    --ey-ink:         #0E0E0E;
    --ey-ink-soft:    #2A2A2A;
    --ey-paper:       #F4F1EA;
    --ey-paper-pure:  #FFFFFF;
    --ey-yellow:      #F5B800;
    --ey-yellow-dark: #C99700;
    --ey-rust:        #C24914;
    --ey-grey:        #5A5A5A;
    --ey-grey-soft:   #8A8A8A;
    --ey-grey-light:  #E5E1D8;
    --ey-line:        #3A3A3A;

    --ey-display: 'Oswald', Impact, 'Arial Narrow Bold', sans-serif;
    --ey-body:    'Lora', Georgia, 'Times New Roman', serif;
    --ey-ui:      system-ui, -apple-system, 'Segoe UI', sans-serif;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background: var(--ey-paper);
    color: var(--ey-ink);
    font-family: var(--ey-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(--ey-ink); }
a:hover { color: var(--ey-rust); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===========================================================
   4. Buttons
   =========================================================== */
.ey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid var(--ey-ink);
    background: transparent;
    color: var(--ey-ink);
    font-family: var(--ey-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ey-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ey-copyright, .ey-footer-meta {
    margin: 0;
}

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

.ey-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;
}

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

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

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

.ey-hero-sub {
    font-family: var(--ey-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;
}

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

.ey-hero-credit {
    position: absolute;
    bottom: -48px;
    left: 0;
    font-family: var(--ey-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* About page team section — Editorial style (matches IRON+ / About full-bleed) */
.ey-team-section {
    background: var(--ey-paper);
}

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

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

.ey-team-card {
    background: var(--ey-paper-pure);
    border: 1px solid var(--ey-grey-light);
    border-top: 3px solid var(--ey-yellow);
    overflow: hidden;
    transition: border-color .2s ease;
}

.ey-team-card:hover {
    border-color: var(--ey-ink);
    border-top-color: var(--ey-yellow);
}

.ey-team-photo {
    width: 100%;
    height: 320px;
    background: var(--ey-ink);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ey-yellow);
    font-family: var(--ey-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

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

.ey-team-body {
    padding: 26px 26px 28px;
}

.ey-team-name {
    font-family: var(--ey-display);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--ey-ink);
    margin: 0 0 8px;
    line-height: 1.2;
}

.ey-team-job {
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ey-grey-light);
    font-family: var(--ey-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--ey-rust);
    font-weight: 600;
}

.ey-team-bio {
    font-family: var(--ey-body);
    color: var(--ey-ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.ey-team-bio p {
    margin: 0 0 .8em;
}

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

.ey-team-contact {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--ey-grey-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ey-team-contact a {
    color: var(--ey-ink);
    text-decoration: none;
    font-family: var(--ey-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.ey-team-contact a::before {
    content: "›";
    display: inline-block;
    margin-right: 10px;
    color: var(--ey-yellow);
    font-weight: 700;
    font-size: 18px;
}

.ey-team-contact a:hover {
    color: var(--ey-yellow);
}

.ey-team-empty {
    background: var(--ey-paper-pure);
    border: 1px dashed var(--ey-grey-light);
    padding: 32px;
    text-align: center;
    color: var(--ey-grey);
    font-family: var(--ey-body);
}

/* Photo height adjustments per breakpoint */
@media (max-width: 900px) {
    .ey-team-photo { height: 280px; font-size: 60px; }
}
@media (max-width: 520px) {
    .ey-team-photo { height: 340px; font-size: 64px; }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* Featured equipment category badge readability fix */
.ey-featured-image .ey-featured-tag,
.ey-featured-card .ey-featured-tag {
    display: inline-flex !important;
    align-items: center !important;
    max-width: calc(100% - 32px) !important;
    background: var(--ey-yellow) !important;
    color: var(--ey-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;
}
