/* ============================================================
   ABOUT.CSS — About page-specific styles for Blue Dolphin Fish Market
   Nav, footer, .btn, and .section_* utilities live in global.css
   ============================================================ */


/* ============================================================
   Shared Section Utilities (About Page scope)
   ============================================================ */

.about_hero_section {
    background: black;
}

.about_hero_section .absolute_media {
    object-position: top;
    opacity: .8;
}

.about_section_eyebrow {
    display: inline-block;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.about_section_eyebrow--light {
    color: var(--light-blue);
}

.about_section_title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--yellow);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.about_section_title--dark {
    color: #0d2235;
}

.about_section_title_accent {
    display: block;
    color: var(--blue);
}


/* ============================================================
   About Hero Banner
   ============================================================ */

.about_hero_section {
    position: relative;
    min-height: clamp(440px, 60vh, 680px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about_hero_bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        150deg,
        #061828 0%,
        #0a3a56 40%,
        #00698a 75%,
        #0a4030 100%
    );
}

/* Swap in a real photo when available:
   .about_hero_bg { background-image: url('../media/jpg/about-hero.jpg'); background-size: cover; } */

.about_hero_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(70, 172, 219, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 105, 138, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.about_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(5, 15, 25, 0.78) 0%,
        rgba(5, 15, 25, 0.35) 60%,
        rgba(5, 15, 25, 0.2) 100%
    );
}

.about_hero_content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: clamp(7rem, 12vw, 10rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 7vw, 7rem);
}

.about_breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}

.about_breadcrumb li {
    font-size: clamp(0.72rem, 0.8vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.about_breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.25);
}

.about_breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.about_breadcrumb a:hover {
    color: var(--yellow);
}

.about_hero_eyebrow {
    font-size: clamp(0.7rem, 0.85vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.about_hero_eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--light-blue);
    border-radius: 2px;
}

.about_hero_title {
    font-size: clamp(1.9rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.02em;
    max-width: 760px;
    text-wrap: balance;
}

.about_hero_title_accent {
    display: block;
    color: var(--yellow);
}

.about_hero_title_sub {
    display: block;
    font-size: clamp(1.1rem, 1.8vw, 2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.3rem;
    letter-spacing: 0;
}

.about_hero_wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.about_hero_wave svg {
    width: 100%;
    height: clamp(36px, 4.5vw, 72px);
}

@media (max-width: 768px) {
    .about_hero_section {
        min-height: clamp(380px, 55vh, 520px);
    }

    .about_hero_title {
        font-size: clamp(1.7rem, 7vw, 2.6rem);
    }
}


/* ============================================================
   Introduction Section
   ============================================================ */

.about_intro_section {
    background: var(--cream);
    padding: clamp(4.5rem, 9vw, 9rem) 0;
}

.about_intro_inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

/* Visual panel */
.about_intro_visual {
    position: relative;
}

.about_intro_img_frame {
    position: relative;
}

.about_intro_img_main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #0a3a56 0%, #00698a 50%, #0a4535 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swap in a real photo when available:
   .about_intro_img_main { background-image: url('../media/jpg/intro-seafood.jpg'); background-size: cover; } */

.about_intro_img_overlay {
    position: absolute;
    inset: 0;
    background: black;
    border-radius: inherit;
}


/* Floating accent card */
.about_intro_img_accent {
    position: absolute;
    bottom: clamp(-1rem, -2vw, -1.5rem);
    right: clamp(-1rem, -2vw, -1.8rem);
    width: clamp(80px, 10vw, 110px);
    height: clamp(80px, 10vw, 110px);
    border-radius: 20px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #07121c;
    box-shadow: 0 12px 36px rgba(253, 199, 14, 0.45);
    z-index: 2;
}

/* Floating stat badge */
.about_intro_badge {
    position: absolute;
    top: clamp(1.2rem, 2.5vw, 2rem);
    left: clamp(-1rem, -2vw, -1.8rem);
    background: var(--white);
    border-radius: 14px;
    padding: clamp(0.8rem, 1.2vw, 1.1rem) clamp(1rem, 1.8vw, 1.6rem);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    z-index: 2;
}

.about_intro_badge_num {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.about_intro_badge_label {
    font-size: clamp(0.62rem, 0.72vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a6070;
    text-align: center;
    line-height: 1.3;
}

/* Text panel */
.about_intro_text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about_intro_lead {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    color: #0d2235;
    line-height: 1.75;
    font-weight: 500;
    margin: 1.2rem 0 1.2rem;
}

.about_intro_body {
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    color: #4a6070;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 2.2rem;
}

.about_intro_pillars {
    display: flex;
    gap: clamp(1rem, 2vw, 1.8rem);
    flex-wrap: wrap;
}

.about_intro_pillar {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(0.8rem, 0.88vw, 0.88rem);
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.03em;
}

.about_intro_pillar i {
    font-size: 0.85rem;
    color: var(--light-blue);
}

@media (max-width: 1024px) {
    .about_intro_inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        max-width: 660px;
    }

    .about_intro_img_main {
        aspect-ratio: 16 / 9;
    }

    .about_intro_badge {
        left: 1rem;
    }

    .about_intro_img_accent {
        right: 1rem;
    }
}

@media (max-width: 600px) {
    .about_intro_badge {
        display: none;
    }

    .about_intro_pillars {
        flex-direction: column;
        gap: 0.75rem;
    }
}


/* ============================================================
   Our Story Section
   ============================================================ */

.about_story_section {
    position: relative;
    padding: clamp(4.5rem, 9vw, 9rem) 0;
    overflow: hidden;
}

.about_story_bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #061828 0%, #082640 50%, #071e2e 100%);
}

.about_story_bg::before {
    content: '';
    position: absolute;
    width: clamp(500px, 70vw, 1000px);
    height: clamp(500px, 70vw, 1000px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 105, 138, 0.2) 0%, transparent 65%);
    top: -25%;
    right: -15%;
    pointer-events: none;
}

.about_story_inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.about_story_header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3.5rem, 6vw, 6rem);
}

.about_story_blocks {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 5vw, 5rem);
}

.about_story_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.about_story_block--reverse {
    direction: rtl;
}

.about_story_block--reverse > * {
    direction: ltr;
}

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

.about_story_block_num {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
    margin-bottom: -0.5rem;
}

.about_story_block_title {
    font-size: clamp(1.2rem, 1.8vw, 1.7rem);
    font-weight: 700;
    color: var(--yellow);
    line-height: 1.25;
}

.about_story_block_body {
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.82;
    font-weight: 300;
}

/* Story block visual card */
.about_story_block_visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_story_block_card {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: clamp(3rem, 5vw, 5rem);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.about_story_block_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about_story_block_card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about_story_block_card span {
    font-size: clamp(0.82rem, 0.92vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.about_story_block_card {
    background: linear-gradient(140deg, #004d6b 0%, #00698a 100%);
}

@media (max-width: 900px) {
    .about_story_block {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .about_story_block--reverse {
        direction: ltr;
    }

    .about_story_block_visual {
        order: -1;
    }

    .about_story_block_card {
        max-width: 100%;
        aspect-ratio: 16 / 7;
    }

    .about_story_block_num {
        font-size: 3rem;
    }
}


/* ============================================================
   What We Offer Section
   ============================================================ */

.about_offers_section {
    background: var(--cream);
    padding: clamp(4.5rem, 9vw, 9rem) 0;
}

.about_offers_inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.about_offers_header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(2.8rem, 5vw, 5rem);
}

.about_offers_sub {
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    color: #4a6070;
    line-height: 1.75;
    font-weight: 400;
    margin-top: 0.8rem;
}

.about_offers_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 2vw, 2rem);
}

.about_offer_card {
    background: var(--white);
    border-radius: 20px;
    padding: clamp(1.8rem, 2.8vw, 2.8rem);
    border: 1px solid rgba(0, 105, 138, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.about_offer_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
    opacity: 0;
    transition: opacity var(--transition);
}

.about_offer_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 105, 138, 0.13);
    border-color: rgba(0, 105, 138, 0.22);
}

.about_offer_card:hover::after {
    opacity: 1;
}

.about_offer_card--featured {
    background: linear-gradient(145deg, #00698a 0%, #005a78 100%);
    border-color: transparent;
}

.about_offer_card--featured::after {
    background: linear-gradient(90deg, var(--yellow), #e6b30d);
    opacity: 1;
}

.about_offer_card--featured .about_offer_card_icon_wrap {
    background: rgba(255, 255, 255, 0.15);
    color: var(--yellow);
}

.about_offer_card--featured .about_offer_card_title {
    color: var(--white);
}

.about_offer_card--featured .about_offer_card_body {
    color: rgba(255, 255, 255, 0.8);
}

.about_offer_card--featured .about_offer_card_list li {
    color: rgba(255, 255, 255, 0.7);
}

.about_offer_card--featured .about_offer_card_list {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.about_offer_card--featured .about_offer_card_list li::before {
    background: var(--yellow);
}

.about_offer_card--featured:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about_offer_card_icon_wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 105, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}

.about_offer_card:not(.about_offer_card--featured):hover .about_offer_card_icon_wrap {
    background: var(--blue);
    color: var(--white);
}

.about_offer_card_title {
    font-size: clamp(1rem, 1.2vw, 1.22rem);
    font-weight: 700;
    color: #0d2235;
    line-height: 1.3;
}

.about_offer_card_body {
    font-size: clamp(0.88rem, 0.95vw, 0.96rem);
    color: #4a6070;
    line-height: 1.7;
    font-weight: 400;
}

.about_offer_card_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(0, 105, 138, 0.1);
    padding-top: 1rem;
}

.about_offer_card_list li {
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    color: #4a6070;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
}

.about_offer_card_list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--light-blue);
    flex-shrink: 0;
}

.about_offers_note {
    text-align: center;
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    color: #4a6070;
    line-height: 1.75;
    font-weight: 400;
    max-width: 680px;
    margin: clamp(2.5rem, 4vw, 4rem) auto 0;
    padding: clamp(1.5rem, 2.5vw, 2.2rem) clamp(1.5rem, 3vw, 3rem);
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(0, 105, 138, 0.1);
    font-style: italic;
}

@media (max-width: 860px) {
    .about_offers_grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 580px) {
    .about_offers_grid {
        max-width: 100%;
    }
}


/* ============================================================
   Values Strip
   ============================================================ */

.about_values_section {
    position: relative;
    padding: clamp(3rem, 5vw, 5rem) 0;
    overflow: hidden;
}

.about_values_bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #00698a 0%, #005a78 50%, #0a3a56 100%);
}

.about_values_inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    flex-wrap: wrap;
}

.about_value_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    min-width: 130px;
}

.about_value_item i {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--yellow);
    margin-bottom: 0.2rem;
}

.about_value_item strong {
    display: block;
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
}

.about_value_item span {
    font-size: clamp(0.72rem, 0.8vw, 0.8rem);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    line-height: 1.4;
}

.about_value_sep {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about_values_inner {
        gap: 1.8rem 2.5rem;
    }

    .about_value_sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .about_values_inner {
        justify-content: flex-start;
        gap: 1.4rem 2rem;
    }

    .about_value_item {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 0.9rem;
        min-width: unset;
    }

    .about_value_item i {
        margin-bottom: 0;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }
}


/* ============================================================
   CTA Section
   ============================================================ */

.about_cta_section {
    position: relative;
    padding: clamp(5rem, 10vw, 10rem) 0;
    text-align: center;
    overflow: hidden;
    background: black;
}

.about_cta_section .absolute_media {
    opacity: .7;
}

.about_cta_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(5, 15, 25, 0.5) 0%,
        rgba(5, 15, 25, 0.1) 50%,
        rgba(5, 15, 25, 0.5) 100%
    );
}

.about_cta_content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.about_cta_title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    text-wrap: balance;
}

.about_cta_subtitle {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.8rem;
}

.about_cta_actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 500px) {
    .about_cta_actions {
        flex-direction: column;
        align-items: center;
    }

    .about_cta_actions .btn {
        width: 100%;
        max-width: 320px;
    }
}
