:root {
    --color-primary: #061538;
    --color-secondary: #1f4fff;
    --color-accent: #f43f5e;
    --gradient-start: #061538;
    --gradient-end: #0f3b7d;
    --font-base: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-soft: 0 24px 60px rgba(6, 21, 56, 0.14);
    --shadow-medium: 0 30px 90px rgba(6, 21, 56, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: #0f172a;
    background: linear-gradient(180deg, rgba(244, 247, 252, 0.92) 0%, rgba(230, 238, 255, 0.6) 60%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
}

.bg-body {
    background-color: transparent;
}

.bg-glass {
    backdrop-filter: saturate(180%) blur(18px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(6, 21, 56, 0.08);
}

.navbar {
    transition: backdrop-filter 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--color-secondary);
    opacity: 0.9;
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand-logo--footer {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
}

.btn-gradient {
    background: linear-gradient(135deg, #1f4fff, #00b4ff);
    color: #fff;
    border: none;
    box-shadow: 0 18px 36px rgba(0, 107, 255, 0.35);
}

.btn-gradient:hover,
.btn-gradient:focus {
    color: #fff;
    box-shadow: 0 22px 44px rgba(0, 107, 255, 0.45);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-outline-primary {
    color: var(--color-secondary);
    border-color: rgba(31, 79, 255, 0.25);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: rgba(31, 79, 255, 0.08);
    border-color: rgba(31, 79, 255, 0.35);
    color: var(--color-secondary);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-primary-50 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.home-hero {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
                linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    overflow: hidden;
}

.hero-texture {
    position: absolute;
    inset: -20% 0 0 0;
    background: url('/assets/img/sushi-pattern.svg') repeat;
    opacity: 0.2;
    pointer-events: none;
}

.hero-waves {
    position: absolute;
    inset: auto 0 -2px 0;
    height: 120px;
    background: url('/assets/img/sushi-wave.svg') repeat-x;
    background-size: contain;
    opacity: 0.7;
}

.hero-eyebrow {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.14);
    padding: 0.35rem 1.15rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-badges .badge-glass {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.hero-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-showcase__panel {
    border-radius: 28px;
    backdrop-filter: blur(14px);
    background: rgba(10, 18, 44, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    width: 100%;
}

.hero-showcase__header {
    padding: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-showcase__body {
    padding: 1.75rem;
}

.hero-showcase__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.25);
}

.hero-nigiri {
    position: absolute;
    right: -40px;
    bottom: -30px;
    width: 200px;
    height: 200px;
    background: url('/assets/img/hero-nigiri.svg') no-repeat center/contain;
    opacity: 0.6;
    pointer-events: none;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card {
    position: relative;
    border-radius: 26px;
    padding: 2.75rem 2.25rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.feature-card__accent {
    position: absolute;
    inset: auto auto -40% -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(31, 79, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.feature-card__content {
    position: relative;
}

.story-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 245, 255, 0.9));
}

.story-media {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    background: rgba(6, 21, 56, 0.85);
}

.story-image {
    width: 100%;
    padding-top: 120%;
    background-size: cover;
    background-position: center;
    filter: saturate(110%);
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(244, 63, 94, 0.4), transparent 60%);
}

.story-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-accent);
    padding-left: 1.25rem;
}

.story-signature {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.signature-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: var(--color-accent);
}

.signature-rolls {
    background: linear-gradient(135deg, rgba(6, 21, 56, 0.98), rgba(15, 59, 125, 0.92));
    border-radius: 48px;
    position: relative;
    overflow: hidden;
}

.roll-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    overflow: hidden;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.roll-card__media {
    background-size: cover;
    background-position: center;
    padding-top: 70%;
}

.roll-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-accent {
    background: rgba(244, 63, 94, 0.18);
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roll-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.gradient-panel {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 36px 36px 0 0;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.menu-preview-grid {
    display: grid;
    gap: 1.75rem;
}

.menu-preview-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.menu-preview-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
}

.menu-pill {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(31, 79, 255, 0.08);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-weight: 700;
}

.menu-preview-item + .menu-preview-item {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
}

.menu-preview-item .price {
    font-weight: 700;
    color: var(--color-secondary);
}

.badge.text-bg-tag {
    background: rgba(244, 63, 94, 0.12);
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card__meta {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.45);
    margin-bottom: 1.25rem;
}

.blog-card a {
    text-decoration: none;
    color: inherit;
}

.list-group-item {
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
}

.list-group-item + .list-group-item {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.delivery-preview {
    background: linear-gradient(160deg, rgba(6, 21, 56, 0.96), rgba(16, 48, 112, 0.9));
    border-radius: 36px 36px 0 0;
}

.legend-dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 255, 0.92));
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-rating span {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-right: 0.1rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
}

.gallery-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 245, 255, 0.9));
}

.gallery-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
}

.gallery-card__media {
    padding-top: 70%;
    background-size: cover;
    background-position: center;
}

.gallery-card__caption {
    padding: 1.5rem 1.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.cta-section {
    background: linear-gradient(160deg, rgba(6, 21, 56, 0.98), rgba(15, 59, 125, 0.92));
}

.cta-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    backdrop-filter: blur(14px);
    align-items: flex-start;
}

.footer-gradient {
    background: linear-gradient(160deg, rgba(6, 21, 56, 0.98), rgba(6, 21, 56, 0.92));
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: #fff;
}

.shadow-xl {
    box-shadow: var(--shadow-medium);
}

@media (max-width: 991px) {
    .home-hero {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .hero-showcase__panel {
        margin-bottom: 3rem;
    }

    .hero-nigiri {
        display: none;
    }

    .signature-rolls {
        border-radius: 36px;
    }

    .cta-card {
        padding: 2.5rem;
    }
}

@media (max-width: 575px) {
    .feature-card {
        padding: 2.25rem 1.8rem;
    }

    .blog-card {
        padding: 1.75rem;
    }

    .testimonial-card {
        padding: 1.85rem;
    }

    .cta-card {
        padding: 2rem;
    }
}
