/* ============================================================
   OPML Sections Enhancement
   File: public/css/opml_sections.css
   Load AFTER opml.css  (and after custom_landing.css)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500;600&display=swap');


/* ════════════════════════════════════════════════════
   HERO BANNER — mobile text overflow fix
   Targets classes defined in opml.css / landing.blade.php
════════════════════════════════════════════════════ */

.opml-hero__title {
    word-break:     break-word   !important;
    overflow-wrap:  anywhere     !important;
    hyphens:        auto         !important;
}

.opml-hero__sub {
    word-break:    break-word  !important;
    overflow-wrap: anywhere    !important;
}

@media (max-width: 600px) {
    .opml-hero__inner {
        padding: 0 20px !important;
    }
    .opml-hero__title {
        /* scale down from the large clamp in opml.css */
        font-size:     clamp(1.55rem, 8vw, 2.6rem) !important;
        margin-bottom: 12px !important;
        max-width:     100% !important;
    }
    .opml-hero__sub {
        font-size:     0.92rem !important;
        max-width:     100%   !important;
        margin-bottom: 22px   !important;
    }
}


/* ════════════════════════════════════════════════════
   CONTENT SECTIONS
   .lp-section  /  .lp-section--alt
════════════════════════════════════════════════════ */

.lp-section {
    position:      relative;
    background:    #ffffff      !important;
    padding:       96px 0       !important;
    margin:        0            !important;
    border-bottom: 1px solid #ececf0;
    /* overflow:hidden intentionally removed — it clips content on phones */
}

.lp-section--alt {
    background:    #f4f4f6      !important;
    border-bottom: 1px solid #e8e8ed;
}

.lp-section__container {
    width:      100%    !important;
    max-width:  1200px  !important;
    margin:     0 auto  !important;
    padding:    0 24px  !important;
    box-sizing: border-box;
}

/* Base two-column grid */
.lp-section__content {
    display:               grid        !important;
    grid-template-columns: 1fr 1fr     !important;
    gap:                   72px        !important;
    align-items:           center      !important;
}

/* Prevent any child from overflowing its column */
.lp-section__content > * {
    min-width: 0;
    max-width: 100%;
}

/* ── Section One layout ─────────────────────────────
   DOM order: text first, image second.
   Desktop: image must appear LEFT, text RIGHT.
            → give image order:1, text order:2
   Mobile:  text must appear TOP, image BOTTOM.
            → natural DOM order (text first) is correct,
              so we reset order on both children to auto.
   No duplicate HTML. No show/hide classes needed.
────────────────────────────────────────────────── */
.lp-section__content--s1 .lp-s1-text  { order: 2; }   /* text → right on desktop */
.lp-section__content--s1 .lp-s1-image { order: 1; }   /* image → left on desktop */


/* ── Image wrapper ── */
.lp-section__img-wrap {
    width:     100%;
    min-width: 0;
    max-width: 100%;
    position:  relative;
}

/* ── Typography ── */
.lp-section__text {
    max-width: 520px;
}

.lp-section__title {
    font-family:    'Syne', sans-serif      !important;
    font-size:      clamp(1.65rem, 3vw, 2.4rem) !important;
    font-weight:    800                     !important;
    line-height:    1.1                     !important;
    letter-spacing: -0.03em                 !important;
    color:          #111114                 !important;
    margin:         0                       !important;
    word-break:     break-word              !important;
    overflow-wrap:  anywhere                !important;
}

.lp-section__title::after {
    content:       '';
    display:       block;
    width:         40px;
    height:        3px;
    background:    #e8c547;
    border-radius: 999px;
    margin-top:    16px;
    margin-bottom: 18px;
}

.lp-section__description {
    font-family:   'DM Sans', sans-serif !important;
    font-size:     1rem                  !important;
    color:         #555560               !important;
    line-height:   1.8                   !important;
    margin:        0 0 34px              !important;
    word-break:    break-word            !important;
    overflow-wrap: anywhere              !important;
}

/* ── Buttons ── */
.lp-section__buttons {
    display:     flex        !important;
    flex-wrap:   wrap        !important;
    gap:         12px        !important;
    align-items: center      !important;
}

.lp-btn {
    display:         inline-flex                  !important;
    align-items:     center                       !important;
    justify-content: center                       !important;
    padding:         12px 26px                    !important;
    border-radius:   999px                        !important;
    font-family:     'DM Sans', sans-serif        !important;
    font-size:       0.875rem                     !important;
    font-weight:     600                          !important;
    text-decoration: none                         !important;
    border:          none                         !important;
    cursor:          pointer                      !important;
    transition:      background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
    white-space:     nowrap                       !important;
    line-height:     1                            !important;
    background:      #e8c547                      !important;
    color:           #111114                      !important;
    box-shadow:      0 4px 18px rgba(232,197,71,0.28) !important;
}
.lp-btn:hover {
    background:  #d4b030                      !important;
    transform:   translateY(-2px)             !important;
    box-shadow:  0 8px 28px rgba(232,197,71,0.36) !important;
    color:       #111114                      !important;
}
.lp-btn--outline {
    background:  transparent          !important;
    color:       #111114              !important;
    border:      1.5px solid #d0d0d8  !important;
    box-shadow:  none                 !important;
}
.lp-btn--outline:hover {
    background:    #f4f4f6         !important;
    border-color:  #a0a0b0         !important;
    color:         #111114         !important;
    transform:     translateY(-2px) !important;
    box-shadow:    none            !important;
}

/* ── Image ── */
.lp-section__image {
    width:         100%         !important;
    height:        auto         !important;
    max-width:     100%         !important;
    max-height:    none         !important;
    aspect-ratio:  4 / 3        !important;
    object-fit:    cover        !important;
    border-radius: 24px         !important;
    box-shadow:    0 16px 48px rgba(0,0,0,0.10) !important;
    display:       block        !important;
    transition:    transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease !important;
}
.lp-section__image:hover {
    transform:  scale(1.022)                    !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14)   !important;
}


/* ════════════════════════════════════════════════════
   MOBILE  ≤ 900px
════════════════════════════════════════════════════ */
@media (max-width: 900px) {

    .lp-section {
        padding: 52px 0 !important;
    }

    .lp-section__container {
        padding: 0 20px !important;
    }

    .lp-section__content {
        grid-template-columns: 1fr  !important;
        gap:                   28px !important;
    }

    /* Reset order so DOM order takes over:
       text (first in DOM) = top, image (second) = bottom */
    .lp-section__content--s1 .lp-s1-text  { order: unset; }
    .lp-section__content--s1 .lp-s1-image { order: unset; }

    .lp-section__text {
        max-width: 100% !important;
        width:     100% !important;
    }

    .lp-section__title {
        font-size: clamp(1.3rem, 6vw, 1.9rem) !important;
    }

    .lp-section__image {
        aspect-ratio:  16/9  !important;
        border-radius: 14px  !important;
    }

    /* Buttons stack full-width */
    .lp-section__buttons {
        flex-direction: column    !important;
        align-items:    stretch   !important;
        width:          100%      !important;
    }
    .lp-btn {
        width:           100%   !important;
        justify-content: center !important;
        text-align:      center !important;
        white-space:     normal !important;
    }
}

@media (max-width: 480px) {
    .lp-section__container {
        padding: 0 16px !important;
    }
}

.lp-promotions {
    background: #eeeef2 !important;
    padding: 80px 0 90px !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e0e0e8;
}

.lp-promotions__header {
    text-align: center !important;
    max-width: 1200px !important;
    margin: 0 auto 44px !important;
    padding: 0 24px !important;
}

.lp-promotions__title {
    font-family: 'Syne', sans-serif !important;
    font-size: clamp(1.65rem, 3vw, 2.4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: #111114 !important;
    margin: 0 0 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.lp-promotions__title::after {
    content: '';
    display: block;
    width: 40px; height: 3px;
    background: #e8c547; border-radius: 999px;
    margin-top: 14px;
}
.lp-promotions__subtitle {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1rem !important;
    color: #777788 !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
    max-width: 460px;
    display: block !important;
}

.lp-promotions__slider {
    overflow: hidden !important;
    width: 100% !important;
    padding: 14px 0 !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.lp-promotions__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    width: max-content !important;
    grid-template-columns: unset !important;
    transform: none;
    animation: lp-marquee 36s linear infinite;
}

.lp-promotions__slider:hover .lp-promotions__track {
    animation-play-state: paused;
}

@keyframes lp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lp-promo-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    width: 300px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.28s ease, border-color 0.28s ease !important;
    cursor: pointer !important;
    min-width: unset !important; max-width: unset !important;
}

.lp-promo-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
    border-color: rgba(232,197,71,0.40) !important;
}

.lp-promo-card__image {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    max-height: none !important;
    box-shadow: none !important;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1) !important;
    flex-shrink: 0 !important;
}
.lp-promo-card:hover .lp-promo-card__image { transform: scale(1.05) !important; }

.lp-promo-card__no-img {
    width: 100%;
    height: 180px;
    background: #f0f0f4;
    display: flex; align-items: center; justify-content: center;
    color: #bbbbc8; font-size: 2rem;
    flex-shrink: 0;
}

.lp-promo-card__content {
    padding: 16px 18px 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.lp-promo-card__badge {
    display: inline-block !important;
    padding: 3px 10px !important;
    background: #fef9e7 !important;
    color: #b8860b !important;
    font-family: 'Syne', sans-serif !important;
    font-size: 0.60rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    border-radius: 999px !important;
    margin-bottom: 8px !important;
    width: fit-content !important;
    border: 1px solid rgba(184,134,11,0.16) !important;
}

.lp-promo-card__title {
    font-family: 'Syne', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #111114 !important;
    margin: 0 0 6px !important;
    line-height: 1.3 !important;
    text-align: left !important;
}

.lp-promo-card__description {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.82rem !important;
    color: #666672 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    flex: 1 !important;
    text-align: left !important;
}

.lp-promo-card__hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b8860b;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}
.lp-promo-card:hover .lp-promo-card__hint {
    opacity: 1;
    transform: translateY(0);
}


/* ════════════════════════════════════════════════════
   PROMOTION GALLERY LIGHTBOX
════════════════════════════════════════════════════ */

.promo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9900;
    background: rgba(6,6,8,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
}
.promo-lightbox.is-open { display: flex; }

.promo-lightbox__close {
    position: fixed;
    top: 18px; right: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 1.2rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.25s;
    z-index: 9901;
}
.promo-lightbox__close:hover {
    background: rgba(255,255,255,0.22);
    transform: rotate(90deg);
}

.promo-lightbox__counter {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.36);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.promo-lightbox__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 880px;
}

.promo-lightbox__img {
    max-width: 100%;
    max-height: 62vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    display: block;
    transition: opacity 0.18s ease;
}
.promo-lightbox__img.fade { opacity: 0; }

.promo-lightbox__btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff; font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}
.promo-lightbox__btn:hover { background: rgba(255,255,255,0.22); }
.promo-lightbox__btn--prev { left: -68px; transform: translateY(-50%); }
.promo-lightbox__btn--prev:hover { transform: translateY(-50%) translateX(-3px); }
.promo-lightbox__btn--next { right: -68px; transform: translateY(-50%); }
.promo-lightbox__btn--next:hover { transform: translateY(-50%) translateX(3px); }

.promo-lightbox__caption {
    text-align: center;
    margin-top: 22px;
    max-width: 560px;
}
.promo-lightbox__caption-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: #fff; margin-bottom: 4px;
}
.promo-lightbox__caption-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.6;
}

.promo-lightbox__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 4px 4px 8px;
    scrollbar-width: none;
}
.promo-lightbox__thumbs::-webkit-scrollbar { display: none; }

.promo-lightbox__thumb {
    width: 60px; height: 44px;
    border-radius: 7px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: opacity 0.2s, border-color 0.2s, transform 0.18s;
}
.promo-lightbox__thumb:hover { opacity: 0.72; transform: translateY(-2px); }
.promo-lightbox__thumb.is-active { opacity: 1; border-color: #e8c547; }

@media (max-width: 680px) {
    .promo-lightbox__btn--prev { left: 4px; }
    .promo-lightbox__btn--next { right: 4px; }
    .promo-lightbox__btn { width: 40px; height: 40px; font-size: 0.9rem; }
    .promo-lightbox__img { border-radius: 10px; max-height: 55vh; }
}


/* ════════════════════════════════════════════════════
   PREVIOUS WORK — INDEX PAGE  (prefix: pw-)
════════════════════════════════════════════════════ */

.pw-page { background: #f4f4f6; min-height: 100vh; }

.pw-hero {
    background: #ffffff;
    border-bottom: 1px solid #e8e8ed;
    padding: 52px 0 44px;
}
.pw-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pw-hero__label {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #b8860b; display: block; margin-bottom: 10px;
}
.pw-hero__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #111114; margin: 0 0 10px; line-height: 1.05;
}
.pw-hero__sub { font-size: 1rem; color: #666672; line-height: 1.6; max-width: 480px; }

.pw-grid-wrap { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; }
.pw-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.pw-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.pw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.11);
    border-color: rgba(232,197,71,0.36);
    text-decoration: none; color: inherit;
}
.pw-card__img-wrap { aspect-ratio: 16/10; overflow: hidden; background: #eeeef2; flex-shrink: 0; }
.pw-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.pw-card:hover .pw-card__img { transform: scale(1.05); }
.pw-card__no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #bbbbc8; font-size: 2.5rem; }
.pw-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pw-card__title { font-family: 'Syne', sans-serif; font-size: 1.02rem; font-weight: 700; color: #111114; margin: 0 0 8px; line-height: 1.3; }
.pw-card__desc { font-size: 0.875rem; color: #666672; line-height: 1.65; margin: 0 0 18px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pw-card__cta { display: inline-flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; color: #b8860b; text-decoration: none; margin-top: auto; transition: gap 0.2s; }
.pw-card:hover .pw-card__cta { gap: 10px; }
.pw-empty { grid-column: 1/-1; text-align: center; padding: 80px 0; color: #aaaabc; }
.pw-empty__icon { font-size: 3rem; display: block; margin-bottom: 14px; }
.pw-empty__text { font-size: 1rem; }

@media (max-width: 600px) {
    .pw-grid { grid-template-columns: 1fr; }
    .pw-hero { padding: 36px 0 30px; }
}


/* ════════════════════════════════════════════════════
   PREVIOUS WORK — SHOW / DETAIL PAGE
════════════════════════════════════════════════════ */

.pw-detail { background: #f4f4f6; min-height: 100vh; padding: 48px 0 80px; }
.pw-detail__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.pw-back { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; color: #666672; text-decoration: none; margin-bottom: 32px; transition: color 0.2s, gap 0.2s; }
.pw-back:hover { color: #111114; gap: 12px; }
.pw-back__arrow { font-size: 1rem; line-height: 1; }
.pw-detail__card { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 22px; overflow: hidden; box-shadow: 0 4px 28px rgba(0,0,0,0.07); }
.pw-detail__img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #eeeef2; }
.pw-detail__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.pw-detail__card:hover .pw-detail__img { transform: scale(1.02); }
.pw-detail__no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #bbbbc8; font-size: 4rem; }
.pw-detail__content { padding: 38px 44px 48px; }
.pw-detail__label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #b8860b; display: block; margin-bottom: 10px; }
.pw-detail__title { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.03em; color: #111114; margin: 0; line-height: 1.1; }
.pw-detail__divider { width: 40px; height: 3px; background: #e8c547; border-radius: 999px; margin: 18px 0 22px; }
.pw-detail__desc { font-size: 1rem; color: #555560; line-height: 1.82; margin: 0; }

@media (max-width: 600px) {
    .pw-detail__content { padding: 24px 20px 32px; }
    .pw-detail { padding: 32px 0 60px; }
}


/* ════════════════════════════════════════════════════
   OWNERS / PARTNERS PAGE  (prefix: ow-)
════════════════════════════════════════════════════ */

.ow-page { background: #f4f4f6; min-height: 100vh; }
.ow-hero { background: #ffffff; border-bottom: 1px solid #e8e8ed; padding: 52px 0 44px; }
.ow-hero__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.ow-hero__label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #b8860b; display: block; margin-bottom: 10px; }
.ow-hero__title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: #111114; margin: 0 0 10px; line-height: 1.05; }
.ow-hero__sub { font-size: 1rem; color: #666672; line-height: 1.6; max-width: 460px; }
.ow-grid-wrap { max-width: 1100px; margin: 0 auto; padding: 52px 24px 80px; }
.ow-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.ow-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.05); text-align: center; transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.28s ease; }
.ow-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,0.10); border-color: rgba(232,197,71,0.36); }
.ow-card__img-wrap { width: 100%; aspect-ratio: 1; overflow: hidden; background: #eeeef2; position: relative; }
.ow-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
.ow-card:hover .ow-card__img { transform: scale(1.04); }
.ow-card__no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: #ccccd8; }
.ow-card__img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, #e8c547, #f0d060); }
.ow-card__body { padding: 22px 20px 26px; }
.ow-card__name { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: #111114; margin: 0 0 4px; line-height: 1.2; }
.ow-card__title-role { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #b8860b; margin: 0 0 4px; }
.ow-card__date { font-size: 0.78rem; color: #aaaabc; margin: 0 0 14px; }
.ow-card__desc { font-size: 0.875rem; color: #666672; line-height: 1.68; margin: 0; }
.ow-empty { grid-column: 1/-1; text-align: center; padding: 80px 0; color: #aaaabc; }
.ow-empty__icon { font-size: 3rem; display: block; margin-bottom: 14px; }

@media (max-width: 600px) {
    .ow-grid { grid-template-columns: 1fr; }
    .ow-hero { padding: 36px 0 30px; }
    .ow-grid-wrap { padding: 36px 16px 60px; }
}


/* ════════════════════════════════════════════════════
   ABOUT US PAGE  (prefix: au-)
════════════════════════════════════════════════════ */

.au-page { background: #f4f4f6; min-height: 100vh; }
.au-hero { background: #ffffff; border-bottom: 1px solid #e8e8ed; padding: 52px 0 44px; }
.au-hero__inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.au-hero__label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #b8860b; display: block; margin-bottom: 10px; }
.au-hero__title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: #111114; margin: 0; line-height: 1.05; }
.au-entries-wrap { max-width: 800px; margin: 0 auto; padding: 52px 24px 80px; display: flex; flex-direction: column; gap: 20px; }
.au-entry { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-left: 3px solid #e8c547; border-radius: 14px; padding: 28px 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.au-entry:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateX(4px); }
.au-entry__heading { font-family: 'Syne', sans-serif; font-size: 1.12rem; font-weight: 800; color: #111114; margin: 0 0 10px; line-height: 1.25; }
.au-entry__body { font-size: 0.96rem; color: #555560; line-height: 1.78; margin: 0; }
.au-empty { text-align: center; padding: 80px 0; color: #aaaabc; }

@media (max-width: 600px) {
    .au-entries-wrap { padding: 32px 16px 60px; }
    .au-entry { padding: 22px 20px; }
    .au-hero { padding: 36px 0 30px; }
}


/* ════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS PAGE  (prefix: rv-)
════════════════════════════════════════════════════ */

.rv-page { background: #f4f4f6; min-height: 100vh; }
.rv-hero { background: #ffffff; border-bottom: 1px solid #e8e8ed; padding: 52px 0 44px; }
.rv-hero__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.rv-hero__label { font-family: 'Syne', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #b8860b; display: block; margin-bottom: 10px; }
.rv-hero__title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: #111114; margin: 0 0 8px; line-height: 1.05; }
.rv-hero__note { font-size: 0.85rem; color: #e05252; font-weight: 500; margin: 0; }
.rv-hero__action-btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 24px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 600; text-decoration: none; background: #e8c547; color: #111114; box-shadow: 0 4px 18px rgba(232,197,71,0.28); transition: background 0.22s ease, transform 0.22s ease; white-space: nowrap; flex-shrink: 0; }
.rv-hero__action-btn:hover { background: #d4b030; transform: translateY(-2px); color: #111114; }
.rv-feed-wrap { max-width: 860px; margin: 0 auto; padding: 48px 24px 80px; display: flex; flex-direction: column; gap: 20px; }
.rv-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 18px; padding: 26px 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: box-shadow 0.25s ease; }
.rv-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.rv-card__quote-mark { font-family: Georgia, serif; font-size: 3.8rem; line-height: 1; color: #e8c547; opacity: 0.55; display: block; margin-bottom: 4px; user-select: none; }
.rv-card__comment { font-size: 0.98rem; color: #333340; line-height: 1.78; margin: 0 0 18px; }
.rv-card__img-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 18px; max-width: 100%; }
.rv-card__img { width: 100%; max-height: 320px; object-fit: cover; display: block; border-radius: 12px; }
.rv-card__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 14px; border-top: 1px solid #ececf0; }
.rv-card__author { font-family: 'Syne', sans-serif; font-size: 0.875rem; font-weight: 700; color: #111114; }
.rv-card__author-label { font-size: 0.75rem; color: #aaaabc; font-weight: 400; display: block; margin-top: 1px; }
.rv-card__actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.rv-btn-edit { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; text-decoration: none; cursor: pointer; line-height: 1; background: #f4f4f6; color: #111114; border: 1px solid #d8d8e0; transition: background 0.2s, border-color 0.2s; }
.rv-btn-edit:hover { background: #e8e8f0; border-color: #b0b0c0; color: #111114; }
.rv-btn-delete { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 999px; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; cursor: pointer; line-height: 1; background: #fff0f0; color: #c0392b; border: 1px solid rgba(192,57,43,0.2); transition: background 0.2s, border-color 0.2s; }
.rv-btn-delete:hover { background: #fde8e8; border-color: rgba(192,57,43,0.4); }
.rv-empty { text-align: center; padding: 80px 0; color: #aaaabc; }
.rv-empty__icon { font-size: 3rem; display: block; margin-bottom: 14px; }

@media (max-width: 600px) {
    .rv-feed-wrap { padding: 32px 16px 60px; }
    .rv-hero { padding: 36px 0 30px; }
    .rv-hero__inner { flex-direction: column; align-items: flex-start; }
    .rv-card { padding: 20px; }
}