/*
Theme Name: Bankai Sushi
Theme URI: https://bankaisushikansas.com
Author: IT Network Service
Description: Tema personalizado para Bankai Sushi y WooCommerce.
Version: 1.1.0
Text Domain: bankai
*/

:root {
    --black: #050505;
    --black-soft: #0c0c0c;
    --gold: #c9a64d;
    --gold-light: #e1c573;
    --white: #ffffff;
    --muted: #b7b7b7;
    --border: rgba(255, 255, 255, 0.14);
    --display: "Cormorant Garamond", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1220px, calc(100% - 48px));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.92),
        rgba(0, 0, 0, 0)
    );
    transition: background 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
    border-color: var(--border);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    width: min(1420px, calc(100% - 48px));
    min-height: 96px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 38px;
}

.site-logo img {
    width: 175px;
    max-height: 65px;
    object-fit: contain;
}

.primary-navigation {
    justify-self: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 31px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.primary-menu a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.primary-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-link span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 0.68rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: var(--white);
}

/* Buttons */

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--small {
    min-height: 46px;
    padding-inline: 20px;
}

.button--gold {
    background: var(--gold);
    color: var(--black);
}

.button--gold:hover {
    background: var(--gold-light);
}

.button--outline {
    border-color: rgba(255, 255, 255, 0.55);
}

.button--outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Hero */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--black);
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 32%;
    background: linear-gradient(to bottom, transparent, var(--black));
    content: "";
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 145px;
    padding-bottom: 110px;
}

.hero__eyebrow,
.section-label {
    margin: 0 0 24px;
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero__title {
    max-width: 850px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4.6rem, 8vw, 8.7rem);
    font-weight: 500;
    line-height: 0.81;
    letter-spacing: -0.045em;
}

.hero__title span {
    color: var(--gold);
    font-style: italic;
}

.hero__description {
    max-width: 610px;
    margin: 38px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.hero__scroll {
    position: absolute;
    z-index: 3;
    right: 45px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__scroll span:last-child {
    width: 75px;
    height: 1px;
    background: var(--gold);
}

/* Experience */

.experience {
    padding: 125px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(201, 166, 77, 0.13),
            transparent 29%
        ),
        var(--black);
}

.experience__grid {
    display: grid;
    grid-template-columns: 0.65fr 1.45fr 1fr;
    gap: 70px;
    align-items: start;
}

.experience h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.2rem, 5vw, 5.8rem);
    font-weight: 500;
    line-height: 0.92;
}

.experience h2 span {
    color: var(--gold);
    font-style: italic;
}

.experience__text {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}
/* Story */

.story {
    padding: 130px 0;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(201, 166, 77, 0.12),
            transparent 30%
        ),
        #080808;
    color: var(--white);
}

.story__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.story__image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--black);
}

.story__image::after {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 166, 77, 0.55);
    content: "";
    pointer-events: none;
}

.story__image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.story__content .section-label {
    color: var(--gold-light);
}

.story__content h2 {
    margin: 0 0 38px;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(3.3rem, 5vw, 6rem);
    font-weight: 500;
    line-height: 0.9;
}

.story__content h2 span {
    color: var(--gold);
    font-style: italic;
}

.story__copy {
    max-width: 660px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.story__signature {
    margin: 38px 0 0;
    color: var(--gold);
    font-family: var(--display);
    font-size: 2rem;
    font-style: italic;
}

/* Partners */

.partners {
    padding: 130px 0;
    background: #0a0a0a;
}

.partners__heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.partners__heading h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.4rem, 6vw, 6.5rem);
    font-weight: 500;
    line-height: 0.88;
}

.partners__heading h2 span {
    color: var(--gold);
    font-style: italic;
}

.partners__heading > p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.9;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.partner-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: #111111;
    transition:
        transform 220ms ease,
        border-color 220ms ease;
}

.partner-card:hover {
    border-color: rgba(201, 166, 77, 0.7);
    transform: translateY(-6px);
}

.partner-card__visual {
    min-height: 310px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(201, 166, 77, 0.22),
            transparent 42%
        ),
        #151515;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0.14em;
}

.partner-card__footer {
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px;
    border-top: 1px solid var(--border);
}

.partner-card__footer small {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.partner-card__footer h3 {
    margin: 8px 0 0;
    font-family: var(--display);
    font-size: 1.65rem;
    font-weight: 500;
}

.partner-card__arrow {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 1.2rem;
}

/* Contact CTA */

.contact-cta {
    padding: 60px 0 100px;
    background: #0a0a0a;
}

.contact-cta__box {
    min-height: 420px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
    padding: 75px 80px;
    border: 1px solid rgba(201, 166, 77, 0.28);
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(201, 166, 77, 0.2),
            transparent 32%
        ),
        linear-gradient(135deg, #0b0b0b, #15120b);
}

.contact-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.5rem, 6vw, 6.7rem);
    font-weight: 500;
    line-height: 0.86;
}

.contact-cta h2 span {
    color: var(--gold);
    font-style: italic;
}

.contact-cta__action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.contact-cta__action p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}
/* Footer */

.site-footer {
    padding: 35px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.8rem;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.site-footer p {
    margin: 0;
}

/* Responsive */

@media (max-width: 1080px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: block;
    }

    .primary-navigation {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: grid;
        place-items: center;
        visibility: hidden;
        opacity: 0;
        background: rgba(5, 5, 5, 0.98);
        transition: opacity 220ms ease, visibility 220ms ease;
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
    }

    .primary-menu {
        flex-direction: column;
        gap: 18px;
    }

    .primary-menu a {
        font-family: var(--display);
        font-size: 2.3rem;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: none;
    }

    .header-actions {
        display: none;
    }

    .experience__grid {
        grid-template-columns: 1fr;
        gap: 28px;
.story__grid,
.partners__heading,
.contact-cta__box {
    grid-template-columns: 1fr;
}

.partners__grid {
    grid-template-columns: 1fr 1fr;
}

.story__image,
.story__image img {
    min-height: 560px;
    height: 560px;
}

.contact-cta__box {
    padding: 60px;
}
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 680px) {
    .container,
    .site-header__inner {
        width: min(100% - 30px, 1220px);
    }

    .site-header__inner {
        min-height: 78px;
    }

    .site-logo img {
        width: 132px;
        max-height: 48px;
    }

    .hero {
        min-height: 840px;
        align-items: flex-end;
        background-position: 60% center;
    }

    .hero__content {
        padding-top: 150px;
        padding-bottom: 95px;
    }

    .hero__title {
        font-size: clamp(3.9rem, 19vw, 6rem);
    }

    .hero__description {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__scroll {
        display: none;
    }

    .experience {
        padding: 88px 0;
    }

    .site-footer__inner {
        flex-direction: column;
    }
}

/* ===== BANKAI FOOTER FINAL OVERRIDE ===== */

.site-footer {
    width: 100%;
    padding: 90px 0 0 !important;
    border-top: 1px solid rgba(201, 166, 77, 0.25) !important;
    background: #050505 !important;
    color: #b7b7b7 !important;
}

.site-footer .site-footer__grid {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.6fr) minmax(180px, 0.6fr);
    gap: 80px;
    align-items: start;
    padding-bottom: 70px;
}

.site-footer__brand {
    max-width: 580px;
}

.site-footer__logo {
    display: inline-block;
    width: 220px;
    margin-bottom: 28px;
    overflow: hidden;
}

.site-footer__logo img {
    display: block;
    width: 220px !important;
    max-width: 100% !important;
    height: 82px !important;
    max-height: 82px !important;
    object-fit: contain !important;
    object-position: left center;
}

.site-footer__brand > p {
    max-width: 520px;
    margin: 0 0 22px !important;
    color: #b7b7b7 !important;
    font-size: 1rem;
    line-height: 1.8;
}

.site-footer__email {
    display: inline-block;
    color: #c9a64d !important;
    font-weight: 600;
    text-decoration: none;
}

.site-footer__email:hover {
    color: #e1c573 !important;
}

.site-footer__column h3 {
    margin: 0 0 26px !important;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
}

.site-footer__column ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-footer__column li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-footer__column li + li {
    margin-top: 18px !important;
}

.site-footer__column a {
    color: #b7b7b7 !important;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: color 180ms ease;
}

.site-footer__column a:hover {
    color: #c9a64d !important;
}

.site-footer .site-footer__bottom {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
    margin: 0 !important;
    color: #7f7f7f !important;
    font-size: 0.78rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .site-footer .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .site-footer {
        padding-top: 65px !important;
    }

    .site-footer .site-footer__grid {
        width: min(100% - 30px, 1220px);
        grid-template-columns: 1fr;
        gap: 42px;
        padding-bottom: 50px;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer .site-footer__bottom {
        width: min(100% - 30px, 1220px);
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 28px;
    }

    .site-footer__logo,
    .site-footer__logo img {
        width: 175px !important;
    }
}

/* ===== INTERNAL PAGES ===== */

.inner-page,
.shop-page {
    min-height: 75vh;
    padding: 150px 0 100px;
    background: #080808;
    color: #ffffff;
}

.inner-page__content,
.shop-page__content {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.inner-page__title,
.woocommerce-products-header__title {
    margin: 0 0 50px;
    color: #ffffff;
    font-family: var(--display);
    font-size: clamp(3.4rem, 6vw, 6.5rem);
    font-weight: 500;
    line-height: 0.9;
}

.inner-page__body {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Remove default WordPress widgets and sidebar */

.widget-area,
.sidebar,
#secondary,
.wp-block-search,
.wp-block-page-list,
.wp-block-archives,
.wp-block-categories {
    display: none !important;
}

/* WooCommerce shop */

.woocommerce .products {
    margin: 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 0 24px;
    border: 1px solid rgba(255,255,255,.12);
    background: #111111;
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 22px;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    margin-left: 20px;
    margin-right: 20px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #ffffff;
    font-family: var(--display);
    font-size: 1.65rem;
    font-weight: 500;
}

.woocommerce ul.products li.product .price {
    color: var(--gold);
    font-weight: 700;
}

.woocommerce ul.products li.product .button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 20px;
    border-radius: 0;
    background: var(--gold);
    color: #050505;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .inner-page,
    .shop-page {
        padding: 120px 0 70px;
    }

    .inner-page__content,
    .shop-page__content {
        width: min(100% - 30px, 1220px);
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   BANKAI — FOUNDERS
================================================== */

.founders {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background:
        linear-gradient(
            135deg,
            rgba(201, 166, 77, 0.045),
            transparent 42%
        ),
        #080808;
    color: var(--white);
}

.founders::before {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(201, 166, 77, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.founders::after {
    position: absolute;
    bottom: -260px;
    left: -240px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(201, 166, 77, 0.09),
        transparent 66%
    );
    content: "";
    pointer-events: none;
}

.founders > .container {
    position: relative;
    z-index: 1;
}

.founders__heading {
    display: grid;
    grid-template-columns: 0.55fr 1.35fr 0.85fr;
    gap: 65px;
    align-items: end;
    margin-bottom: 78px;
}

.founders__heading .section-label {
    margin-bottom: 8px;
}

.founders__heading h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.8rem, 6.5vw, 7.2rem);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -0.035em;
}

.founders__heading h2 span {
    color: var(--gold);
    font-style: italic;
}

.founders__intro {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.founders__grid {
    display: grid;
    gap: 28px;
}

.founder-card {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #0e0e0e;
}

.founder-card--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.founder-card--reverse .founder-card__image {
    order: 2;
}

.founder-card--reverse .founder-card__content {
    order: 1;
}

.founder-card__image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: saturate(0.82) contrast(1.06);
    transition:
        filter 450ms ease,
        transform 700ms cubic-bezier(.2,.7,.2,1);
}

.founder-card__image::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5, 5, 5, 0.82),
            transparent 52%
        ),
        linear-gradient(
            90deg,
            transparent 60%,
            rgba(5, 5, 5, 0.2)
        );
    content: "";
}

.founder-card__image::after {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 166, 77, 0.42);
    content: "";
    pointer-events: none;
}

/* Fotos provisionales: reemplazaremos estas URL por retratos */
.founder-card__image--marcia {
    background-image:
        linear-gradient(
            rgba(5,5,5,.12),
            rgba(5,5,5,.3)
        ),
        url('/wp-content/uploads/2026/07/PHOTO-2026-05-13-16-15-26.jpg');
}

.founder-card__image--anthony {
    background-image:
        linear-gradient(
            rgba(5,5,5,.1),
            rgba(5,5,5,.32)
        ),
        url('/wp-content/uploads/2026/07/PHOTO-2026-05-13-16-14-49.jpg');
}

.founder-card:hover .founder-card__image {
    filter: saturate(1) contrast(1.08);
    transform: scale(1.025);
}

.founder-card__number {
    position: absolute;
    z-index: 2;
    right: 35px;
    bottom: 27px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--display);
    font-size: 4rem;
    font-style: italic;
    line-height: 1;
}

.founder-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(48px, 7vw, 100px);
}

.founder-card__role {
    margin: 0 0 20px;
    color: var(--gold-light);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.founder-card__content h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.6rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.025em;
}

.founder-card__line {
    display: block;
    width: 82px;
    height: 1px;
    margin: 32px 0;
    background: var(--gold);
}

.founder-card__content > p:last-child {
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.founders__statement {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 55px;
    align-items: center;
    padding: 75px 0 0;
}

.founders__statement blockquote {
    max-width: 920px;
    margin: 0;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.02;
}

.founders__values {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    min-width: 230px;
    color: var(--gold-light);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.founders__values i {
    display: block;
    width: 1px;
    height: 22px;
    background: rgba(201, 166, 77, 0.55);
}

/* Founders responsive */

@media (max-width: 1080px) {
    .founders__heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .founders__intro {
        max-width: 680px;
    }

    .founder-card,
    .founder-card--reverse {
        grid-template-columns: 1fr 1fr;
    }

    .founders__statement {
        grid-template-columns: 1fr;
    }

    .founders__values {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .founders__values i {
        width: 22px;
        height: 1px;
    }
}

@media (max-width: 760px) {
    .founders {
        padding: 95px 0;
    }

    .founders__heading {
        margin-bottom: 52px;
    }

    .founder-card,
    .founder-card--reverse {
        grid-template-columns: 1fr;
    }

    .founder-card--reverse .founder-card__image,
    .founder-card--reverse .founder-card__content {
        order: initial;
    }

    .founder-card__image {
        min-height: 430px;
    }

    .founder-card__content {
        padding: 48px 28px 55px;
    }

    .founders__statement {
        padding-top: 60px;
    }

    .founders__values {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .founder-card__image {
        min-height: 350px;
    }

    .founder-card__number {
        right: 26px;
        bottom: 24px;
        font-size: 3rem;
    }

    .founders__values {
        flex-direction: column;
    }

    .founders__values i {
        width: 1px;
        height: 18px;
    }
}

/* ===== FOUNDERS HEADER REFINEMENT ===== */

.founders__heading {
    display: grid;
    grid-template-columns: 1fr minmax(0, 1.65fr) minmax(280px, 0.85fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 72px;
}

.founders__heading .section-label {
    align-self: center;
    margin: 0;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.founders__heading h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.4rem, 5.2vw, 6rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.035em;
}

.founders__heading h2 span {
    display: inline-block;
    margin-top: 4px;
    color: var(--gold);
    font-style: italic;
}

.founders__intro {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 1080px) {
    .founders__heading {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .founders__heading .section-label {
        align-self: auto;
    }

    .founders__heading h2 {
        max-width: 720px;
    }

    .founders__intro {
        max-width: 650px;
    }
}

@media (max-width: 680px) {
    .founders__heading {
        margin-bottom: 48px;
    }

    .founders__heading h2 {
        font-size: clamp(3rem, 14vw, 4.4rem);
        line-height: 0.92;
    }
}

/* ==================================================
   BANKAI — MOBILE FINAL FIX
================================================== */

@media (max-width: 767px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .site-header__inner,
    .site-footer .site-footer__grid,
    .site-footer .site-footer__bottom {
        width: calc(100% - 30px) !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Header */

    .site-header__inner {
        min-height: 74px !important;
        grid-template-columns: 1fr auto !important;
        gap: 15px !important;
    }

    .site-logo img {
        width: 125px !important;
        height: auto !important;
        max-height: 48px !important;
        object-fit: contain !important;
    }

    .menu-toggle {
        display: block !important;
    }

    .header-actions {
        display: none !important;
    }

    .primary-navigation {
        padding: 100px 24px 40px;
    }

    .primary-menu {
        width: 100%;
        align-items: center;
        gap: 15px !important;
    }

    .primary-menu a {
        font-size: 2rem !important;
        line-height: 1.1;
        text-align: center;
    }

    /* Hero */

    .hero {
        min-height: 760px !important;
        align-items: flex-end !important;
        background-position: 66% center !important;
    }

    .hero__content {
        width: calc(100% - 30px) !important;
        padding-top: 125px !important;
        padding-bottom: 75px !important;
    }

    .hero__eyebrow {
        max-width: 300px;
        margin-bottom: 18px !important;
        font-size: 0.62rem !important;
        line-height: 1.6;
    }

    .hero__title {
        max-width: 100% !important;
        font-size: clamp(3.5rem, 17vw, 5rem) !important;
        line-height: 0.86 !important;
        letter-spacing: -0.035em !important;
    }

    .hero__description {
        max-width: 100% !important;
        margin-top: 28px !important;
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
    }

    .hero__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 30px !important;
    }

    .hero__actions .button {
        width: 100% !important;
    }

    /* Experience */

    .experience {
        padding: 80px 0 !important;
    }

    .experience__grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .experience h2 {
        font-size: clamp(3rem, 14vw, 4.5rem) !important;
    }

    /* Our Story */

    .story {
        padding: 80px 0 !important;
    }

    .story__grid {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
    }

    .story__image,
    .story__image img {
        width: 100% !important;
        min-height: 0 !important;
        height: 420px !important;
    }

    .story__image img {
        object-fit: cover !important;
    }

    .story__content h2 {
        margin-bottom: 28px !important;
        font-size: clamp(3rem, 14vw, 4.5rem) !important;
        line-height: 0.92 !important;
    }

    .story__copy {
        font-size: 0.94rem !important;
        line-height: 1.75 !important;
    }

    /* Founders heading */

    .founders {
        padding: 82px 0 !important;
    }

    .founders__heading {
        display: block !important;
        margin-bottom: 45px !important;
    }

    .founders__heading .section-label {
        display: block !important;
        margin: 0 0 18px !important;
        font-size: 0.66rem !important;
    }

    .founders__heading h2 {
        max-width: 100% !important;
        margin: 0 0 25px !important;
        font-size: clamp(3rem, 14vw, 4.5rem) !important;
        line-height: 0.9 !important;
    }

    .founders__heading h2 span {
        display: block !important;
        margin-top: 4px !important;
    }

    .founders__intro {
        max-width: 100% !important;
        font-size: 0.93rem !important;
        line-height: 1.75 !important;
    }

    /* Founder cards */

    .founders__grid {
        gap: 22px !important;
    }

    .founder-card,
    .founder-card--reverse {
        display: flex !important;
        min-height: 0 !important;
        flex-direction: column !important;
    }

    .founder-card--reverse .founder-card__image,
    .founder-card--reverse .founder-card__content {
        order: initial !important;
    }

    .founder-card__image {
        width: 100% !important;
        min-height: 0 !important;
        height: 390px !important;
        transform: none !important;
    }

    .founder-card__content {
        width: 100% !important;
        padding: 38px 25px 45px !important;
    }

    .founder-card__content h3 {
        font-size: clamp(2.7rem, 13vw, 4rem) !important;
        line-height: 0.95 !important;
    }

    .founder-card__line {
        margin: 25px 0 !important;
    }

    .founder-card__content > p:last-child {
        font-size: 0.93rem !important;
        line-height: 1.75 !important;
    }

    .founders__statement {
        display: block !important;
        padding-top: 50px !important;
    }

    .founders__statement blockquote {
        margin-bottom: 35px !important;
        font-size: clamp(2.2rem, 11vw, 3.5rem) !important;
    }

    .founders__values {
        align-items: flex-start !important;
    }

    /* Partners */

    .partners {
        padding: 82px 0 !important;
    }

    .partners__heading {
        display: block !important;
        margin-bottom: 42px !important;
    }

    .partners__heading h2 {
        margin-bottom: 25px !important;
        font-size: clamp(3rem, 14vw, 4.5rem) !important;
    }

    .partners__grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact */

    .contact-cta {
        padding: 30px 0 65px !important;
    }

    .contact-cta__box {
        display: block !important;
        min-height: 0 !important;
        padding: 45px 24px !important;
    }

    .contact-cta h2 {
        margin-bottom: 30px !important;
        font-size: clamp(3rem, 14vw, 4.5rem) !important;
    }

    .contact-cta__action .button {
        width: 100% !important;
    }

    /* Footer */

    .site-footer {
        padding-top: 65px !important;
    }

    .site-footer .site-footer__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding-bottom: 45px !important;
    }

    .site-footer__brand {
        grid-column: auto !important;
    }

    .site-footer__logo,
    .site-footer__logo img {
        width: 160px !important;
        height: auto !important;
    }

    .site-footer .site-footer__bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    /* WooCommerce */

    .shop-page,
    .inner-page {
        padding: 110px 0 65px !important;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
}
