/* ===== Reset ＆ Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E63946;
    --deep-red: #B8232E;
    --accent-gold: #D4A24C;
    --dark: #1A1A1A;
    --charcoal: #2C2C2C;
    --cream: #FAF6F0;
    --soft-white: #FFFCF7;
    --gray: #6B6B6B;
    --light-gray: #E5E5E5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--dark);
    background: var(--soft-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Sawarabi Mincho', 'Noto Sans JP', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease-out;
}

.modal-overlay.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    background: var(--soft-white);
    border-radius: 24px;
    max-width: 920px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.modal-close:hover {
    background: var(--primary-red);
    color: white;
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #E63946 0%, #D4A24C 100%);
    min-height: 400px;
}

.modal-text {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.modal-text h2 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 24px;
}

.modal-description {
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 32px;
    line-height: 1.8;
}

.modal-description strong {
    color: var(--primary-red);
    font-size: 20px;
}

.btn-order-now {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.btn-order-now:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 57, 70, 0.5);
}

.modal-phone {
    font-size: 14px;
    color: var(--gray);
}

.modal-phone a {
    color: var(--primary-red);
    font-weight: 700;
}

@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        overflow-y: auto;
    }
    .modal-image {
        min-height: 200px;
        max-height: 240px;
    }
    .modal-text {
        padding: 32px 24px;
    }
    .modal-text h2 {
        font-size: 28px;
    }
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 252, 247, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: 'Sawarabi Mincho', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-i {
    color: var(--primary-red);
    font-size: 32px;
}

.logo-rest {
    letter-spacing: -0.5px;
}

.logo-jp {
    font-size: 12px;
    color: var(--gray);
    margin-left: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav-order {
    background: var(--primary-red);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-nav-order:hover {
    background: var(--deep-red);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
}

/* ===== Hero ===== */
.hero {
    padding: 100px 24px 120px;
    background:
        radial-gradient(ellipse at top left, rgba(230, 57, 70, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(212, 162, 76, 0.1), transparent 50%),
        var(--cream);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(230,57,70,0.02) 60px, rgba(230,57,70,0.02) 61px);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-eyebrow {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Sawarabi Mincho', serif;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number { font-size: 32px; }
}

/* ===== Section Titles ===== */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 20px;
}

.section-title.left {
    text-align: left;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Headlines (Google Ads) Section ===== */
.headlines-section {
    padding: 100px 0;
    background: white;
}

.headlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.headline-card {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.headline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.headline-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.headline-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.headline-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 100px 0;
    background: var(--cream);
}

.menu-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.menu-item {
    background: white;
    padding: 28px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-item.small {
    padding: 22px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    gap: 16px;
}

.menu-item h4 {
    font-size: 20px;
    color: var(--dark);
    flex: 1;
}

.menu-item.small h4 {
    font-size: 18px;
}

.menu-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-red);
    font-family: 'Sawarabi Mincho', serif;
    white-space: nowrap;
}

.menu-item.small .menu-price {
    font-size: 18px;
}

.menu-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.menu-tag {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-paragraph {
    font-size: 17px;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.9;
}

.about-paragraph strong {
    color: var(--primary-red);
}

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

.value-item {
    padding: 24px;
    background: var(--cream);
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
}

.value-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--gray);
    font-size: 14px;
}

/* ===== Delivery Section ===== */
.delivery-section {
    padding: 100px 0;
    background: var(--cream);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 80px;
}

.delivery-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.delivery-card.featured {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

.delivery-card:hover {
    transform: translateY(-6px) scale(1);
    box-shadow: var(--shadow-lg);
}

.delivery-card.featured:hover {
    transform: translateY(-6px) scale(1.05);
}

.delivery-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Sawarabi Mincho', serif;
}

.delivery-card.featured .delivery-number {
    color: white;
    opacity: 0.3;
}

.delivery-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.delivery-card p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.delivery-link {
    font-weight: 700;
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 4px;
}

.delivery-card.featured .delivery-link {
    color: white;
    border-color: white;
}

.delivery-features h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.feature h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature p {
    color: var(--gray);
    font-size: 14px;
}

/* ===== Locations Section ===== */
.locations-section {
    padding: 100px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.location-card {
    background: var(--cream);
    padding: 28px;
    border-radius: 16px;
    border-top: 4px solid var(--primary-red);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.location-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.location-address,
.location-hours,
.location-phone {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.location-phone {
    color: var(--primary-red);
    font-weight: 700;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 64px;
}

.testimonial {
    background: var(--charcoal);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info > p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 24px;
}

.contact-item strong {
    display: block;
    color: var(--primary-red);
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--charcoal);
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--soft-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Sawarabi Mincho', serif;
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-red);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
