/* ==========================================================================
  AOZORO — Sushi & Asian Cuisine
  Design tokens
  ========================================================================== */
:root {
    --ink: #110C0B;
    /* near-black warm charcoal, base background */
    --ink-panel: #1B1211;
    /* slightly lifted panel background */
    --ink-line: rgba(233, 220, 197, 0.12);
    --crimson: #9E1B2E;
    /* deep lacquer red, pulled from the dragon mark */
    --crimson-2: #C4283E;
    /* brighter red for hovers / accents */
    --gold: #C9A961;
    /* warm gold, pulled from the card */
    --gold-soft: #E7D8A9;
    --cream: #F3ECDD;
    /* primary text on dark */
    --cream-dim: #C9BEA9;
    /* secondary text on dark */
    --font-display: 'Cormorant Garamond', serif;
    --font-label: 'Cinzel', serif;
    --font-body: 'Work Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--cream);
    font-weight: 700;
    letter-spacing: .01em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    width: auto;
}


.eyebrow {
    font-family: var(--font-label);
    font-size: .72rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .9rem;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.section {
    padding: 6.5rem 0;
    position: relative;
}

.section-tight {
    padding: 4rem 0;
}

.bg-panel {
    background: var(--ink-panel);
}

.btn-gold {
    font-family: var(--font-label);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border: none;
    padding: .95rem 2.2rem;
    border-radius: 2px;
    transition: transform .25s ease, box-shadow .25s ease;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 169, 97, 0.28);
    color: var(--ink);
}

.btn-outline-cream {
    font-family: var(--font-label);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    background: transparent;
    border: 1px solid rgba(243, 236, 221, 0.5);
    padding: .9rem 2.1rem;
    border-radius: 2px;
    transition: all .25s ease;
    display: inline-block;
}

.btn-outline-cream:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

/* ---------------- Navbar ---------------- */
.aozoro-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.15rem 0;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
    background: linear-gradient(to bottom, rgba(17, 12, 11, 0.85), rgba(17, 12, 11, 0));
}

.aozoro-nav.scrolled {
    background: rgba(17, 12, 11, 0.96);
    backdrop-filter: blur(6px);
    padding: .7rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid var(--ink-line);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 50%;
}

.brand-mark span {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

.brand-word {
    line-height: 1.05;
}

.brand-word .top {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--cream);
}

.brand-word .bottom {
    font-family: var(--font-label);
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 3;
}

.aozoro-nav .nav-link {
    font-family: var(--font-label);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin: 0 1rem;
    padding: .4rem 0 !important;
    position: relative;
    transition: color .2s ease;
}

.aozoro-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .25s ease;
}

.aozoro-nav .nav-link:hover,
.aozoro-nav .nav-link.active {
    color: var(--cream);
}

.aozoro-nav .nav-link:hover::after,
.aozoro-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler .bi {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ---------------- Hero / carousel ---------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
    height: 100vh;
    min-height: 620px;
}

.hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to top, rgba(17, 12, 11, 0.95) 0%, rgba(17, 12, 11, 0.35) 46%, rgba(17, 12, 11, 0.55) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;  /* Changed from center to flex-end */
    text-align: center;
    padding: 0 1rem 8rem
}

/*.hero-ring {*/
/*    width: 108px;*/
/*    height: 108px;*/
/*    border-radius: 50%;*/
/*    border: 1px solid var(--gold);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin-bottom: 1.6rem;*/
/*    animation: spin-slow 34s linear infinite;*/
/*}*/

/*.hero-ring::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 128px;*/
/*    height: 128px;*/
/*    border-radius: 50%;*/
/*    border: 1px solid rgba(201, 169, 97, .35);*/
/*}*/

/*.hero-ring span {*/
/*    font-family: var(--font-display);*/
/*    font-weight: 700;*/
/*    color: var(--gold);*/
/*    font-size: 1.7rem;*/
/*}*/

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1;
    margin-bottom: 1.1rem;
    letter-spacing: .02em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-family: var(--font-label);
    font-size: .82rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 2.4rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3.5rem
}
.scroll-cue {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--cream-dim);
    font-family: var(--font-label);
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

/*.hero .carousel-indicators {*/
/*    z-index: 4;*/
/*    bottom: 2.4rem;*/
/*}*/

/*.hero .carousel-indicators [data-bs-target] {*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 50%;*/
/*    background: var(--gold);*/
/*    opacity: .4;*/
/*    margin: 0 6px;*/
/*}*/

/*.hero .carousel-indicators .active {*/
/*    opacity: 1;*/
/*}*/

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 6%;
    z-index: 4;
    opacity: .6;
}

/* ---------------- Seal divider (signature element) ---------------- */
.seal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin: 0 auto;
    padding: 0;
}

.seal-divider .wave {
    width: 140px;
    height: 14px;
    opacity: .55;
}

.seal-divider .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--crimson-2);
    box-shadow: 0 0 0 3px rgba(158, 27, 46, 0.18);
}

/* ---------------- Welcome / split section ---------------- */
.split-media {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.split-media img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.split-media .frame {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 169, 97, .55);
    pointer-events: none;
}

.split-text p {
    color: var(--cream-dim);
    font-size: 1.02rem;
}

.split-text h2 {
    font-size: clamp(2.1rem, 3.4vw, 2.9rem);
    margin-bottom: 1.2rem;
}

.stat-row {
    display: flex;
    gap: 2.4rem;
    margin-top: 2.2rem;
}

.stat-row .num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.stat-row .label {
    font-size: .76rem;
    letter-spacing: .08em;
    color: var(--cream-dim);
    text-transform: uppercase;
    margin-top: .3rem;
}

/* ---------------- Dish cards ---------------- */
.dish-card {
    position: relative;
    border: 1px solid var(--ink-line);
    background: var(--ink-panel);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease;
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 97, .5);
}

.dish-media {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.dish-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.dish-card:hover .dish-media img {
    transform: scale(1.08);
}

.dish-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-label);
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: .3rem .7rem;
}

.dish-body {
    padding: 1.4rem 1.5rem 1.6rem;
}

.dish-body h4 {
    font-size: 1.4rem;
    margin-bottom: .4rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
}

.dish-price {
    font-family: var(--font-label);
    font-size: .95rem;
    color: var(--gold);
    white-space: nowrap;
}

.dish-body p {
    color: var(--cream-dim);
    font-size: .92rem;
    margin: 0;
}

/* ---------------- Gallery strip ---------------- */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-strip .g-item {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.gallery-strip .g-item:nth-child(1) {
    grid-row: span 2;
    height: 646px;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    filter: grayscale(.15) brightness(.92);
}

.gallery-strip .g-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0) brightness(1);
}

.gallery-strip .g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 12, 11, .5), transparent 60%);
}

/* ---------------- Quote ---------------- */
.quote-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    line-height: .5;
    display: block;
    margin-bottom: 1rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-style: italic;
    color: var(--cream);
}

.quote-by {
    margin-top: 1.4rem;
    font-family: var(--font-label);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---------------- CTA band ---------------- */
.cta-band {
    background: radial-gradient(120% 180% at 50% 0%, var(--crimson-2) 0%, var(--crimson) 45%, #6d1220 100%);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    color: #fff;
    margin-bottom: 1.4rem;
}

.cta-band .eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.cta-band .eyebrow::before {
    background: rgba(255, 255, 255, 0.6);
}

.cta-band .btn-gold {
    background: #fff;
}

/* ---------------- Footer ---------------- */
footer {
    background: #0B0807;
    padding: 4.5rem 0 1.6rem;
    border-top: 1px solid var(--ink-line);
}

footer h5 {
    font-family: var(--font-label);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
}

footer p,
footer li {
    color: var(--cream-dim);
    font-size: .92rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: .7rem;
}

footer a.flink {
    color: var(--cream-dim);
    transition: color .2s ease;
}

footer a.flink:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--ink-line);
    margin-top: 3rem;
    padding-top: 1.6rem;
    font-size: .8rem;
    color: var(--cream-dim);
}

.social-row a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--ink-line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .6rem;
    color: var(--cream-dim);
    transition: all .2s ease;
}

.social-row a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------------- Page header (About / Contact) ---------------- */
.page-header {
    position: relative;
    height: 62vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header .hero-overlay {
    background: linear-gradient(to top, var(--ink) 4%, rgba(17, 12, 11, .55) 60%, rgba(17, 12, 11, .75) 100%);
}

.page-header-content {
    position: relative;
    z-index: 3;
}

.page-header-content h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
}

.breadcrumb-row {
    font-family: var(--font-label);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.breadcrumb-row a {
    color: var(--gold);
}

/* ---------------- About page bits ---------------- */
.value-card {
    text-align: center;
    padding: 2.6rem 1.6rem;
    border: 1px solid var(--ink-line);
    height: 100%;
    transition: border-color .3s ease, transform .3s ease;
}

.value-card:hover {
    border-color: rgba(201, 169, 97, .5);
    transform: translateY(-4px);
}

.value-card .icon-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    font-size: 1.5rem;
    color: var(--gold);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: .7rem;
}

.value-card p {
    color: var(--cream-dim);
    font-size: .92rem;
    margin: 0;
}

.team-card {
    text-align: center;
}

.team-photo {
    height: 340px;
    overflow: hidden;
    margin-bottom: 1.3rem;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.35);
    transition: filter .4s ease, transform .5s ease;
}

.team-card:hover .team-photo img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 1.35rem;
    margin-bottom: .2rem;
}

.team-role {
    font-family: var(--font-label);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
    display: block;
}

.team-card p {
    color: var(--cream-dim);
    font-size: .88rem;
    padding: 0 .6rem;
}

.timeline {
    border-left: 1px solid var(--ink-line);
    padding-left: 2.2rem;
    position: relative;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.6rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.51rem;
    top: .35rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.timeline-year {
    font-family: var(--font-label);
    font-size: .72rem;
    letter-spacing: .2em;
    color: var(--gold);
    text-transform: uppercase;
}

.timeline-item h4 {
    font-size: 1.3rem;
    margin: .4rem 0 .5rem;
}

.timeline-item p {
    color: var(--cream-dim);
    margin: 0;
    font-size: .92rem;
}

/* ---------------- Contact page ---------------- */
.contact-card {
    border: 1px solid var(--ink-line);
    background: var(--ink-panel);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: border-color .3s ease, transform .3s ease;
}

.contact-card:hover {
    border-color: rgba(201, 169, 97, .5);
    transform: translateY(-4px);
}

.contact-card .icon-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    color: var(--gold);
}

.contact-card h4 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.contact-card p,
.contact-card a {
    color: var(--cream-dim);
    font-size: .94rem;
    margin: 0;
}

.contact-card a:hover {
    color: var(--gold);
}

.form-control-dark {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink-line);
    color: var(--cream);
    border-radius: 0;
    padding: .85rem .1rem;
    font-size: .95rem;
}

.form-control-dark::placeholder {
    color: var(--cream-dim);
    opacity: .7;
}

.form-control-dark:focus {
    background: transparent;
    color: var(--cream);
    box-shadow: none;
    border-bottom-color: var(--gold);
}

.form-label-min {
    font-family: var(--font-label);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
    display: block;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: .85rem 0;
    border-bottom: 1px solid var(--ink-line);
    color: var(--cream-dim);
    font-size: .95rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--cream);
    font-family: var(--font-label);
    letter-spacing: .06em;
    font-size: .85rem;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.map-frame {
    position: relative;
    height: 100%;
    min-height: 320px;
    border: 1px solid var(--ink-line);
    overflow: hidden;
}

.map-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.6) brightness(.55) sepia(.15);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 0;
    background: var(--crimson-2);
    transform-origin: bottom center;
    rotate: -45deg;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin i {
    rotate: 45deg;
    color: #fff;
    font-size: 1.1rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991.98px) {
    .aozoro-nav {
        background: rgba(17, 12, 11, 0.96);
    }

    .aozoro-nav .nav-link {
        margin: .35rem 0;
    }

    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-strip .g-item:nth-child(1) {
        grid-row: span 1;
        height: 320px;
    }

    .split-media img {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-row {
        gap: 1.4rem;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-ring {
        animation: none;
    }

    .scroll-cue .line {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.brand-lockup{ display:flex; align-items:center; gap:.75rem; }
.brand-logo-img{
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
}
.footer-logo-img{ height: 66px; }
@media (max-width: 575.98px){
    .brand-logo-img{ height: 44px; }
    .footer-logo-img{ height: 54px; }
}