* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0f0c0b;
    color: #fff;
    font-family: 'Jost', sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 82px;
    padding: 0 60px;
    background: rgba(15, 12, 11, 0.82);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    color: #ffd166;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    color: #f7eee7;
    text-decoration: none;
    font-size: 15px;
}

.nav-links a:hover {
    color: #ffd166;
}

.order-btn,
.main-btn,
.secondary-btn {
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
}

.order-btn,
.main-btn {
    background: #ffd166;
    color: #111;
}

.order-btn {
    padding: 12px 24px;
}

.main-btn,
.secondary-btn {
    padding: 16px 32px;
}

.secondary-btn {
    color: #ffd166;
    border: 1px solid rgba(255, 209, 102, 0.7);
}

.hero {
    min-height: 100vh;
    padding: 120px 25px 60px;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.88)),
        radial-gradient(circle at top, #3a1d18, #0f0c0b 68%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "寿司";
    position: absolute;
    font-size: 230px;
    color: rgba(255, 209, 102, 0.045);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1.1s ease forwards;
}

.small-title,
.section-label {
    color: #e16e96;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 16px;
}

.hero h1,
.best-sellers h2,
.why-us h2,
.people-section h2 {
    font-family: 'Cormorant Garamond', serif;
}

.hero h1 {
    color: #ffd166;
    font-size: 92px;
    line-height: 0.95;
    margin-bottom: 24px;
}

.subtitle {
    color: #f0ded4;
    font-size: 25px;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.best-sellers,
.why-us,
.people-section {
    padding: 110px 60px;
    text-align: center;
}

.best-sellers h2,
.why-us h2,
.people-section h2 {
    font-size: 52px;
    margin-bottom: 42px;
}

.seller-grid,
.why-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    gap: 24px;
}

.seller-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-grid {
    grid-template-columns: repeat(4, 1fr);
}

.seller-card,
.why-grid div,
.people-box {
    background: #1a1412;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
}

.seller-card {
    padding: 38px 30px;
}

.seller-card span {
    color: #e16e96;
    font-size: 14px;
    letter-spacing: 2px;
}

.seller-card h3,
.why-grid h3 {
    color: #ffd166;
    margin: 16px 0;
    font-size: 24px;
}

.seller-card p,
.why-grid p,
.people-box p {
    color: #d8c9c0;
    line-height: 1.7;
}

.why-us {
    background: #15100e;
}

.why-grid div {
    padding: 30px 24px;
}

.people-box {
    max-width: 850px;
    margin: auto;
    padding: 55px 45px;
}

.people-box p {
    font-size: 18px;
}

footer {
    padding: 32px;
    background: #090706;
    text-align: center;
    color: #a89990;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 850px) {
    .navbar {
        padding: 0 22px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .subtitle {
        font-size: 19px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .seller-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .best-sellers,
    .why-us,
    .people-section {
        padding: 85px 24px;
    }

    .best-sellers h2,
    .why-us h2,
    .people-section h2 {
        font-size: 38px;
    }
}

/* SAKURA LIGHT THEME */

:root {
    --bg: #fcf8f7;
    --bg-soft: #fff1f5;
    --card: #ffffff;
    --text: #24191b;
    --muted: #6f5f63;
    --accent: #251f21;
    --accent-soft: #f7b6ca;
    --border: rgba(225, 110, 150, 0.18);
}

body {
    background: var(--bg);
    color: var(--text);
}

.navbar {
    background: rgba(252, 248, 247, 0.88);
    border-bottom: 1px solid var(--border);
}

.logo,
.hero h1,
.best-sellers h2,
.why-us h2,
.people-section h2,
.seller-card h3,
.why-grid h3 {
    color: var(--accent);
}

.nav-links a {
    color: var(--text);
}

.nav-links a:hover {
    color: var(--accent);
}

.order-btn,
.main-btn {
    background: var(--accent);
    color: white;
}

.secondary-btn {
    color: var(--accent);
    border-color: var(--accent);
}

.hero {
    background:
        linear-gradient(rgba(252,248,247,0.85), rgba(252,248,247,0.96)),
        radial-gradient(circle at top, #ffe1eb, #fcf8f7 70%);
}

.hero::before {
    color: rgba(225, 110, 150, 0.08);
}

.subtitle,
.seller-card p,
.why-grid p,
.people-box p {
    color: var(--muted);
}

.seller-card,
.why-grid div,
.people-box {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(225, 110, 150, 0.08);
}

.why-us {
    background: var(--bg-soft);
}

footer {
    background: #fff1f5;
    color: var(--muted);
}

@media (max-width: 850px) {
    .nav-links {
        display: flex;
        gap: 14px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .order-btn {
        display: none;
    }

    .navbar {
        padding: 0 14px;
    }

    .logo {
        font-size: 20px;
    }
}
/* ==================================
   COMPLETE HOMEPAGE MOBILE VERSION
   ================================== */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    /* NAVBAR */

    .navbar {
        height: 72px;
        padding: 0 12px;
        gap: 10px;
    }

    .logo {
        font-size: 18px;
        white-space: nowrap;
    }

    

    .order-btn {
        display: none;
    }

    /* HERO */

    .hero {
        min-height: 100svh;
        padding: 100px 18px 55px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-logo-frame {
        width: 155px;
        height: 155px;
        margin: 0 auto 24px;
    }

    .hero-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 68px);
        line-height: 0.95;
        margin-bottom: 18px;
    }

    .subtitle {
        max-width: 310px;
        margin: 0 auto 30px;
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .main-btn {
        width: 100%;
        max-width: 290px;
        padding: 15px 24px;
        text-align: center;
        font-size: 15px;
    }

    /* SAKURA PETALS */

    .sakura-container {
        pointer-events: none;
    }

    .petal {
        transform: scale(0.75);
    }

    /* GENERAL SECTIONS */

    .best-sellers,
    .why-us,
    .people-section,
    .contact-home {
        padding: 70px 18px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .best-sellers h2,
    .why-us h2,
    .people-section h2,
    .contact-home h2 {
        font-size: 38px;
        line-height: 1.05;
        margin-bottom: 30px;
    }

    /* BEST SELLERS */

    .seller-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .seller-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .seller-card h3 {
        font-size: 22px;
        margin: 12px 0;
    }

    .seller-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* WHY CHOOSE US */

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-grid div {
        padding: 27px 22px;
        border-radius: 18px;
    }

    .why-grid h3 {
        font-size: 21px;
        margin: 10px 0;
    }

    .why-grid p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* PEOPLE SECTION */

    .people-box {
        width: 100%;
        padding: 36px 22px;
        border-radius: 20px;
    }

    .people-box h2 {
        font-size: 36px;
    }

    .people-box p {
        font-size: 16px;
        line-height: 1.7;
    }

    /* CONTACT */

    .contact-home {
        text-align: center;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .contact-card {
        width: 100%;
        padding: 25px 20px;
        border-radius: 18px;
    }

    .contact-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-card a {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 18px;
    }

    /* FOOTER */

    footer {
        padding: 27px 18px;
    }

    footer p {
        font-size: 13px;
        line-height: 1.5;
    }
}


/* EXTRA-SMALL PHONES */

@media (max-width: 390px) {

    .navbar {
        padding: 0 9px;
    }

    .logo {
        font-size: 16px;
    }


    .hero h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-logo-frame {
        width: 135px;
        height: 135px;
    }

    .best-sellers h2,
    .why-us h2,
    .people-section h2,
    .contact-home h2 {
        font-size: 34px;
    }
}
/* ===========================
   MOBILE HAMBURGER MENU
   =========================== */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--accent);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.menu-toggle:hover {
    background: var(--bg-soft);
}

@media (max-width:768px){
.navbar {
    justify-content: space-between;
}

.logo {
    margin-right: auto;
}
    .navbar{
        padding:0 18px;
    }

    .order-btn{
        display:none;
    }

    .menu-toggle{
        display: flex;
    }

    .nav-links{

        position:absolute;

        top:72px;
        left:0;

        width:100%;

        display:flex;
        flex-direction:column;

        background:white;

        border-bottom:1px solid var(--border);

        box-shadow:0 12px 35px rgba(0,0,0,.08);

        max-height:0;

        overflow:hidden;

        opacity:0;
        visibility:hidden;

        transform:translateY(-15px);

        transition:
            max-height .35s ease,
            opacity .25s ease,
            transform .25s ease;
    }

    .nav-links.active{

        opacity:1;
        visibility:visible;

        transform:translateY(0);

        max-height:300px;
    }

    .nav-links a{

        padding:18px;

        text-align:center;

        font-size:17px;

        border-bottom:1px solid var(--border);
    }

}