
/* ════════════════════════════════════════════════
   OVERLAND & OFFSHORE — MAIN STYLESHEET v1.0
   Dark luxury · Gold & Black · High conversion
════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────── */
:root {
    /* Core palette */
    --gold:          #C9A84C;
    --gold-light:    #E8C876;
    --gold-dark:     #9A7838;
    --gold-glow:     rgba(201, 168, 76, 0.18);
    --black:         #080808;
    --black-2:       #0F0F0F;
    --black-3:       #161616;
    --black-4:       #1E1E1E;
    --black-5:       #252525;
    --surface:       #111111;
    --surface-2:     #181818;
    --border:        rgba(201, 168, 76, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary:   #F0EDE8;
    --text-secondary: #A8A09A;
    --text-muted:     #6A6460;
    --text-gold:      #C9A84C;

    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body:    'Barlow', 'Helvetica Neue', sans-serif;
    --font-serif:   'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   2rem;
    --space-lg:   4rem;
    --space-xl:   6rem;
    --space-2xl:  9rem;

    /* Layout */
    --container:    1280px;
    --header-h:     calc(160px + 1cm);
    --topbar-h:     40px;
    --radius-sm:    4px;
    --radius-md:    8px;
    --radius-lg:    16px;

    /* Transitions */
    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
    --dur-fast:  180ms;
    --dur-med:   320ms;
    --dur-slow:  500ms;

    /* Shadows */
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12), 0 4px 24px rgba(0,0,0,0.6);
    --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-btn:  0 4px 20px rgba(201, 168, 76, 0.3);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    background-color: var(--black);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--dur-fast) ease;
}

a:hover { color: var(--gold-light); }
a:focus-visible,
button:focus-visible,
.oe-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.oe-btn:focus:not(:focus-visible) {
    outline: none;
}

/* Screen reader only */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link:focus {
    background-color: var(--gold);
    color: var(--black);
    clip: auto !important;
    clip-path: none !important;
    height: auto;
    width: auto;
    top: 5px;
    left: 5px;
    z-index: 10000;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--text-primary);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--text-primary); }

address { font-style: normal; }

/* ─── UTILITY ────────────────────────────────── */
.gold { color: var(--gold); }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ─── CONTAINER ──────────────────────────────── */
.oe-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 2rem;
}

/* ─── BUTTONS ────────────────────────────────── */
.oe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--dur-med) var(--ease-out);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.oe-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity var(--dur-fast) ease;
}

.oe-btn:hover::before { opacity: 1; }

.oe-btn--gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: var(--shadow-btn);
}

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

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

.oe-btn--outline:hover {
    background: var(--gold-glow);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.oe-btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-subtle);
}

.oe-btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.oe-btn--sm  { padding: 0.625rem 1.25rem; font-size: 0.8rem; }
.oe-btn--lg  { padding: 1.1rem 2.25rem; font-size: 0.95rem; }
.oe-btn--full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ────────────────────────── */
.oe-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.oe-section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.375rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--gold-glow);
    margin-bottom: 1.25rem;
}

.oe-section-heading {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.oe-section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin-inline: auto;
    line-height: 1.75;
}

/* ════════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════════ */
.oe-topbar {
    background: var(--gold-dark);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
    transition: transform var(--dur-med) ease;
}

.oe-topbar__inner {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.oe-topbar__text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.03em;
}

.oe-topbar__link {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

.oe-topbar__btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    background: rgba(0,0,0,0.15);
    padding: 0.3rem 0.875rem;
    border-radius: 999px;
    transition: background var(--dur-fast) ease;
    white-space: nowrap;
}

.oe-topbar__btn:hover { background: rgba(0,0,0,0.3); color: var(--black); }

/* ════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════ */
.oe-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: transparent;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all var(--dur-med) ease;
}

.oe-header.scrolled {
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.oe-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 2rem;
}

/* Logo */
.oe-header__logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    height: 100%; /* Ensure it takes full header height */
}

.oe-header__logo-link,
.site-logo-link { 
    display: flex; 
    align-items: center;
    height: calc(115px + 1cm); /* Increased height for larger logo */
    flex-shrink: 0;
}

.site-logo-img,
.oe-header__logo img {
    display: block;
    height: calc(115px + 1cm); /* Increased by 1cm */
    width: auto;
    background: transparent !important;
    mix-blend-mode: screen;
}

@media (max-width: 1024px) {
    .site-logo-img,
    .oe-header__logo img {
        height: calc(90px + 1cm); /* Increased by 1cm */
    }
    .oe-header__logo-text {
        display: flex; /* Show text logo on tablet/mobile */
    }
}

@media (max-width: 768px) {
    .site-logo-img,
    .oe-header__logo img {
        height: calc(60px + 2cm); /* Increased further for visibility */
    }
}

.oe-header__logo-text {
    display: none; /* Hide text logo on desktop */
    flex-direction: column;
    line-height: 1.1;
    white-space: normal;
}

.oe-header__logo-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.12em;
    color: var(--text-primary);
}

.oe-header__logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

/* Desktop Nav */
.oe-header__nav { flex: 1; display: flex; justify-content: center; }

.oe-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.oe-nav__item { position: relative; }

.oe-nav__link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--dur-fast) ease;
}

.oe-nav__link:hover,
.oe-nav__item.current-menu-item .oe-nav__link,
.oe-nav__item.current-page-ancestor .oe-nav__link {
    color: var(--gold);
    background: var(--gold-glow);
}

.oe-nav__arrow { font-size: 0.55rem; transition: transform var(--dur-fast) ease; }
.oe-nav__item.has-dropdown:hover .oe-nav__arrow { transform: rotate(180deg); }

/* Dropdown */
.oe-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--black-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--dur-med) var(--ease-out);
    box-shadow: var(--shadow-card);
    z-index: 10;
}

.oe-nav__item.has-dropdown:hover .oe-nav__dropdown,
.oe-nav__item.has-dropdown:focus-within .oe-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.oe-nav__dropdown li a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--dur-fast) ease;
}

.oe-nav__dropdown li a:hover {
    color: var(--gold);
    background: var(--gold-glow);
    padding-left: 1.25rem;
}

/* Header Actions */
.oe-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Hamburger */
.oe-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-left: auto;
}

.oe-hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--dur-med) var(--ease-out);
}

.oe-hamburger.active .oe-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oe-hamburger.active .oe-hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.oe-hamburger.active .oe-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.oe-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--black-2);
    z-index: 999;
    padding-top: var(--header-h);
    overflow: hidden;
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
}

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

.oe-mobile-nav__inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: calc(100% - var(--header-h));
    gap: 0.5rem;
}

.oe-mobile-nav__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0;
    flex-grow: 0;
}

.oe-mobile-nav__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--black-3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all var(--dur-fast) ease;
}

.oe-mobile-nav__item:hover {
    border-color: var(--gold);
    background: var(--black-4);
}

.oe-mobile-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--gold);
    background: var(--gold-glow);
    border-radius: 6px;
    flex-shrink: 0;
}

.oe-mobile-nav__icon svg {
    width: 16px;
    height: 16px;
}

.oe-mobile-nav__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.oe-mobile-nav__ctas {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.oe-mobile-nav__contact {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    padding-bottom: 1rem;
}

/* Header spacer (compensates for fixed header) */
.oe-header-spacer {
    display: block;
    height: var(--header-h);
}

@media (max-width: 768px) {
    .oe-header-spacer {
        height: var(--header-h);
    }
}

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.oe-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.oe-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.oe-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) saturate(0.9);
}

.oe-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8,8,8,0.85) 0%,
        rgba(8,8,8,0.55) 60%,
        rgba(8,8,8,0.3) 100%
    );
}

.oe-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,8,8,0.75) 0%,
        transparent 65%
    );
}

.oe-hero .oe-container {
    position: relative;
    z-index: 1;
    padding-block: 6rem;
}

.oe-hero__content {
    max-width: 720px;
}

/* Badge */
.oe-hero__badge { margin-bottom: 1.75rem; }

.oe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.5rem 1.125rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.1);
}

/* Hero heading */
.oe-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.98;
    letter-spacing: 0.03em;
    margin-bottom: 1.75rem;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.oe-hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

/* Hero CTAs */
.oe-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Trust strip */
.oe-hero__trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.oe-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.oe-trust-item strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    line-height: 1;
}

.oe-trust-item span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.oe-trust-divider {
    color: var(--border);
    font-size: 1.5rem;
    font-weight: 100;
}

/* Scroll indicator */
.oe-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.oe-hero__scroll-line {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.oe-hero__scroll-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

/* ════════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════════ */
.oe-categories {
    background: var(--black-2);
    padding-block: var(--space-xl);
}

.oe-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Category Card */
.oe-cat-card {
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--dur-med) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.oe-cat-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.oe-cat-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.oe-cat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}

.oe-cat-card:hover .oe-cat-card__img { transform: scale(1.06); }

.oe-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
}

.oe-cat-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.oe-cat-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.oe-cat-card__title {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
}

.oe-cat-card__line {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.oe-cat-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.oe-categories__footer-cta {
    margin-top: 3rem;
    text-align: center;
}

/* ════════════════════════════════════════════════
   CERTIFICATION
════════════════════════════════════════════════ */
.oe-certification {
    position: relative;
    background: var(--black-3);
    padding-block: var(--space-xl);
    overflow: hidden;
}

.oe-certification__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(201, 168, 76, 0.025) 40px,
            rgba(201, 168, 76, 0.025) 41px
        );
    pointer-events: none;
}

.oe-certification__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.oe-certification__text .oe-section-heading {
    text-align: left;
    margin-bottom: 1.5rem;
}

.oe-certification__text .oe-section-tag { display: block; margin-bottom: 1.25rem; }

.oe-certification__body {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.025rem;
}

.oe-certification__orgs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.oe-cert-org {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--black-5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--dur-med) ease;
}

.oe-cert-org:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.oe-cert-org__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.oe-cert-org__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.oe-cert-org__info strong { font-size: 1rem; color: var(--text-primary); }
.oe-cert-org__info span  { font-size: 0.78rem; color: var(--text-muted); }

.oe-cert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.oe-cert-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--black-5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
}

.oe-cert-stat strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.oe-cert-stat span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ════════════════════════════════════════════════
   SALES HOOK
════════════════════════════════════════════════ */
.oe-sales-hook {
    background: var(--black);
    padding-block: var(--space-xl);
}
.oe-sales-hook__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.oe-sales-hook__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.oe-hook-block {
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all var(--dur-med) ease;
    position: relative;
    overflow: hidden;
}

/* Table wrapper for mobile responsiveness */
.oe-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-block: 2rem;
}

.oe-hook-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height var(--dur-slow) var(--ease-out);
    border-radius: 0 0 2px 0;
}

.oe-hook-block:hover { border-color: var(--border); }
.oe-hook-block:hover::before { height: 100%; }

.oe-hook-block__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    opacity: 0.35;
    margin-bottom: 1rem;
}

.oe-hook-block__title {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.oe-hook-block__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.oe-sales-hook__cta {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════ */
.oe-process {
    background: var(--black-3);
    padding-block: var(--space-xl);
}

.oe-process__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    counter-reset: none;
}

.oe-process__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.oe-process__step-num {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.75rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.oe-process__step-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.06em;
}

.oe-process__step-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.oe-process__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    margin-top: 2rem;
    flex-shrink: 0;
    position: relative;
}

.oe-process__connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--gold);
}

/* ════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════ */
.oe-reviews {
    background: var(--black-2);
    padding-block: var(--space-xl);
}

.oe-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.oe-review-card {
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all var(--dur-med) ease;
}

.oe-review-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.oe-review-card__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.05em; }

.oe-review-card__quote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.75;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 0;
    flex: 1;
}

.oe-review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.oe-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dark);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.oe-review-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.oe-review-card__info strong { font-size: 0.95rem; color: var(--text-primary); }
.oe-review-card__info span  { font-size: 0.78rem; color: var(--text-muted); }

.oe-reviews__summary {
    margin-top: 3.5rem;
    text-align: center;
}

.oe-reviews__rating {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: var(--black-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.oe-reviews__rating-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.oe-reviews__rating-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.oe-reviews__stars { color: var(--gold); font-size: 1.2rem; }
.oe-reviews__rating-detail span:last-child { font-size: 0.82rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.oe-faq {
    background: var(--black);
    padding-block: var(--space-xl);
}

.oe-faq__list {
    max-width: 820px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.oe-faq__item {
    border-bottom: 1px solid var(--border-subtle);
}

.oe-faq__item:first-child { border-top: 1px solid var(--border-subtle); }

.oe-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    transition: color var(--dur-fast) ease;
}

.oe-faq__question:hover { color: var(--gold); }
.oe-faq__question[aria-expanded="true"] { color: var(--gold); }

.oe-faq__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--dur-med) var(--ease-out);
    line-height: 1;
}

.oe-faq__question[aria-expanded="true"] .oe-faq__icon { transform: rotate(45deg); }

.oe-faq__answer {
    overflow: hidden;
    padding-bottom: 1.5rem;
}

.oe-faq__answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.975rem;
}

.oe-faq__answer a { color: var(--gold); }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.oe-contact {
    background: var(--black-3);
    padding-block: var(--space-xl);
}

.oe-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Lead Form */
.oe-contact__form-wrap {
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.oe-contact__form-title {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.75rem;
}

.oe-form__row { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.oe-form__row--2 > * { flex: 1; }

.oe-form__group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.oe-form__group:last-child { margin-bottom: 0; }

.oe-form__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.required { color: var(--gold); }

.oe-form__input,
.oe-form__select,
.oe-form__textarea {
    width: 100%;
    background: var(--black-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1.125rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--dur-fast) ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.oe-form__input:focus,
.oe-form__select:focus,
.oe-form__textarea:focus {
    border-color: var(--gold);
    background: var(--black-3);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.oe-form__input::placeholder,
.oe-form__textarea::placeholder { color: var(--text-muted); }

.oe-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.oe-form__select option { background: var(--black-4); }

.oe-form__textarea { resize: vertical; min-height: 130px; }

.oe-form__response {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-height: 1.5rem;
}

.oe-form__response.success { color: #4ade80; }
.oe-form__response.error   { color: #f87171; }

/* Contact Info Panel */
.oe-contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.oe-contact__info-block h3 {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.875rem;
    color: var(--gold);
}

.oe-contact__info-block address { line-height: 1.8; color: var(--text-secondary); font-size: 0.975rem; }
.oe-contact__info-block p { color: var(--text-secondary); margin-bottom: 0.5rem; }

.oe-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: color var(--dur-fast) ease;
}

.oe-contact__link:hover { color: var(--gold); }

.oe-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.oe-hours-table td {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.oe-hours-table td:last-child { text-align: right; color: var(--text-primary); }

.oe-contact__quick-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.oe-contact__map-placeholder {
    margin-top: 1rem;
    height: 300px;
    background: var(--black-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.oe-map-static {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-3) 0%, var(--black-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.oe-map-static::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--gold-glow) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* ════════════════════════════════════════════════
   CTA STRIP (before footer)
════════════════════════════════════════════════ */
.oe-cta-strip {
    background: var(--black-4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-block: 3.5rem;
}

.oe-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.oe-cta-strip__heading {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.oe-cta-strip__sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0;
}

.oe-cta-strip__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.oe-footer { background: var(--black-2); }

.oe-footer__top {
    padding-block: 5rem 4rem;
    border-bottom: 1px solid var(--border-subtle);
}

.oe-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.oe-footer__logo img { 
    height: 48px; 
    width: auto; 
    margin-bottom: 1rem; 
    background: transparent !important;
    mix-blend-mode: screen;
}

.oe-footer__tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.oe-footer__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.oe-cert-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gold);
    padding: 0.25rem 0.625rem;
    border: 1px solid var(--gold-dark);
    border-radius: var(--radius-sm);
    background: var(--gold-glow);
}

.oe-footer__social {
    display: flex;
    gap: 0.75rem;
}

.oe-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--black-5);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: all var(--dur-med) ease;
}

.oe-social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-glow);
}

.oe-footer__col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.oe-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }

.oe-footer__links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--dur-fast) ease;
}

.oe-footer__links a:hover {
    color: var(--text-primary);
    padding-left: 0.375rem;
}

.oe-footer__address { display: flex; flex-direction: column; gap: 1rem; }

.oe-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.oe-footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.oe-footer__contact-item a {
    color: var(--text-muted);
    transition: color var(--dur-fast) ease;
}

.oe-footer__contact-item a:hover { color: var(--gold); }
.oe-footer__contact-item em { color: var(--gold); font-style: normal; font-size: 0.82rem; }

.oe-footer__hours {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}

.oe-footer__hours strong { color: var(--text-primary); }

/* Footer Bottom */
.oe-footer__bottom {
    padding-block: 1.5rem;
    background: var(--black);
}

.oe-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.oe-footer__copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.oe-footer__legal-nav {
    display: flex;
    gap: 1.5rem;
}

.oe-footer__legal-nav a {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: color var(--dur-fast) ease;
}

.oe-footer__legal-nav a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   COMING SOON TAG (Fixed)
════════════════════════════════════════════════ */
.oe-coming-soon {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 120px;
    height: 120px;
    background: var(--black-4);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
    gap: 0.375rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1);
    cursor: default;
}

.oe-coming-soon__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    line-height: 1.2;
    text-transform: uppercase;
}

.oe-coming-soon__vehicle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    line-height: 1.3;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity var(--dur-med) ease, transform var(--dur-med) var(--ease-out);
}

.oe-coming-soon__vehicle.fade-out {
    opacity: 0;
    transform: translateY(-6px);
}

.oe-coming-soon__vehicle.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════
   PAGE TEMPLATES
════════════════════════════════════════════════ */
/* Page Hero */
.oe-page-hero {
    background: var(--black-3);
    border-bottom: 1px solid var(--border-subtle);
    padding-block: 3rem 2.5rem;
}

@media (max-width: 768px) {
    .oe-page-hero {
        padding-block: 2rem 1.5rem;
    }
}

.oe-page-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-top: 0.75rem;
}

.oe-breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.oe-breadcrumb a { color: var(--gold); }

/* Page content */
.oe-main--page { background: var(--black); }

.oe-page-content-wrap { padding-block: 4rem; }

.oe-page-article { line-height: 1.8; }

.oe-page-article__featured { margin-bottom: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; }

.oe-page-article__img { width: 100%; object-fit: cover; }

.oe-page-article__body h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.oe-page-article__body h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 1.5rem 0 0.75rem;
}

.oe-page-article__body p { color: var(--text-secondary); font-size: 1.025rem; margin-bottom: 1.25rem; }

.oe-page-article__body a { color: var(--gold); }

.oe-page-article__body ul,
.oe-page-article__body ol {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.oe-page-article__body li { margin-bottom: 0.5rem; }

.oe-page-cta-strip {
    background: var(--black-4);
    border-top: 1px solid var(--border);
    padding-block: 2.5rem;
}

.oe-page-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.oe-page-cta-strip__inner p { margin: 0; font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.05em; }

.oe-page-cta-strip__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   BLOG / INDEX
════════════════════════════════════════════════ */
.oe-main--blog { background: var(--black); padding-block: 3rem; }

.oe-page-header { margin-bottom: 3rem; }
.oe-page-header__title { font-size: clamp(1.8rem, 3vw, 3rem); }

.oe-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.oe-post-card {
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--dur-med) ease;
}

.oe-post-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.oe-post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.oe-post-card__body { padding: 1.5rem; }

.oe-post-card__meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.oe-post-card__title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.oe-post-card__title a { color: var(--text-primary); }
.oe-post-card__title a:hover { color: var(--gold); }

.oe-post-card__excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.25rem; }

.oe-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
}

.oe-no-results h2 { font-size: 2rem; margin-bottom: 1rem; }
.oe-no-results p  { color: var(--text-secondary); margin-bottom: 2rem; }

.oe-pagination { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 2rem; }
.oe-pagination .nav-links { display: flex; gap: 0.5rem; align-items: center; }
.oe-pagination .page-numbers {
    padding: 0.5rem 0.875rem;
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all var(--dur-fast) ease;
}
.oe-pagination .page-numbers.current,
.oe-pagination .page-numbers:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ════════════════════════════════════════════════
   RESPONSIVE — LARGE TABLET / SMALL DESKTOP (1200px)
════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    :root { --container: 960px; }
    .oe-hero__heading { font-size: clamp(3rem, 7vw, 5.5rem); }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .oe-header__nav,
    .oe-header__actions { display: none; }

    .oe-hamburger { display: flex; }

    .oe-topbar__text { font-size: 0.72rem; }

    .oe-certification__inner { grid-template-columns: 1fr; gap: 4rem; }
    .oe-certification__text { text-align: center; }
    .oe-certification__text .oe-section-heading { text-align: center; }

    .oe-sales-hook__grid--3col { grid-template-columns: repeat(2, 1fr); }

    .oe-footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .oe-footer__col--brand { grid-column: 1 / -1; text-align: center; }
    .oe-footer__logo { justify-content: center; }
    .oe-footer__certs { justify-content: center; }
    .oe-footer__social { justify-content: center; }

    .oe-process__steps { flex-direction: column; align-items: center; gap: 3rem; }
    .oe-process__step { flex: 0 0 auto; max-width: 400px; padding: 0; }
    .oe-process__connector { display: none; }

    .oe-categories__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .oe-cat-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin-inline: auto; }

    .oe-contact__grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .oe-contact__info { text-align: center; }
    .oe-contact__link { justify-content: center; }
    .oe-hours-table { max-width: 400px; margin-inline: auto; }

    .oe-cta-strip__inner { flex-direction: column; text-align: center; gap: 2.5rem; }
    .oe-cta-strip__sub { margin-inline: auto; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --topbar-h: 36px;
        --header-h: 140px;
        --space-xl: 4.5rem;
    }

    .oe-container { padding-inline: 1.5rem; }

    .oe-header__logo { gap: 0.5rem; }
    .oe-header__container { padding-inline: 1rem; }

    .oe-topbar__text { display: none; }
    .oe-topbar__inner { justify-content: center; }
    .oe-topbar__btn { font-size: 0.7rem; }

    .oe-hero .oe-container { padding-block: 5rem; }
    .oe-hero__heading { font-size: clamp(2.8rem, 10vw, 4.5rem); margin-bottom: 1.5rem; }
    .oe-hero__sub { font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }

    .oe-hero__ctas { flex-direction: column; gap: 0.75rem; width: 100%; max-width: 320px; }
    .oe-hero__ctas .oe-btn { width: 100%; justify-content: center; }

    .oe-hero__trust { gap: 1.5rem; justify-content: center; }
    .oe-trust-divider { display: none; }
    .oe-trust-item { align-items: center; }

    .oe-categories__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .oe-cat-card:nth-child(3) { grid-column: auto; max-width: 100%; }

    .oe-sales-hook__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .oe-sales-hook__grid--3col { grid-template-columns: 1fr; gap: 1.5rem; }
    .oe-hook-block { padding: 1.75rem; }

    .oe-reviews__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .oe-review-card { padding: 1.5rem; }

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

    .oe-footer__grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .oe-footer__links { align-items: center; }
    .oe-footer__contact-item { justify-content: center; }

    .oe-footer__bottom-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
    .oe-footer__legal-nav { justify-content: center; gap: 1rem; }

    .oe-form__row { flex-direction: column; gap: 0; }
    .oe-form__group { margin-bottom: 1rem; }

    .oe-coming-soon { width: 100px; height: 100px; bottom: 1.5rem; left: 1.5rem; }
    .oe-coming-soon__label { font-size: 0.7rem; }
    .oe-coming-soon__vehicle { font-size: 0.65rem; }

    .oe-cert-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .oe-cert-stat:last-child { grid-column: 1 / -1; }
    .oe-cert-stat { padding: 1rem; }

    .oe-reviews__rating { flex-direction: column; gap: 1rem; padding: 1.5rem; width: 100%; }
    .oe-reviews__rating-detail { text-align: center; }

    .oe-page-cta-strip__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .oe-page-cta-strip__btns { justify-content: center; width: 100%; }
    .oe-page-cta-strip__btns .oe-btn { width: 100%; justify-content: center; }

    .oe-section-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
    .oe-section-header { margin-bottom: 3rem; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .oe-container { padding-inline: 1.25rem; }

    .oe-hero .oe-container { padding-block: 4rem; }
    .oe-hero__heading { font-size: 2.5rem; }

    .oe-cert-stats { grid-template-columns: 1fr; }
    .oe-cert-stat:last-child { grid-column: auto; }

    .oe-cta-strip__actions { flex-direction: column; width: 100%; gap: 0.75rem; }
    .oe-cta-strip__actions .oe-btn { width: 100%; justify-content: center; }

    .oe-coming-soon { bottom: 1rem; left: 1rem; width: 90px; height: 90px; padding: 0.5rem; }

    .oe-header__logo-name { font-size: 1.15rem; }

    .oe-mobile-nav__inner { padding: 1.5rem; }
    .oe-mobile-nav__label { font-size: 0.8rem; }

    .oe-footer__top { padding-block: 4rem 3rem; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL MOBILE (360px)
════════════════════════════════════════════════ */
@media (max-width: 360px) {
    .oe-hero__heading { font-size: 2.2rem; }
    .oe-hero__trust { gap: 1rem; }
    .oe-trust-item strong { font-size: 1.5rem; }

    .oe-section-heading { font-size: 1.8rem; }

    .oe-badge { font-size: 0.65rem; padding: 0.4rem 0.875rem; }

    .oe-header__logo-name { font-size: 1.05rem; }
}

/* ════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
    .oe-animate {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
    }

    .oe-animate.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .oe-animate--delay-1 { transition-delay: 100ms; }
    .oe-animate--delay-2 { transition-delay: 200ms; }
    .oe-animate--delay-3 { transition-delay: 300ms; }
    .oe-animate--delay-4 { transition-delay: 400ms; }
}

/* ════════════════════════════════════════════════
   WP CORE CLASSES
════════════════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }
.aligncenter { margin-inline: auto; display: block; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.alignleft  { float: left;  margin-right: 1.5rem; margin-bottom: 1rem; }
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ════════════════════════════════════════════════
   PRINT
════════════════════════════════════════════════ */
@media print {
    .oe-topbar, .oe-header, .oe-coming-soon,
    .oe-hero__scroll, .oe-hero__ctas,
    .oe-cta-strip, .oe-footer { display: none; }

    body { background: white; color: black; }

    .oe-section-heading,
    .oe-hero__heading { color: black; }
}

/* ════════════════════════════════════════════════
   CERTIFICATION PROCESS PAGE STYLES
════════════════════════════════════════════════ */
.cert-hero {
    padding-block: calc(var(--space-xl) * 2);
    background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.88)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.cert-hero__tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.5rem;
}

.cert-hero__title {
    font-size: clamp(3rem, 10vw, 5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.cert-hero__lead {
    max-width: 850px;
    margin-inline: auto;
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cert-section {
    padding-block: var(--space-xl);
}

.cert-section--alt {
    background: var(--black-2);
}

.cert-section--dark {
    background: var(--black-3);
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.cert-org-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.cert-org-card {
    background: var(--black-1);
    border: 1px solid var(--gray-800);
    padding: 3rem;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cert-org-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.cert-org-card__icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
    opacity: 0.8;
}

.cert-org-card__title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.cert-org-card__text {
    color: var(--text-muted);
    line-height: 1.7;
}

.protocol-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--gray-800);
}

.protocol-table th, .protocol-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-800);
}

.protocol-table th {
    background: var(--black-3);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.protocol-table tr:hover td {
    background: rgba(212, 175, 55, 0.05);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    padding: 2rem;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,0.03);
}

.region-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.payment-breakdown {
    max-width: 800px;
    margin: 4rem auto 0;
    background: var(--black-1);
    border: 1px solid var(--gold);
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.payment-breakdown__header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-breakdown__percentage {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.payment-breakdown__list {
    list-style: none;
    padding: 0;
}

.payment-breakdown__item {
    display: flex;
    justify-content: space-between;
    padding-block: 1.25rem;
    border-bottom: 1px solid var(--gray-800);
}

.payment-breakdown__item:last-child {
    border-bottom: none;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.glossary-item dt {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.glossary-item dd {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .cert-grid, .region-grid {
        grid-template-columns: 1fr;
    }
    .glossary-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════
   EXPORT PROCESS PAGE
════════════════════════════════════════════════ */
.oe-export-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
    position: relative;
}

.oe-export-step {
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    align-items: center;
    transition: all var(--dur-med) ease;
}

.oe-export-step:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.oe-export-step__icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--black-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
}

.oe-export-step__num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.oe-export-step__icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
}

.oe-export-step__content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.oe-export-step__content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.oe-export-step__tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--black-2);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--gold);
}

.oe-export-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: var(--gold);
    opacity: 0.5;
}

.oe-export-arrow svg {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .oe-export-step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    .oe-export-step__icon-wrap {
        margin-inline: auto;
    }
}

/* ════════════════════════════════════════════════
   BLOG PAGE
════════════════════════════════════════════════ */
.oe-blog-page { background: var(--black); }

.oe-blog-featured { padding-block: var(--space-xl); background: var(--black-2); }
.oe-featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: var(--black-4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    align-items: center;
}
.oe-featured-post__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.oe-featured-post__content { padding: 3rem; }
.oe-featured-post__title { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.oe-featured-post__excerpt { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; }
.oe-featured-post__meta { display: flex; gap: 1rem; color: var(--gold); font-size: 0.9rem; font-weight: 600; }

.oe-blog-grid-section { padding-block: var(--space-xl); }
.oe-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.oe-blog-long-form { padding-block: var(--space-xl); background: var(--black-2); border-top: 1px solid var(--border-subtle); }
.oe-blog-content-wrap { max-width: 800px; margin-inline: auto; }
.oe-blog-section-title { font-size: 2rem; margin-bottom: 2rem; color: var(--gold); text-align: center; }
.oe-blog-content-wrap h3 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text-primary); }
.oe-blog-content-wrap p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }

@media (max-width: 1024px) {
    .oe-featured-post { grid-template-columns: 1fr; }
    .oe-featured-post__content { padding: 2rem; }
    .oe-featured-post__title { font-size: 2rem; }
    .oe-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .oe-blog-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   RESERVE PAGE
───────────────────────────────────────── */
.oe-reserve__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: flex-start;
}

.oe-reserve__intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
}

.oe-reserve-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.oe-reserve-step {
    display: flex;
    gap: 2rem;
}

.oe-reserve-step__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
    width: 60px;
}

.oe-reserve-step__text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.oe-reserve-step__text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.oe-reserve-cta-box {
    background: var(--black-3);
    border: 1px solid var(--gold);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.oe-reserve-cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.oe-reserve-cta-box p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.oe-reserve__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.oe-reserve-card {
    background: var(--black-2);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.oe-reserve-card--dark {
    background: var(--black-4);
}

.oe-reserve-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.oe-reserve-terms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.oe-reserve-terms li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.oe-reserve-terms strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.oe-faq__question-simple {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.oe-faq__answer-simple {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 1024px) {
    .oe-reserve__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .oe-reserve__sidebar {
        position: static;
        order: 2;
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
    }
    .oe-reserve__content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .oe-reserve__intro {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .oe-reserve-steps {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .oe-reserve-step {
        gap: 1rem;
        flex-direction: column;
    }

    .oe-reserve-step__num {
        font-size: 2rem;
        width: auto;
        opacity: 0.6;
        border-bottom: 2px solid var(--gold);
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .oe-reserve-step__text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .oe-reserve-cta-box {
        padding: 2rem 1.5rem;
    }

    .oe-reserve-cta-box h3 {
        font-size: 1.5rem;
    }

    .oe-reserve-card {
        padding: 1.5rem;
    }

    .oe-faq__question-simple {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .oe-faq__answer-simple {
        font-size: 0.95rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .oe-reserve-step__num {
        font-size: 1.75rem;
    }
    
    .oe-reserve-step__text h3 {
        font-size: 1.15rem;
    }

    .oe-reserve-terms li {
        font-size: 0.85rem;
    }

    .oe-reserve-cta-box h3 {
        font-size: 1.3rem;
    }

    .oe-reserve-card h3 {
        font-size: 1.1rem;
    }
}
