:root {
    color-scheme: light;
    --bg: #fff9f4;
    --bg-alt: #fff3e6;
    --surface: rgba(255, 255, 255, 0.85);
    --navy: #1a2f4d;
    --navy-soft: rgba(26, 47, 77, 0.08);
    --accent: #d63c2f;
    --accent-strong: #c02f24;
    --accent-soft: rgba(214, 60, 47, 0.12);
    --amber: #f5b233;
    --muted: #6b7280;
    --text: #1f2937;
    --card: #ffffff;
    --border: rgba(26, 47, 77, 0.08);
    --shadow: 0 28px 70px rgba(26, 47, 77, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

body.se-body {
    margin: 0;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--bg) 0%, #ffffff 80%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.se-topbar {
    background: #1a2f4d;
    color: #fff;
    padding: 10px 24px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.se-topbar__item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.se-topbar__item strong {
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.se-topbar__cta {
    background: #fff;
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.se-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--surface);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(26, 47, 77, 0.1);
}

.se-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.se-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--navy);
}

.se-logo__mark {
    font-size: 1.8rem;
}

.se-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.se-nav__link {
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--navy);
    background: transparent;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.se-nav__link:hover,
.se-nav__link:focus {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.se-header__actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.se-header__phone {
    font-weight: 600;
    color: var(--navy);
}

.se-header__cta {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(214, 60, 47, 0.25);
}

.se-main {
    flex: 1 1 auto;
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 32px 120px;
    position: relative;
}

.se-main__decor {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(214, 60, 47, 0.12), transparent 55%),
                radial-gradient(circle at 100% 10%, rgba(26, 47, 77, 0.12), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(245, 178, 51, 0.25), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.se-banners {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.se-banner {
    border-radius: var(--radius);
    background: linear-gradient(120deg, rgba(214, 60, 47, 0.08), rgba(255, 255, 255, 0.92));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.se-banner__inner {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.se-banner__inner h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--navy);
}

.se-banner__inner p {
    margin: 0;
    color: var(--muted);
}

.se-banner__cta {
    align-self: flex-start;
    background: var(--navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
}

.se-flash {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.se-flash__item {
    padding: 16px 20px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(26, 47, 77, 0.08);
    background: #fff7f1;
    color: var(--navy);
}

.se-flash__item--success { background: rgba(34, 197, 94, 0.1); }
.se-flash__item--error { background: rgba(220, 38, 38, 0.12); }

.sushi-section {
    background: var(--card);
    padding: 48px 52px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.sushi-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(214, 60, 47, 0.06), transparent 45%);
    pointer-events: none;
}

.sushi-section > * {
    position: relative;
    z-index: 1;
}

.sushi-section h2 {
    margin-top: 0;
    font-size: 2rem;
    font-family: 'Playfair Display', 'DM Sans', serif;
    color: var(--navy);
}

.section-lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 640px;
}

.section-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}


.sushi-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
    padding: 72px 64px;
    background: linear-gradient(120deg, rgba(26, 47, 77, 0.92), rgba(26, 47, 77, 0.78) 62%, rgba(255, 243, 230, 0.85) 100%);
    color: #fff;
    border-radius: 36px;
    box-shadow: 0 45px 80px rgba(26, 47, 77, 0.35);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    line-height: 1.1;
    margin: 0 0 18px;
}

.hero-content p {
    margin: 0 0 24px;
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 600;
    font-size: 0.82rem;
    color: rgba(245, 178, 51, 0.9);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--amber);
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 36px rgba(245, 178, 51, 0.3);
}

.hero-visual,
.hero-placeholder {
    justify-self: end;
    max-width: 420px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.4);
    border: 6px solid rgba(255, 255, 255, 0.55);
}

.hero-placeholder {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    background: #fff7ef;
    border-radius: 22px;
    padding: 24px 22px;
    border: 1px solid rgba(214, 60, 47, 0.12);
    box-shadow: 0 20px 40px rgba(214, 60, 47, 0.08);
}

.feature-icon {
    font-size: 1.6rem;
}

.wysiwyg p {
    line-height: 1.7;
    color: var(--muted);
}

.sushi-faq details {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.7);
}

.sushi-faq summary {
    font-weight: 600;
    cursor: pointer;
}

.sushi-faq .faq-group {
    background: rgba(255, 247, 239, 0.72);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(214, 60, 47, 0.16);
}

.sushi-faq .faq-group__header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.sushi-faq .faq-group__icon {
    font-size: 1.8rem;
}

.sushi-posts .post-grid,
.sushi-blog-index .post-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.post-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(26, 47, 77, 0.08);
}

.post-card h3,
.post-card h2 {
    margin-top: 12px;
    font-size: 1.3rem;
    color: var(--navy);
}

.post-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.post-meta {
    color: rgba(26, 47, 77, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

.cta-row {
    margin-top: 20px;
    text-align: right;
}

.link {
    font-weight: 600;
}

.sushi-menu .menu-group {
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    border: 1px solid rgba(26, 47, 77, 0.08);
    box-shadow: 0 24px 50px rgba(26, 47, 77, 0.08);
}

.menu-group__header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    background: linear-gradient(120deg, rgba(214, 60, 47, 0.12), rgba(255, 247, 239, 0.8));
}

.menu-group__icon {
    font-size: 2rem;
}

.menu-items {
    padding: 28px 32px;
    display: grid;
    gap: 20px;
}

.menu-item__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: var(--navy);
}

.menu-item__description {
    margin: 12px 0;
    color: var(--muted);
}

.menu-item__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip,
.chip-spicy,
.chip-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(214, 60, 47, 0.12);
    color: var(--accent-strong);
}

.chip-spicy { background: rgba(245, 178, 51, 0.18); color: #b45309; }

.menu-item__variants {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    border-top: 1px dashed rgba(26, 47, 77, 0.12);
}

.menu-item__variants li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--muted);
}

.menu-item__addons {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 8px 0 0;
}

.sushi-testimonials .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.sushi-testimonials blockquote {
    margin: 0;
    padding: 28px 30px;
    background: #fff7ef;
    border-radius: 26px;
    border: 1px solid rgba(214, 60, 47, 0.16);
    box-shadow: 0 18px 42px rgba(214, 60, 47, 0.1);
    font-style: italic;
    color: #5b5f6a;
}

.sushi-testimonials footer {
    margin-top: 18px;
    font-weight: 700;
    color: var(--navy);
}

.sushi-newsletter form,
.sushi-form form {
    display: grid;
    gap: 16px;
}

.newsletter-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 12px;
}

.newsletter-grid input {
    border: none;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(26, 47, 77, 0.06);
}

.newsletter-grid button,
.sushi-form button,
.event-form button,
.workshop-form button {
    border: none;
    background: var(--accent);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.sushi-form input,
.sushi-form textarea,
.sushi-form select,
.event-form input,
.event-form textarea,
.event-form select,
.workshop-form input,
.workshop-form textarea,
.workshop-form select {
    border: 1px solid rgba(26, 47, 77, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-zones .zones-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.zone-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(214, 60, 47, 0.14);
    background: #fff7ef;
    box-shadow: 0 16px 32px rgba(214, 60, 47, 0.1);
}

.zone-card h3 { margin-top: 0; color: var(--navy); }

.zone-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.sushi-events .events-grid,
.sushi-workshops .workshops-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-card,
.workshop-card {
    border-radius: 24px;
    padding: 26px;
    border: 1px solid rgba(26, 47, 77, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 46px rgba(26, 47, 77, 0.12);
}

.event-card header,
.workshop-card header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.event-date,
.workshop-date {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(26, 47, 77, 0.6);
    font-weight: 600;
}

.event-meta,
.workshop-meta {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.event-cta {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    margin-top: 18px;
}

.sushi-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.sushi-gallery figure {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26, 47, 77, 0.18);
}

.sushi-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sushi-map .map-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.sushi-map iframe {
    width: 100%;
    min-height: 320px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(26, 47, 77, 0.2);
}

.sushi-timeline .timeline {
    border-left: 2px dashed rgba(214, 60, 47, 0.32);
    margin-left: 12px;
    display: grid;
    gap: 22px;
    padding-left: 28px;
}

.timeline-step {
    position: relative;
    padding-left: 12px;
}

.timeline-pin {
    position: absolute;
    left: -42px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(214, 60, 47, 0.18);
}

.sushi-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.stat-card {
    border-radius: 24px;
    padding: 28px;
    background: linear-gradient(160deg, rgba(26, 47, 77, 0.92), rgba(26, 47, 77, 0.75));
    color: #fff;
    text-align: center;
    box-shadow: 0 22px 44px rgba(26, 47, 77, 0.32);
}

.stat-card strong {
    font-size: 2rem;
    display: block;
    margin-bottom: 6px;
}

.sushi-cta-strip {
    background: linear-gradient(120deg, rgba(214, 60, 47, 0.12), rgba(255, 247, 239, 0.8));
    border-radius: 30px;
    padding: 36px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-strip__button {
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}

.sushi-video .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: center;
}

.video-frame iframe,
.video-frame img {
    width: 100%;
    border-radius: 24px;
    border: none;
    box-shadow: 0 26px 60px rgba(26, 47, 77, 0.28);
}

.video-placeholder {
    width: 100%;
    min-height: 240px;
    border-radius: 24px;
    background: rgba(26, 47, 77, 0.08);
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.video-highlights {
    margin: 20px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.sushi-blog-post {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow);
}

.sushi-blog-post h1 {
    margin-top: 12px;
    font-size: 2.6rem;
    font-family: 'Playfair Display', serif;
}

.tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-list li {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(214, 60, 47, 0.12);
    color: var(--accent-strong);
}

.footer-shell,
.se-footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.82);
}

.se-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 32px 64px;
    display: grid;
    gap: 32px;
}

.se-footer__brand {
    display: flex;
    gap: 16px;
    align-items: center;
}

.se-footer__brand h3 {
    margin: 0 0 6px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.se-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.se-footer__nav {
    display: flex;
    gap: 18px;
}

.se-footer__nav a { color: rgba(255, 255, 255, 0.75); }

.se-popup-layer {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 40;
}

.se-popup {
    background: #fff;
    border-radius: 24px;
    padding: 32px 36px;
    max-width: 420px;
    position: relative;
    box-shadow: 0 36px 70px rgba(17, 24, 39, 0.28);
}

.se-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.se-popup__cta {
    display: inline-flex;
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 18px;
}

@media (max-width: 960px) {
    .se-header__inner { flex-wrap: wrap; justify-content: center; }
    .se-header__actions { width: 100%; justify-content: center; }
    .sushi-section { padding: 40px 32px; }
    .sushi-hero { padding: 56px 40px; }
}

@media (max-width: 640px) {
    .newsletter-grid { grid-template-columns: 1fr; }
    .se-footer__meta { flex-direction: column; align-items: flex-start; }
    .sushi-hero { background-position: center; }
}
