*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #1A4432;
    --yellow: #F5C55F;
    --red: #AD312D;
    --cream: #E7DED1;
    --black: #221F20;
    --nav-h: 64px;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: hidden !important;
    cursor: none
}

/* Prevents background page scrolling on mobile menu reveal */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .18s, height .18s;
    mix-blend-mode: difference
}

.hov #cur {
    width: 38px;
    height: 38px
}

/* NAV — logo | links (centered) | cta */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2.5rem;
    background: rgba(34, 31, 32, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 197, 95, .1);
}

.nav-logo {
    font-family: 'Slackey', cursive;
    font-size: 1.8rem;
    letter-spacing: .06em;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    justify-content: end;
    align-items: center;
}

.nav-links a {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .6;
    text-decoration: none;
    transition: opacity .2s, color .2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--yellow)
}

.nav-cta {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
    padding: .46rem 1.3rem;
    border: 1.5px solid var(--yellow);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.nav-cta:hover {
    background: var(--yellow);
    color: var(--black)
}

.nav-social {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
    padding: .46rem 1.3rem;
    border: 1.5px solid var(--yellow);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s
}

.nav-social:hover {
    background: var(--yellow);
    color: var(--black) !important;
}

/* HERO */
#hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 60%, rgba(173, 49, 45, .16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 80% 40%, rgba(26, 68, 50, .55) 0%, transparent 60%),
        var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .032;
    background-image:
        repeating-linear-gradient(0deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px);
}

.hero-kanji {
    position: absolute;
    right: -2%;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    font-family: 'Slackey', cursive;
    font-size: clamp(20vw, 28vw, 28vw);
    line-height: 1;
    color: var(--yellow);
    opacity: .05;
    user-select: none;
    pointer-events: none;
    animation: kfloat 9s ease-in-out infinite;
}

.hero-kanji2 {
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    font-family: 'Slackey', cursive;
    font-size: clamp(20vw, 28vw, 28vw);
    line-height: 1;
    color: var(--yellow);
    opacity: .05;
    user-select: none;
    pointer-events: none;
    animation: kfloat 9s ease-in-out infinite;
    display: none;
}

.hero-kanji3 {
    position: absolute;
    right: 10%;
    top: 110%;
    z-index: 1;
    transform: translateY(-50%);
    font-family: 'Slackey', cursive;
    font-size: clamp(20vw, 28vw, 28vw);
    line-height: 1;
    color: var(--yellow);
    opacity: .05;
    user-select: none;
    pointer-events: none;
    animation: kfloat 9s ease-in-out infinite;
    display: none;
}

@keyframes kfloat {

    0%,
    100% {
        transform: translateY(-50%) rotate(-1.5deg)
    }

    50% {
        transform: translateY(-52%) rotate(1.5deg)
    }
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px
}

@media(min-width:768px) {
    .hero-body {
        padding: 0 4rem
    }
}

.hero-h1 {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.8rem, 7.2vw, 7.8rem);
    line-height: .92;
    letter-spacing: .01em;
    color: var(--yellow);
    text-shadow: 5px 5px 0 var(--red);
    margin-bottom: 1.8rem;
    animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(46px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-sub {
    font-size: clamp(.9rem, 1.3vw, 1.1rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--cream);
    opacity: .72;
    max-width: 500px;
    margin-bottom: 2.8rem;
    animation: fadeUp 1s .22s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-btns {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    animation: fadeUp 1s .4s cubic-bezier(.16, 1, .3, 1) both
}

.btn-fill {
    display: inline-block;
    text-decoration: none;
    background: var(--yellow);
    color: var(--black);
    padding: .85rem 2.2rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    transition: background .2s, transform .12s
}

.btn-fill:hover {
    background: var(--red);
    color: var(--cream);
    transform: translateY(-2px)
}

.btn-ghost {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: var(--cream);
    padding: .85rem 2.2rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid rgba(231, 222, 209, .3);
    transition: border-color .2s, color .2s
}

.btn-ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow)
}

.hero-scroll {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    animation: fadeUp 1s .65s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-scroll span {
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    opacity: .32
}

.scroll-bar {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: sbar 2s ease-in-out infinite
}

@keyframes sbar {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

.hero-locale {
    position: absolute;
    bottom: 2.4rem;
    right: 2.5rem;
    z-index: 2;
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .26
}

/* MARQUEE */
.marquee {
    background: var(--yellow);
    padding: .72rem 0;
    overflow: hidden;
    white-space: nowrap
}

.marquee-track {
    display: inline-flex;
    animation: mq 22s linear infinite
}

@keyframes mq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.mq-item {
    font-family: 'Slackey', cursive;
    font-size: 1.05rem;
    letter-spacing: .1em;
    color: var(--black);
    padding: 0 1.6rem
}

.mq-dot {
    color: var(--red);
    padding: 0 .3rem
}

/* SHARED */
.section-pad {
    padding: 7rem 0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.4rem
}

.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--yellow)
}

/* DUALITY */
#duality {
    background: var(--black);
    position: relative;
    overflow: hidden
}

#duality::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(26, 68, 50, .18) 0%, transparent 70%);
    pointer-events: none
}

.duality-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative
}

.duality-col {
    padding: 5rem 4rem
}

.duality-sep {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(245, 197, 95, .22), transparent);
    transform: translateX(-50%)
}

.duality-kanji {
    font-family: 'Slackey', cursive;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.2rem;
    animation: pulse 4s ease-in-out infinite
}

.duality-tiger .duality-kanji {
    color: var(--red)
}

.duality-dragon .duality-kanji {
    color: var(--yellow)
}

@keyframes pulse {

    0%,
    100% {
        opacity: .8;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.03)
    }
}

.duality-sub {
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .35em;
    text-transform: uppercase;
    opacity: .42;
    margin-bottom: .7rem
}

.duality-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1;
    margin-bottom: 1.3rem
}

.duality-tiger .duality-h {
    color: var(--red);
    text-shadow: 3px 3px 0 rgba(173, 49, 45, .22)
}

.duality-dragon .duality-h {
    color: var(--yellow);
    text-shadow: 3px 3px 0 rgba(245, 197, 95, .22)
}

.duality-p {
    font-size: .95rem;
    line-height: 1.8;
    opacity: .58;
    font-weight: 300;
    max-width: 360px
}

.duality-quote-row {
    grid-column: 1/-1;
    text-align: center;
    padding: 5.5rem 2rem 4rem;
    border-top: 1px solid rgba(245, 197, 95, .08)
}

.duality-quote-row p {
    font-family: 'Slackey', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--yellow);
    opacity: .75;
    letter-spacing: .02em;
    line-height: 1.4
}

.duality-quote-row small {
    display: block;
    margin-top: .9rem;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: .55
}

/* STORY */
#story {
    background: var(--green);
    padding-bottom: 2rem
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.story-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: .95;
    color: var(--yellow);
    text-shadow: 3px 3px 0 var(--red);
    margin-bottom: 2rem
}

.story-p {
    font-size: .98rem;
    line-height: 1.85;
    opacity: .75;
    font-weight: 300;
    margin-bottom: 1.8rem
}

.story-quote {
    border-left: 3px solid var(--yellow);
    padding-left: 1.4rem;
    margin: 2rem 0;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    opacity: .88
}

.story-card {
    background: var(--black);
    padding: 1.8rem;
    position: relative;
    overflow: hidden
}

.story-card::after {
    content: '龍';
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    font-size: 10rem;
    color: var(--yellow);
    opacity: .04;
    line-height: 1;
    font-family: serif;
    pointer-events: none
}

.card-label {
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.8rem;
    opacity: .6
}

.values {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.val {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start
}

.val-n {
    font-family: 'Slackey', cursive;
    font-size: 1.6rem;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 1.9rem
}

.val-h {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .25rem
}

.val-p {
    font-size: .84rem;
    line-height: 1.6;
    opacity: .52;
    font-weight: 300
}

/* MENU */
#menu {
    background: var(--cream);
    color: var(--black)
}

.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem
}

.menu-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: .9;
    text-shadow: 3px 3px 0 var(--red)
}

.menu-desc {
    font-size: .82rem;
    line-height: 1.7;
    max-width: 240px;
    opacity: .52;
    text-align: right;
    font-weight: 300
}

.menu-tabs {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.tab {
    padding: .42rem 1.1rem;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: 1.5px solid rgba(34, 31, 32, .16);
    background: transparent;
    color: var(--black);
    transition: all .2s;
    cursor: none
}

.tab.on,
.tab:hover {
    background: var(--green);
    color: var(--yellow);
    border-color: var(--green)
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px
}

.dish {
    background: var(--green);
    padding: 2.8rem 2.4rem;
    position: relative;
    overflow: hidden;
    transition: transform .28s
}

.dish:hover {
    transform: scale(1.02);
    z-index: 2
}

.dish:nth-child(2) {
    background: var(--black)
}

.dish:nth-child(3) {
    background: var(--red)
}

.dish:nth-child(4) {
    background: var(--black);
    grid-column: span 2
}

.dish:nth-child(5) {
    background: var(--green)
}

.dish-em {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 1.3rem
}

.dish-tag {
    font-size: .6rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .6rem;
    font-weight: 500;
    opacity: .62
}

.dish:nth-child(3) .dish-tag {
    color: var(--cream)
}

.dish-name {
    font-family: 'Slackey', cursive;
    font-size: 1.4rem;
    line-height: 1.1;
    color: var(--yellow);
    margin-bottom: .6rem
}

.dish:nth-child(3) .dish-name {
    color: var(--cream)
}

.dish-desc {
    font-size: .8rem;
    line-height: 1.65;
    opacity: .55;
    font-weight: 300;
    color: var(--cream)
}

.dish-price {
    position: absolute;
    bottom: 1.8rem;
    right: 2.2rem;
    font-family: 'Slackey', cursive;
    font-size: 1.65rem;
    color: var(--yellow);
    letter-spacing: .05em
}

.dish:nth-child(3) .dish-price {
    color: var(--cream)
}

.dish-bg {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    font-size: 8rem;
    opacity: .04;
    font-family: serif;
    line-height: 1;
    color: var(--yellow);
    pointer-events: none
}

/* MISSION */
#mission {
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden
}

#mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(173, 49, 45, .08) 0%, transparent 60%);
    pointer-events: none
}

.mission-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto
}

.mission-eb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.8rem;
    opacity: .62
}

.mission-eb::before,
.mission-eb::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: var(--yellow);
    opacity: .5
}

.mission-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    line-height: .95;
    color: var(--cream);
    margin-bottom: 2.5rem
}

.mission-h em {
    color: var(--yellow);
    font-style: normal;
    text-shadow: 3px 3px 0 var(--red)
}

.mission-p {
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: .58;
    font-weight: 300;
    max-width: 660px;
    margin: 0 auto 3.5rem
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 620px;
    margin: 0 auto
}

.stat-n {
    font-family: 'Slackey', cursive;
    font-size: 3.2rem;
    color: var(--yellow);
    line-height: 1;
    text-shadow: 2px 2px 0 var(--red)
}

.stat-l {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .38;
    margin-top: .45rem
}

/* FRANCHISE */
#franchise {
    background: var(--green);
    position: relative;
    overflow: hidden
}

#franchise::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .025;
    background-image: repeating-linear-gradient(45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
    pointer-events: none
}

.fr-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1
}

.fr-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.8rem, 4.8vw, 4.8rem);
    line-height: .92;
    color: var(--yellow);
    text-shadow: 4px 4px 0 rgba(173, 49, 45, .42);
    margin-bottom: 1.8rem
}

.fr-p {
    font-size: .98rem;
    line-height: 1.8;
    opacity: .7;
    font-weight: 300;
    margin-bottom: 2.5rem
}

.pills {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.pill {
    padding: .38rem .85rem;
    border: 1px solid rgba(245, 197, 95, .22);
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 500
}

.fr-cards {
    display: flex;
    flex-direction: column;
    gap: .45rem
}

.fr-card {
    background: var(--black);
    padding: 2.2rem
}

.fci {
    font-size: 1.3rem;
    margin-bottom: .75rem
}

.fch {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .35rem
}

.fcp {
    font-size: .8rem;
    line-height: 1.6;
    opacity: .48;
    font-weight: 300
}

/* LOCATION */
#location {
    background: var(--black);
    text-align: center
}

.loc-eb {
    font-size: .6rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.3rem;
    opacity: .52
}

.loc-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    color: var(--cream);
    margin-bottom: .8rem
}

.loc-p {
    font-size: .92rem;
    opacity: .42;
    margin-bottom: 3.5rem;
    font-weight: 300
}

.loc-card {
    display: inline-block;
    background: var(--green);
    padding: 2.4rem 3.8rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 460px;
    width: 100%
}

.loc-city {
    font-family: 'Slackey', cursive;
    font-size: 2.4rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin-bottom: .2rem
}

.loc-area {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .42;
    margin-bottom: 1.4rem;
    color: white;

}

.loc-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(245, 197, 95, .1);
    padding: .38rem .9rem;
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--yellow)
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .18
    }
}

.coming {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap
}

.cs-c {
    padding: .82rem 1.6rem;
    border: 1px solid rgba(231, 222, 209, .07);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .28;
    transition: opacity .2s, border-color .2s
}

.cs-c:hover {
    opacity: .55;
    border-color: rgba(245, 197, 95, .22)
}

/* TESTIMONIALS */
#testi {
    background: var(--cream);
    color: var(--black)
}

.testi-h {
    font-family: 'Slackey', cursive;
    font-size: clamp(1.9rem, 3.8vw, 3.3rem);
    color: var(--black);
    margin-bottom: 3.5rem;
    text-align: center
}

.testi-h em {
    color: var(--red);
    font-style: normal
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px
}

.tcard {
    background: var(--black);
    padding: 2.8rem
}

.tcard:nth-child(2) {
    background: var(--green)
}

.tq {
    font-family: 'Slackey', cursive;
    font-size: 3.2rem;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: .9rem;
    opacity: .32
}

.tb {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--cream);
    opacity: .68;
    font-weight: 300;
    margin-bottom: 1.8rem
}

.ta {
    display: flex;
    align-items: center;
    gap: .9rem
}

.tav {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Slackey', cursive;
    font-size: .72rem;
    color: var(--black);
    flex-shrink: 0
}

.tn {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    line-height: 1.3
}

.tm {
    font-size: .62rem;
    opacity: .38;
    color: var(--cream)
}

/* FOOTER */
footer {
    background: var(--black);
    border-top: 1px solid rgba(245, 197, 95, .07);
    padding: 4.5rem 0 2.8rem
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.ft-brand {
    font-family: 'Slackey', cursive;
    font-size: 1.9rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin-bottom: .9rem
}

.ft-desc {
    font-size: .8rem;
    line-height: 1.7;
    opacity: .38;
    font-weight: 300;
    max-width: 260px
}

.ft-col-h {
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.3rem;
    opacity: .52
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.ft-links a {
    font-size: .8rem;
    color: var(--cream);
    opacity: .38;
    text-decoration: none;
    font-weight: 300;
    transition: opacity .2s
}

.ft-links a:hover {
    opacity: .72
}

.ft-bot {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(231, 222, 209, .06);
    padding-top: 1.8rem
}

.ft-copy {
    font-size: .68rem;
    opacity: .22;
    font-weight: 300
}

.ft-soc {
    display: flex;
    gap: 1.4rem
}

.ft-soc a {
    font-size: .62rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .28;
    text-decoration: none;
    transition: opacity .2s, color .2s
}

.ft-soc a:hover {
    opacity: .72;
    color: var(--yellow)
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.rv.in {
    opacity: 1;
    transform: translateY(0)
}

.rv.d2 {
    transition-delay: .2s
}

.rv.d3 {
    transition-delay: .3s
}

/* ===== RESPONSIVE DESIGN ===== */

/* MOBILE: Extra Small (< 480px) */
@media(max-width:479px) {
    nav {
        padding: 0 1.2rem
    }

    .nav-logo {
        font-size: 1.3rem
    }

    .nav-social {
        font-size: .55rem;
        padding: .35rem .8rem
    }

    .hero-body {
        padding: 0 1rem
    }

    .hero-h1 {
        margin-bottom: 1rem
    }

    .hero-sub {
        margin: 20px 0px;
        font-size: .85rem
    }

    .hero-btns {
        gap: .6rem
    }

    .btn-fill,
    .btn-ghost {
        padding: .65rem 1.4rem;
        font-size: .62rem
    }

    .marquee {
        padding: .5rem 0
    }

    .mq-item {
        font-size: .8rem;
        padding: 0 1rem
    }

    .section-pad {
        padding: 3rem 0
    }

    .container {
        padding: 0 1rem;
        max-width: 100%
    }

    .duality-grid {
        grid-template-columns: 1fr
    }

    .duality-col {
        padding: 2rem 1.2rem
    }

    .duality-quote-row {
        padding: 2.5rem 1rem 2rem
    }

    .duality-quote-row p {
        font-size: 1.4rem
    }

    #story {
        padding-bottom: 1rem
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .story-h {
        font-size: 2.50rem;
        margin-bottom: 1.2rem
    }

    .story-br {
        display: none;
    }

    .story-p {
        font-size: .9rem;
        margin-bottom: 1.2rem
    }

    .story-card {
        padding: 1.2rem
    }

    .card-label {
        margin-bottom: 1rem
    }

    .val {
        gap: 0.8rem
    }

    .val-n {
        font-size: 1.3rem
    }

    .val-h {
        font-size: .65rem;
        margin-bottom: .15rem
    }

    .val-p {
        font-size: .75rem;
        line-height: 1.5
    }

    #mission {
        padding: 3rem 0
    }

    .mission-inner {
        max-width: 100%
    }

    .mission-h {
        font-size: 1.8rem;
        margin-bottom: 1.5rem
    }

    .mission-p {
        font-size: .9rem;
        margin-bottom: 2rem
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .stat-n {
        font-size: 2.2rem
    }

    #franchise {
        padding: 3rem 0
    }

    .fr-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .fr-h {
        font-size: 1.8rem;
        margin-bottom: 1.2rem
    }

    .fr-p {
        font-size: .9rem;
        margin-bottom: 1.5rem
    }

    .pills {
        gap: .4rem;
        margin-bottom: 1.5rem
    }

    .pill {
        font-size: .55rem;
        padding: .3rem .6rem
    }

    .fr-card {
        padding: 1.5rem;
        margin-bottom: .3rem
    }

    .fch {
        font-size: .62rem
    }

    .fcp {
        font-size: .75rem
    }

    #location {
        padding: 3rem 0
    }

    .loc-h {
        font-size: 1.8rem;
        margin-bottom: .6rem
    }

    .loc-p {
        font-size: .85rem;
        margin-bottom: 2rem
    }

    .loc-card {
        padding: 1.5rem 2rem;
        max-width: 100%
    }

    .loc-city {
        font-size: 1.8rem
    }

    .loc-area {
        font-size: .6rem;
        margin-bottom: 1rem
    }

    #testi {
        padding: 3rem 0
    }

    .testi-h {
        font-size: 1.5rem;
        margin-bottom: 2rem
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 1px
    }

    .tcard {
        padding: 1.8rem
    }

    .tq {
        font-size: 2.2rem;
        margin-bottom: .6rem
    }

    .tb {
        font-size: .8rem;
        margin-bottom: 1.2rem
    }

    footer {
        padding: 2rem 0 1.5rem
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem
    }

    .ft-brand {
        font-size: 1.3rem;
        margin-bottom: .6rem
    }

    .ft-desc {
        font-size: .75rem
    }

    .ft-col-h {
        font-size: .55rem;
        margin-bottom: 1rem
    }

    .ft-links {
        gap: .5rem
    }

    .ft-links a {
        font-size: .7rem
    }

    .ft-bot {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.2rem
    }

    .ft-copy {
        font-size: .6rem
    }

    .ft-soc {
        gap: 1rem
    }

    .ft-soc a {
        font-size: .55rem
    }
}

@media (max-width:767px) {
    .hero-kanji {
        display: none;
    }

    .hero-kanji2,
    .hero-kanji3 {
        display: block;
    }

    #hero {
        min-height: 400px;
        padding: 0px;
    }

    .duality-col-sub {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-section-about-about{
        min-height: 40vh !important;
    }

    .section-about-pad-about {
        padding: 2rem 2rem !important;
    }
}

/* TABLET: Small (480px - 767px) */
@media(min-width:480px) and (max-width:767px) {
    nav {
        padding: 0 1.6rem
    }

    .nav-logo {
        font-size: 1.4rem
    }

    .nav-social {
        font-size: .6rem;
        padding: .4rem 1rem
    }

    .hero-body {
        padding: 0 1.5rem
    }

    .hero-h1 {
        margin-bottom: 1.2rem
    }

    .hero-sub {
        margin-bottom: 2rem
    }

    .hero-btns {
        gap: .7rem
    }

    .btn-fill,
    .btn-ghost {
        padding: .75rem 1.8rem;
        font-size: .65rem
    }

    .section-pad {
        padding: 4rem 0
    }

    .container {
        padding: 0 1.5rem;
        max-width: 100%
    }

    .duality-grid {
        grid-template-columns: 1fr
    }

    .duality-col {
        padding: 3rem 2rem
    }

    .duality-quote-row {
        padding: 3.5rem 1.5rem 2.5rem
    }

    .duality-quote-row p {
        font-size: 1.6rem
    }

    #story {
        padding-bottom: 1.5rem
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .story-h {
        font-size: 2rem;
        margin-bottom: 1.5rem
    }

    .story-card {
        padding: 1.5rem
    }

    .card-label {
        margin-bottom: 1.2rem
    }

    .val {
        gap: 1rem
    }

    .val-n {
        font-size: 1.4rem
    }

    #mission {
        padding: 4rem 0
    }

    .mission-h {
        font-size: 2rem;
        margin-bottom: 2rem
    }

    .mission-p {
        font-size: .95rem
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    #franchise {
        padding: 4rem 0
    }

    .fr-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .fr-h {
        font-size: 2rem;
        margin-bottom: 1.5rem
    }

    .fr-card {
        padding: 2rem;
        margin-bottom: .4rem
    }

    #location {
        padding: 4rem 0
    }

    .loc-h {
        font-size: 2rem;
        margin-bottom: 1rem
    }

    .loc-card {
        padding: 2rem 3rem
    }

    .loc-city {
        font-size: 2rem
    }

    #testi {
        padding: 4rem 0
    }

    .testi-h {
        font-size: 1.8rem;
        margin-bottom: 2.5rem
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px
    }

    .tcard {
        padding: 2.2rem
    }

    footer {
        padding: 3rem 0 2rem
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem
    }

    .ft-col-h {
        font-size: .58rem;
        margin-bottom: 1.1rem
    }

    .ft-soc {
        gap: 1.2rem
    }
}

/* DESKTOP: Medium and above (768px+) */
@media(min-width:768px) {
    nav {
        padding: 0 3rem
    }

    .hero-body {
        padding: 0 4rem
    }

    .section-pad {
        padding: 7rem 0
    }

    .container {
        padding: 0 3rem;
        max-width: 1200px
    }

    .duality-grid {
        grid-template-columns: 1fr 1fr
    }

    .duality-col {
        padding: 5rem 4rem
    }

    .duality-quote-row {
        padding: 5.5rem 2rem 4rem
    }

    #story {
        padding-bottom: 2rem
    }

    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem
    }

    .story-h {
        font-size: clamp(2.4rem, 4.5vw, 3.8rem);
        margin-bottom: 2rem
    }

    .story-card {
        padding: 1.8rem
    }

    #mission {
        padding: 7rem 0
    }

    .mission-h {
        font-size: clamp(2.2rem, 5.5vw, 4.8rem);
        margin-bottom: 2.5rem
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem
    }

    #franchise {
        padding: 7rem 0
    }

    .fr-grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 5rem
    }

    .fr-h {
        font-size: clamp(2.8rem, 4.8vw, 4.8rem);
        margin-bottom: 1.8rem
    }

    #location {
        padding: 7rem 0
    }

    .loc-h {
        font-size: clamp(2.2rem, 4.5vw, 4rem);
        margin-bottom: .8rem
    }

    #testi {
        padding: 7rem 0
    }

    .testi-h {
        font-size: clamp(1.9rem, 3.8vw, 3.3rem);
        margin-bottom: 3.5rem
    }

    .testi-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    footer {
        padding: 4.5rem 0 2.8rem
    }

    .ft-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3.5rem;
        margin-bottom: 3.5rem
    }
}

/* Extra Large (1200px+) - Fine tuning */
@media(min-width:1200px) {
    .container {
        max-width: 1200px;
        margin: 0 auto
    }

    nav {
        padding: 0 4rem
    }
}

/* Small Tablets (600px - 767px) */
@media(min-width:600px) and (max-width:767px) {
    .story-grid {
        grid-template-columns: 1fr
    }

    .fr-grid {
        grid-template-columns: 1fr
    }

    .duality-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* ==========================================================================
   FIXED MOBILE NAVBAR RESPONSIVE OVERRIDES
   ========================================================================== */

/* Hamburger Toggle Button Layout Setup */
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 32px;
    cursor: pointer;
    z-index: 1050;
    /* Keeps button stacked above the dark sidebar panel */
    position: relative;
}

/* Mobile Media Viewport Layer Strategy */
@media (max-width: 991px) {

    nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1001;
    }

    .menu-toggle {
        display: block;
        color: #f5c55f;
    }

    .nav-links {
        display: none;
        /* 1. COMPLETELY HIDES THE BOX FROM THE VIEWPORT ON LOAD */
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        /* Ready for when flex turns back on */
        gap: 25px;
        padding: 100px 30px;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        justify-content: center;
        /* Smooth animation configurations */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        opacity: 0;
    }

    /* 2. THE TRANSITION STATE WHEN HANDSHAKING WITH COUPLING ACTIVE CLASS */
    .nav-links.active {
        display: flex;
        /* Overrides display: none instantly when clicked */
        right: 0;
        opacity: 1;
    }

    /* Hide individual links from view when the drawer container is closed */
    .nav-links li {
        opacity: 0;
        visibility: hidden;
        transform: translateX(15px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Cascade entry animation sequence down individual text items when active */
    .nav-links.active li {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Smooth staggered item load speed variables */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.10s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.20s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.30s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }


    /* Background Dimmer Overlay Layer */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        /* Slightly darker mask layer for high contrast */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        pointer-events: none;
        z-index: 999;
        /* Sits cleanly beneath sidebar panel container but above canvas content */
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* about */

/* HERO section-about */
.hero-section-about-about {
    position: relative;
    height: auto;
    min-height: 60vh;
    display: flex;
    align-items: left;
    padding-top: var(--nav-h);
    padding-bottom: 3rem;
    overflow: hidden;
}

.hero-bg-about {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 60%, rgba(173, 49, 45, .16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 80% 40%, rgba(26, 68, 50, .55) 0%, transparent 60%),
        var(--black);
}

.hero-grid-about {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .032;
    background-image:
        repeating-linear-gradient(0deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px);
}

.hero-content-about {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem
}

.hero-title-about {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: .95;
    letter-spacing: .01em;
    color: var(--yellow);
    text-shadow: 3px 3px 0 var(--red);
    margin-bottom: 1.5rem;
}

.hero-desc-about {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--cream);
    opacity: .8;
    max-width: 700px;
}

/* section-aboutS */
.section-about-pad-about {
    padding: 6rem 2rem
}

.container-about {
    max-width: 1100px;
    margin: 0 auto
}

.section-about-bg-dark-about {
    background: var(--black)
}

.section-about-bg-green-about {
    background: var(--green)
}

/* CONTENT section-aboutS */
.content-section-about-about {
    margin-bottom: 4rem
}

.section-about-title-about {
    font-family: 'Slackey', cursive;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-about-subtitle-about {
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: .7;
    margin-bottom: 1rem;
}

.section-about-text-about {
    font-size: .95rem;
    line-height: 1.85;
    opacity: .8;
    margin-bottom: 1.5rem;
}

.section-about-text-about em {
    color: var(--yellow);
    font-style: italic
}

/* DUALITY section-about */
.duality-wrap-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.visit-us {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section-visit-us {
    padding: 10px !important;
}

@media(max-width:768px) {
    .duality-wrap-about {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .duality-wrap {
        display: block;
    }

    .visit-us {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .Mission-sec {
        display: block !important;
    }

}

.duality-col-about {
    padding: 2rem
}

.duality-kanji-about {
    font-family: 'Slackey', cursive;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1rem;
    animation: pulse 4s ease-in-out infinite;
}

.duality-tiger-about .duality-kanji-about {
    color: var(--red)
}

.duality-dragon-about .duality-kanji-about {
    color: var(--yellow)
}

@keyframes pulse {

    0%,
    100% {
        opacity: .8;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }
}

.duality-h-about {
    font-family: 'Slackey', cursive;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
    margin-bottom: 1.2rem;
    color: var(--cream);
}

.duality-p-about {
    font-size: .95rem;
    line-height: 1.8;
    opacity: .75
}

/* VALUES GRID */
.values-grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media(max-width:768px) {
    .values-grid-about {
        grid-template-columns: 1fr
    }
}

.value-item-about {
    padding: 2rem;
    background: rgba(245, 197, 95, .08);
    border: 1px solid rgba(245, 197, 95, .15);
    border-radius: 2px
}

.value-number-about {
    font-family: 'Slackey', cursive;
    font-size: 2rem;
    color: var(--red);
    margin-bottom: .5rem;
}

.value-title-about {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .8rem;
}

.value-desc-about {
    font-size: .9rem;
    line-height: 1.7;
    opacity: .75
}

/* HIGHLIGHT QUOTE */
.highlight-quote-about {
    background: rgba(173, 49, 45, .1);
    border-left: 4px solid var(--red);
    padding: 2rem;
    margin: 3rem 0;
    font-family: 'Slackey', cursive;
    font-size: 1.3rem;
    color: var(--cream);
    opacity: .85;
    line-height: 1.6;
}

/* STATS */
.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media(max-width:768px) {
    .stats-grid-about {
        grid-template-columns: 1fr
    }
}

.stat-box-about {
    text-align: center
}

.stat-number-about {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    line-height: 1;
}

.stat-label-about {
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: .6;
    margin-top: .8rem;
}

/* CTA section-about */
.cta-section-about-about {
    text-align: center;
    background: rgba(245, 197, 95, .08);
    padding: 3rem 2rem;
    border: 1px solid rgba(245, 197, 95, .15);
    margin: 3rem 0;
}

.cta-title-about {
    font-family: 'Slackey', cursive;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--yellow);
    margin-bottom: 1rem;
}

.cta-text-about {
    font-size: .95rem;
    opacity: .75;
    margin-bottom: 2rem
}

.cta-btn-about {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: .85rem 2.2rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .12s;
}

.cta-btn-about:hover {
    background: var(--red);
    color: var(--cream);
    transform: translateY(-2px)
}

/* FOOTER */

.ft-brand-about {
    font-family: 'Slackey', cursive;
    font-size: 1.5rem;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin-bottom: 1rem;
}

.ft-text-about {
    font-size: .85rem;
    opacity: .7;
    line-height: 1.6
}

.ft-text-about a {
    color: var(--yellow);
    text-decoration: none
}

.ft-text-about a:hover {
    text-decoration: underline
}

/* ===== RESPONSIVE DESIGN ===== */

/* MOBILE: Extra Small (< 480px) */
@media(max-width:479px) {

    .about-header {
        padding: 3rem 1rem
    }

    .about-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem
    }

    .about-content {
        padding: 2rem 1rem
    }

    .section-about {
        margin-bottom: 1.5rem
    }

    .section-about h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem
    }

    .section-about p {
        font-size: .85rem;
        line-height: 1.6;
        margin-bottom: 0.8rem
    }

    .ft-brand-about {
        font-size: 1.2rem;
        margin-bottom: 0.8rem
    }

    .ft-text-about {
        font-size: .75rem
    }
}

/* TABLET: Small (480px - 767px) */
@media(min-width:480px) and (max-width:767px) {
    .about-header {
        padding: 4rem 1.5rem
    }

    .about-header h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem
    }

    .about-content {
        padding: 3rem 1.5rem
    }

    .section-about {
        margin-bottom: 2rem
    }

    .section-about h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem
    }

    .section-about p {
        font-size: .9rem;
        line-height: 1.7;
        margin-bottom: 1rem
    }

    .ft-brand-about {
        font-size: 1.3rem
    }

    .ft-text-about {
        font-size: .8rem
    }
}

/* DESKTOP: Medium and above (768px+) */
@media(min-width:768px) {
    .about-header {
        padding: 6rem 3rem
    }

    .about-header h1 {
        font-size: clamp(2.8rem, 5.5vw, 4.8rem);
        margin-bottom: 1.8rem
    }

    .about-content {
        padding: 5rem 3rem;
        max-width: 1200px;
        margin: 0 auto
    }

    .section-about {
        margin-bottom: 3rem
    }

    .section-about h2 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        margin-bottom: 1.5rem
    }

    .section-about p {
        font-size: .95rem;
        line-height: 1.8;
        margin-bottom: 1.5rem
    }

    .ft-brand-about {
        font-size: 1.5rem
    }

    .ft-text-about {
        font-size: .85rem
    }
}

/* franchise */

/* HERO SECTION */
.hero-section-franchise {
    position: relative;
    height: auto;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    padding-bottom: 3rem;
    overflow: hidden;
}

.hero-bg-franchise {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 60%, rgba(173, 49, 45, .16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 80% 40%, rgba(26, 68, 50, .55) 0%, transparent 60%),
        var(--black);
}

.hero-grid-franchise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .032;
    background-image:
        repeating-linear-gradient(0deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px);
}

.hero-content-franchise {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center
}

.hero-title-franchise {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: .95;
    letter-spacing: .01em;
    color: var(--yellow);
    text-shadow: 3px 3px 0 var(--red);
    margin-bottom: 1.5rem;
}

.hero-desc-franchise {
    font-size: clamp(.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--cream);
    opacity: .75;
}

/* FORM SECTION */
.form-section {
    position: relative;
    padding: 5rem 2rem;
    background: var(--black);
}

.form-container {
    max-width: 900px;
    margin: 0 auto
}

.form-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.form-intro h2 {
    font-family: 'Slackey', cursive;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--red);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: .95rem;
    opacity: .75;
    max-width: 600px;
    margin: 0 auto;
}

/* FORM STYLING */
.form-group {
    margin-bottom: 2rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

@media(max-width:768px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: .6rem;
    opacity: .85;
}

input,
textarea,
select {
    width: 100%;
    padding: .85rem 1rem;
    background: rgba(245, 197, 95, .05);
    border: 1px solid rgba(245, 197, 95, .15);
    color: var(--cream);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: .95rem;
    line-height: 1.5;
    transition: border-color .2s, background .2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(245, 197, 95, .08);
}

textarea {
    resize: vertical;
    min-height: 120px
}

/* SECTION HEADERS */
.form-section-header {
    font-family: 'Slackey', cursive;
    font-size: 1.3rem;
    color: var(--yellow);
    margin: 3rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(245, 197, 95, .2);
}

/* BUTTONS */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-submit {
    display: inline-block;
    text-decoration: none;
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .12s;
    font-family: 'IBM Plex Sans', sans-serif;
}

.btn-submit:hover {
    background: var(--red);
    color: var(--cream);
    transform: translateY(-2px)
}

.btn-back {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: var(--cream);
    padding: 1rem 2.5rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid rgba(231, 222, 209, .3);
    transition: border-color .2s, color .2s;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
}

.btn-back:hover {
    border-color: var(--yellow);
    color: var(--yellow)
}

/* FOOTER */
footer {
    background: var(--green);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem
}

.ft-text {
    font-size: .85rem;
    opacity: .7;
    line-height: 1.6
}

.ft-text a {
    color: var(--yellow);
    text-decoration: none
}

.ft-text a:hover {
    text-decoration: underline
}

/* coming soon */

/* COMING SOON SECTION */
.coming-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.coming-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 60%, rgba(173, 49, 45, .16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 70% at 80% 40%, rgba(26, 68, 50, .55) 0%, transparent 60%),
        var(--black);
}

.coming-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .032;
    background-image:
        repeating-linear-gradient(0deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px),
        repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 1px, transparent 1px, transparent 48px);
}

.coming-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.coming-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.coming-title {
    font-family: 'Slackey', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: .95;
    color: var(--yellow);
    text-shadow: 3px 3px 0 var(--red);
    margin-bottom: 1.5rem;
}

.coming-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--cream);
    opacity: .8;
    margin-bottom: 2rem;
}

.coming-text {
    font-size: .95rem;
    line-height: 1.8;
    opacity: .7;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, transform .12s;
    font-family: 'IBM Plex Sans', sans-serif;
}

.coming-cta:hover {
    background: var(--red);
    color: var(--cream);
    transform: translateY(-2px);
}

/* contact form */
/* ==========================================================================
   TAAMPOPO BOUTIQUE CONTACT SECTION STYLE SHEET
   ========================================================================== */

.taampopo-contact-section {
    background-color: #0d1310;
    /* Deep street green-black ambient match */
    padding: 100px 4%;
    color: #ffffff;
    border-top: 1px solid rgba(245, 197, 95, 0.15);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Left Typography Branding Column */
.contact-info-block .section-tag {
    color: #f5c55f;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.contact-info-block .contact-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
}

.contact-info-block .contact-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #a0a5a2;
    margin-bottom: 40px;
    max-width: 440px;
}

.contact-info-block .quick-details p {
    margin: 5px 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-block .quick-details strong {
    color: #f5c55f;
}

/* Right Side Form Panel Layout */
.contact-form-block {
    background: #060907;
    /* Darker core card element background layer */
    border: 1px solid rgba(245, 197, 95, 0.15);
    padding: 50px;
    border-radius: 4px;
}

.taampopo-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group-row {
    display: flex;
    gap: 25px;
    width: 100%;
}

.field-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Industrial Input Styling Matrix */
.field-wrapper label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f5c55f;
}

.field-wrapper input,
.field-wrapper textarea {
    background-color: #0d1310;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Remove default mobile browser styles */
.field-wrapper input:focus,
.field-wrapper textarea:focus {
    outline: none;
    border-color: #f5c55f;
    background-color: #121a16;
    box-shadow: 0 0 0 4px rgba(245, 197, 95, 0.08);
}

/* Match uppercase style placeholder attributes */
.field-wrapper input::placeholder,
.field-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Button UI Action States */
.form-submit-wrapper {
    margin-top: 10px;
}

.taampopo-btn-submit {
    background-color: #f5c55f;
    color: #000000;
    border: none;
    padding: 18px 40px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.taampopo-btn-submit .btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.taampopo-btn-submit:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.taampopo-btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.captcha-ques {
    display: flex;
    justify-content: space-evenly;
}

.gap-20 {
    gap: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 991px) {
    .taampopo-contact-section {
        padding: 100px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        /* Stack both sections into a single column layout */
        gap: 50px;
    }

    .contact-info-block .contact-title {
        font-size: 2.8rem;
    }

    .contact-form-block {
        padding: 35px 12px;
    }

    .captcha-ques {
        display: block;
    }
}

@media (max-width: 576px) {
    .form-group-row {
        flex-direction: column;
        /* Stack input groups vertically on small mobile viewports */
        gap: 30px;
    }

    .taampopo-btn-submit {
        width: 100%;
        justify-content: center;
        /* Expand button width to fill the frame */
    }
}