/* ============================================================
   OPML — One Page Modern Layout
   Namespace: opml-
   Version: 1.0
   Description: General-purpose modern single-page tenant CSS.
                Works for any service business: car wash, lawn 
                care, barbershop, food truck, roofing, etc.
                Content/images drive the personality — layout stays consistent.
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
    /* Core Palette */
    --opml-black:        #0c0c0e;
    --opml-dark:         #111114;
    --opml-dark-2:       #18181c;
    --opml-dark-3:       #222228;
    --opml-mid:          #2e2e36;
    --opml-border:       rgba(255,255,255,0.07);
    --opml-white:        #ffffff;
    --opml-off-white:    #f0efe9;
    --opml-muted:        rgba(255,255,255,0.45);
    --opml-muted-dark:   rgba(255,255,255,0.18);

    /* Accent — change this one value to rebrand any tenant */
    --opml-accent:       #e8c547;        /* warm gold — energetic & premium */
    --opml-accent-dim:   rgba(232,197,71,0.12);
    --opml-accent-hover: #f0d060;

    /* Typography */
    --opml-font-display: 'Syne', sans-serif;
    --opml-font-body:    'DM Sans', sans-serif;

    /* Spacing scale */
    --opml-space-xs:  8px;
    --opml-space-sm:  16px;
    --opml-space-md:  32px;
    --opml-space-lg:  64px;
    --opml-space-xl:  96px;
    --opml-space-2xl: 128px;

    /* Radius */
    --opml-radius-sm:  6px;
    --opml-radius-md:  12px;
    --opml-radius-lg:  20px;
    --opml-radius-xl:  32px;
    --opml-radius-full: 999px;

    /* Shadows */
    --opml-shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
    --opml-shadow-md:  0 8px 32px rgba(0,0,0,0.5);
    --opml-shadow-lg:  0 20px 60px rgba(0,0,0,0.7);
    --opml-shadow-accent: 0 8px 32px rgba(232,197,71,0.25);

    /* Transitions */
    --opml-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --opml-transition: 0.3s var(--opml-ease);
}

/* ── Reset & Base ─────────────────────────────────────────── */
.opml-root,
.opml-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.opml-root {
    font-family: var(--opml-font-body);
    background: var(--opml-dark);
    color: var(--opml-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.opml-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.opml-section {
    padding: var(--opml-space-xl) 0;
    position: relative;
}

.opml-section-label {
    font-family: var(--opml-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--opml-accent);
    margin-bottom: 14px;
    display: block;
}

.opml-section-title {
    font-family: var(--opml-font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--opml-white);
}

.opml-section-body {
    font-size: 1.05rem;
    color: var(--opml-muted);
    line-height: 1.75;
    max-width: 560px;
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.opml-divider {
    width: 48px;
    height: 3px;
    background: var(--opml-accent);
    border-radius: var(--opml-radius-full);
    margin: 20px 0;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  1. NAVIGATION                                           ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--opml-transition), backdrop-filter var(--opml-transition), box-shadow var(--opml-transition);
}

.opml-nav.opml-nav--scrolled {
    background: rgba(12, 12, 14, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--opml-border);
}

/* Pages without a hero (About, Owners, Testimonials, etc.)
   The nav must be solid from the top so links are visible
   against the page background. Add .opml-nav--no-hero in blade
   OR the JS sets --scrolled immediately on short/non-hero pages. */
.opml-nav--no-hero {
    background: rgba(12, 12, 14, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 1px 0 var(--opml-border) !important;
}

.opml-nav__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.opml-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.opml-nav__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.opml-nav__logo-text {
    font-family: var(--opml-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--opml-white);
    letter-spacing: -0.02em;
}

.opml-nav__logo-text span {
    color: var(--opml-accent);
}

/* Links */
.opml-nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.opml-nav__link {
    font-family: var(--opml-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--opml-radius-sm);
    transition: color var(--opml-transition), background var(--opml-transition);
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.4;
}

.opml-nav__link:hover {
    color: var(--opml-white);
    background: rgba(255,255,255,0.07);
}

.opml-nav__link--cta {
    background: var(--opml-accent);
    color: var(--opml-black);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--opml-radius-full);
}

.opml-nav__link--cta:hover {
    background: var(--opml-accent-hover);
    color: var(--opml-black);
}

.opml-nav__link--logout {
    color: rgba(255,255,255,0.5);
}

.opml-nav__user-label {
    font-size: 0.8rem;
    color: var(--opml-muted);
    white-space: nowrap;
}

.opml-nav__user-label a {
    color: var(--opml-accent);
    text-decoration: none;
    font-weight: 600;
}

/* Hamburger */
.opml-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--opml-radius-sm);
}

.opml-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--opml-white);
    border-radius: 2px;
    transition: transform var(--opml-transition), opacity var(--opml-transition);
    transform-origin: center;
}

.opml-nav__hamburger.opml-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.opml-nav__hamburger.opml-active span:nth-child(2) { opacity: 0; }
.opml-nav__hamburger.opml-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.opml-nav__drawer {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12,12,14,0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--opml-border);
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform var(--opml-transition), opacity var(--opml-transition);
    pointer-events: none;
}

.opml-nav__drawer.opml-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.opml-nav__drawer .opml-nav__link {
    padding: 12px 16px;
    border-radius: var(--opml-radius-md);
    font-size: 1rem;
}

.opml-nav__drawer .opml-nav__link--cta {
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 900px) {
    .opml-nav__links { display: none; }
    .opml-nav__hamburger { display: flex; }
    .opml-nav__drawer { display: flex; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  2. HERO SLIDER                                          ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--opml-black);
}

/* Slides */
.opml-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s var(--opml-ease);
}

.opml-hero__slide.opml-active {
    opacity: 1;
    z-index: 1;
}

.opml-hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 7s linear;
}

.opml-hero__slide.opml-active .opml-hero__slide-img {
    transform: scale(1);
}

/* Gradient overlay — two layers for depth */
.opml-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(12,12,14,0.95) 0%, rgba(12,12,14,0.35) 50%, rgba(12,12,14,0.2) 100%),
        linear-gradient(to right, rgba(12,12,14,0.6) 0%, transparent 60%);
    z-index: 2;
}

/* Content */
.opml-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 0 80px 0;
}

.opml-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.opml-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--opml-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--opml-accent);
    margin-bottom: 20px;
}

.opml-hero__tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--opml-accent);
    border-radius: 2px;
}

.opml-hero__title {
    font-family: var(--opml-font-display);
    font-size: clamp(1.9rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--opml-white);
    margin-bottom: 20px;
    max-width: 700px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.opml-hero__sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.opml-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Fallback — no banners */
.opml-hero__fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--opml-black) 0%, #1a1a2e 55%, #16213e 100%);
    position: relative;
}

/* Arrows */
.opml-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--opml-white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--opml-transition), transform var(--opml-transition);
    backdrop-filter: blur(8px);
}

.opml-hero__arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.08);
}

.opml-hero__arrow--prev { left: 24px; }
.opml-hero__arrow--next { right: 24px; }

/* Progress bar */
.opml-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 4px;
    padding: 0 24px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.opml-hero__bar {
    height: 2px;
    flex: 1;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.opml-hero__bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--opml-accent);
    width: 0;
    transition: width 0.3s;
}

.opml-hero__bar.opml-active::after {
    width: 100%;
    transition: width 7s linear;
}

@media (max-width: 600px) {
    .opml-hero { height: 90vh; min-height: 500px; }
    .opml-hero__content { padding-bottom: 60px; }
    .opml-hero__arrow { width: 38px; height: 38px; }
    .opml-hero__arrow--prev { left: 12px; }
    .opml-hero__arrow--next { right: 12px; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  3. BUTTONS                                              ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--opml-radius-full);
    font-family: var(--opml-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--opml-transition);
    white-space: nowrap;
    line-height: 1;
}

.opml-btn--primary {
    background: var(--opml-accent);
    color: var(--opml-black);
    box-shadow: var(--opml-shadow-accent);
}

.opml-btn--primary:hover {
    background: var(--opml-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232,197,71,0.4);
    color: var(--opml-black);
    text-decoration: none;
}

.opml-btn--ghost {
    background: transparent;
    color: var(--opml-white);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.opml-btn--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
    color: var(--opml-white);
    text-decoration: none;
}

.opml-btn--dark {
    background: var(--opml-dark-3);
    color: var(--opml-white);
    border: 1px solid var(--opml-border);
}

.opml-btn--dark:hover {
    background: var(--opml-mid);
    transform: translateY(-2px);
    color: var(--opml-white);
    text-decoration: none;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  4. CONTENT SECTIONS (Section 1 & 2)                    ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-content-section {
    background: var(--opml-dark);
    overflow: hidden;
}

.opml-content-section--alt {
    background: var(--opml-dark-2);
}

.opml-content-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.opml-content-section__grid--reverse {
    direction: rtl;
}

.opml-content-section__grid--reverse > * {
    direction: ltr;
}

.opml-content-section__text {
    max-width: 520px;
}

.opml-content-section__img-wrap {
    position: relative;
    border-radius: var(--opml-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.opml-content-section__img-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--opml-accent) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.4;
}

.opml-content-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--opml-radius-xl);
    transition: transform 0.6s var(--opml-ease);
}

.opml-content-section__img-wrap:hover .opml-content-section__img {
    transform: scale(1.04);
}

.opml-content-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .opml-content-section__grid,
    .opml-content-section__grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 36px;
    }
    .opml-content-section__text { max-width: 100%; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  5. PROMOTIONS / FEATURES CARDS                         ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-promos {
    background: var(--opml-dark);
    overflow: hidden;
}

.opml-promos__header {
    text-align: center;
    margin-bottom: 52px;
}

.opml-promos__header .opml-section-body {
    margin: 0 auto;
    text-align: center;
}

.opml-promos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.opml-promo-card {
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-lg);
    overflow: hidden;
    transition: transform var(--opml-transition), box-shadow var(--opml-transition), border-color var(--opml-transition);
    cursor: default;
}

.opml-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--opml-shadow-md);
    border-color: rgba(232,197,71,0.2);
}

.opml-promo-card__img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.opml-promo-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--opml-ease);
}

.opml-promo-card:hover .opml-promo-card__img {
    transform: scale(1.05);
}

.opml-promo-card__body {
    padding: 20px 22px 24px;
}

.opml-promo-card__badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--opml-accent-dim);
    color: var(--opml-accent);
    font-family: var(--opml-font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--opml-radius-full);
    margin-bottom: 10px;
}

.opml-promo-card__title {
    font-family: var(--opml-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--opml-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.opml-promo-card__desc {
    font-size: 0.88rem;
    color: var(--opml-muted);
    line-height: 1.65;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  6. CONTACT / MESSAGE FORM SECTION                      ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-contact {
    background: var(--opml-dark-2);
    position: relative;
    overflow: hidden;
}

.opml-contact::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--opml-accent-dim) 0%, transparent 70%);
    pointer-events: none;
}

.opml-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.opml-contact__info {
    padding-top: 8px;
}

.opml-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.opml-contact__info-icon {
    width: 44px;
    height: 44px;
    background: var(--opml-accent-dim);
    border: 1px solid rgba(232,197,71,0.2);
    border-radius: var(--opml-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.opml-contact__info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--opml-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.opml-contact__info-value {
    font-size: 0.95rem;
    color: var(--opml-muted);
}

/* Form */
.opml-form {
    background: var(--opml-dark-3);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-xl);
    padding: 36px 40px;
}

.opml-form__title {
    font-family: var(--opml-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--opml-white);
}

.opml-form__group {
    margin-bottom: 18px;
}

.opml-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}

.opml-form__input,
.opml-form__textarea {
    width: 100%;
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-md);
    color: var(--opml-white);
    font-family: var(--opml-font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--opml-transition), box-shadow var(--opml-transition);
}

.opml-form__input:focus,
.opml-form__textarea:focus {
    border-color: var(--opml-accent);
    box-shadow: 0 0 0 3px var(--opml-accent-dim);
}

.opml-form__input::placeholder,
.opml-form__textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.opml-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.opml-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.opml-form__submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px;
}

/* Success / error flash */
.opml-flash {
    padding: 14px 18px;
    border-radius: var(--opml-radius-md);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opml-flash--success {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.3);
    color: #4ade80;
}

.opml-flash--error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
}

@media (max-width: 768px) {
    .opml-contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .opml-form { padding: 28px 22px; }
    .opml-form__grid { grid-template-columns: 1fr; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  7. FOOTER                                               ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-footer {
    background: var(--opml-black);
    border-top: 1px solid var(--opml-border);
    padding: 64px 0 32px;
}

.opml-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.opml-footer__brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.opml-footer__brand-name {
    font-family: var(--opml-font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--opml-white);
    margin-bottom: 14px;
}

.opml-footer__brand-desc {
    font-size: 0.88rem;
    color: var(--opml-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 280px;
}

.opml-footer__col-title {
    font-family: var(--opml-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--opml-accent);
    margin-bottom: 18px;
}

.opml-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opml-footer__link {
    font-size: 0.88rem;
    color: var(--opml-muted);
    text-decoration: none;
    transition: color var(--opml-transition);
}

.opml-footer__link:hover { color: var(--opml-white); }

/* Social icons */
.opml-footer__social {
    display: flex;
    gap: 10px;
}

.opml-footer__social-btn {
    width: 38px;
    height: 38px;
    background: var(--opml-dark-3);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--opml-muted);
    text-decoration: none;
    transition: background var(--opml-transition), color var(--opml-transition), border-color var(--opml-transition), transform var(--opml-transition);
}

.opml-footer__social-btn:hover {
    background: var(--opml-accent-dim);
    border-color: var(--opml-accent);
    color: var(--opml-accent);
    transform: translateY(-2px);
}

/* Bottom bar */
.opml-footer__bottom {
    border-top: 1px solid var(--opml-border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.opml-footer__copy {
    font-size: 0.82rem;
    color: var(--opml-muted-dark);
}

.opml-footer__powered {
    font-size: 0.78rem;
    color: var(--opml-muted-dark);
}

.opml-footer__powered a {
    color: var(--opml-accent);
    text-decoration: none;
}

@media (max-width: 900px) {
    .opml-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
    .opml-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .opml-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  8. PAGE SCROLL INDICATOR                               ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-scroll-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--opml-accent), var(--opml-accent-hover));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  9. SCROLL REVEAL ANIMATION                             ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--opml-ease), transform 0.65s var(--opml-ease);
}

.opml-reveal.opml-revealed {
    opacity: 1;
    transform: translateY(0);
}

.opml-reveal--delay-1 { transition-delay: 0.1s; }
.opml-reveal--delay-2 { transition-delay: 0.2s; }
.opml-reveal--delay-3 { transition-delay: 0.3s; }
.opml-reveal--delay-4 { transition-delay: 0.4s; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  10. ABOUT US PAGE                                      ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-about {
    background: var(--opml-dark);
    min-height: 60vh;
    padding: var(--opml-space-xl) 0;
}

.opml-about__entries {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.opml-about__entry {
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-left: 3px solid var(--opml-accent);
    border-radius: var(--opml-radius-md);
    padding: 28px 32px;
}

.opml-about__entry-heading {
    font-family: var(--opml-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--opml-white);
    margin-bottom: 12px;
}

.opml-about__entry-body {
    font-size: 0.96rem;
    color: var(--opml-muted);
    line-height: 1.75;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  11. OWNERS PAGE                                        ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-owners {
    background: var(--opml-dark);
    min-height: 60vh;
    padding: var(--opml-space-xl) 0;
}

.opml-owners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.opml-owner-card {
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-xl);
    overflow: hidden;
    text-align: center;
    padding-bottom: 28px;
    transition: transform var(--opml-transition), box-shadow var(--opml-transition);
}

.opml-owner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--opml-shadow-md);
}

.opml-owner-card__img-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--opml-dark-3);
}

.opml-owner-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opml-owner-card__body {
    padding: 20px 20px 0;
}

.opml-owner-card__name {
    font-family: var(--opml-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--opml-white);
    margin-bottom: 4px;
}

.opml-owner-card__title {
    font-size: 0.82rem;
    color: var(--opml-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.opml-owner-card__desc {
    font-size: 0.88rem;
    color: var(--opml-muted);
    line-height: 1.65;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  12. TESTIMONIALS PAGE                                  ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-testimonials {
    background: var(--opml-dark);
    min-height: 60vh;
    padding: var(--opml-space-xl) 0;
}

.opml-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.opml-testimonial-card {
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-lg);
    padding: 28px;
    transition: transform var(--opml-transition);
}

.opml-testimonial-card:hover { transform: translateY(-4px); }

.opml-testimonial-card__quote {
    font-size: 2.5rem;
    color: var(--opml-accent);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.5;
}

.opml-testimonial-card__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.opml-testimonial-card__author {
    font-family: var(--opml-font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--opml-white);
}

.opml-testimonial-card__img {
    width: 100%;
    border-radius: var(--opml-radius-md);
    margin-top: 14px;
    max-height: 180px;
    object-fit: cover;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  13. PREVIOUS WORK PAGE                                 ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-works {
    background: var(--opml-dark);
    min-height: 60vh;
    padding: var(--opml-space-xl) 0;
}

.opml-works__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.opml-work-card {
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-lg);
    overflow: hidden;
    transition: transform var(--opml-transition), box-shadow var(--opml-transition);
}

.opml-work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--opml-shadow-md);
}

.opml-work-card__img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--opml-dark-3);
}

.opml-work-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--opml-ease);
}

.opml-work-card:hover .opml-work-card__img { transform: scale(1.06); }

.opml-work-card__body {
    padding: 20px 22px;
}

.opml-work-card__title {
    font-family: var(--opml-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--opml-white);
    margin-bottom: 8px;
}

.opml-work-card__desc {
    font-size: 0.875rem;
    color: var(--opml-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  14. PAGE HERO (inner pages — About, Owners etc)        ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-page-hero {
    background: var(--opml-black);
    padding: 120px 0 56px;
    border-bottom: 1px solid var(--opml-border);
    position: relative;
    overflow: hidden;
}

.opml-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, var(--opml-accent-dim) 0%, transparent 65%);
    pointer-events: none;
}

.opml-page-hero__title {
    font-family: var(--opml-font-display);
    /*font-size: clamp(2rem, 5vw, 3.5rem);*/
    font-size: clamp(1.9rem, 4.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--opml-white);
    position: relative;
    z-index: 1;
}

.opml-page-hero__sub {
    font-size: 1rem;
    color: var(--opml-muted);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  15. INACTIVE / ERROR STATE                             ║
   ╚══════════════════════════════════════════════════════════╝ */

.opml-error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--opml-black);
    padding: 40px 24px;
}

.opml-error-card {
    background: var(--opml-dark-2);
    border: 1px solid var(--opml-border);
    border-radius: var(--opml-radius-xl);
    padding: 52px 48px;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.opml-error-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.opml-error-card__title {
    font-family: var(--opml-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #f87171;
    margin-bottom: 16px;
    line-height: 1.3;
}

.opml-error-card__body {
    font-size: 0.95rem;
    color: var(--opml-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}


.opml-hero__title--center {
    display: block;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    font-size: clamp(1.3rem, 5.5vw, 3.6rem);
}
