/* ========================================
   成人式 振袖着付けサービス LP
   和風モダン スタイルシート
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --color-crimson: #8B0000;
    --color-crimson-dark: #6B0000;
    --color-crimson-light: #A52A2A;
    --color-gold: #C9A94E;
    --color-gold-light: #D4B96A;
    --color-gold-dark: #A88B3D;
    --color-white: #FFFFFF;
    --color-off-white: #FFF9F5;
    --color-pink-light: #FFF0F0;
    --color-pink: #FFE4E1;
    --color-pink-medium: #F5C6C6;
    --color-beige: #FAF3E8;
    --color-text-dark: #2C1810;
    --color-text-medium: #5A3E32;
    --color-text-light: #8B7366;
    --color-border: #E8D5C4;
    --color-day-blue: #2E4057;
    --color-day-blue-light: #E8EEF4;
    --color-day-accent: #4A7C9B;

    --font-serif: 'Shippori Mincho', 'Noto Serif JP', '游明朝', 'Yu Mincho', 'HG明朝E', serif;
    --font-sans: 'Noto Serif JP', '游明朝', serif;

    --shadow-sm: 0 2px 8px rgba(139, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(139, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(139, 0, 0, 0.12);
    --shadow-card: 0 2px 12px rgba(139, 0, 0, 0.06);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-serif);
    color: var(--color-text-dark);
    background-color: var(--color-off-white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Sakura Petals Animation ---------- */
#sakura-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sakura-petal {
    position: absolute;
    top: -20px;
    color: var(--color-pink-medium);
    font-size: 14px;
    opacity: 0;
    animation: sakuraFall linear forwards;
    pointer-events: none;
    filter: drop-shadow(0 0 2px rgba(255, 192, 203, 0.3));
}

@keyframes sakuraFall {
    0% {
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.8);
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateX(100px) rotate(720deg) scale(0.4);
        top: 105vh;
    }
}

/* ---------- Scroll Animation Classes ---------- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.items-grid .scroll-animate:nth-child(1) { transition-delay: 0.05s; }
.items-grid .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.items-grid .scroll-animate:nth-child(3) { transition-delay: 0.15s; }
.items-grid .scroll-animate:nth-child(4) { transition-delay: 0.2s; }
.items-grid .scroll-animate:nth-child(5) { transition-delay: 0.25s; }
.items-grid .scroll-animate:nth-child(6) { transition-delay: 0.3s; }
.items-grid .scroll-animate:nth-child(7) { transition-delay: 0.35s; }
.items-grid .scroll-animate:nth-child(8) { transition-delay: 0.4s; }
.items-grid .scroll-animate:nth-child(9) { transition-delay: 0.45s; }
.items-grid .scroll-animate:nth-child(10) { transition-delay: 0.5s; }
.items-grid .scroll-animate:nth-child(11) { transition-delay: 0.55s; }
.items-grid .scroll-animate:nth-child(12) { transition-delay: 0.6s; }
.items-grid .scroll-animate:nth-child(13) { transition-delay: 0.65s; }
.items-grid .scroll-animate:nth-child(14) { transition-delay: 0.7s; }
.items-grid .scroll-animate:nth-child(15) { transition-delay: 0.75s; }
.items-grid .scroll-animate:nth-child(16) { transition-delay: 0.8s; }

/* Hero fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 30%, #4A0000 60%, #3A0000 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 78, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, white 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, white 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}

/* 和柄の装飾ボーダー */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--color-off-white), transparent);
    z-index: 2;
}

.hero::after {
    content: '❀ ❀ ❀ ❀ ❀ ❀ ❀';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(201, 169, 78, 0.2);
    font-size: 18px;
    letter-spacing: 20px;
    z-index: 2;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 30px;
}

.hero-badge-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-serif);
    position: relative;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-inner::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 78, 0.3);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 78, 0.2); }
    50% { box-shadow: 0 0 40px rgba(201, 169, 78, 0.4); }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.divider-sakura {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.hero-cta:hover {
    color: var(--color-gold-light);
    transform: translateY(4px);
}

.hero-cta i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 12px;
    font-family: var(--font-sans);
}

.section-title {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--color-crimson);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-ornament {
    color: var(--color-gold);
    font-size: 1.2rem;
    position: relative;
}

.divider-ornament::before,
.divider-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border));
}

.divider-ornament::before {
    right: 120%;
    background: linear-gradient(90deg, transparent, var(--color-gold-dark));
}

.divider-ornament::after {
    left: 120%;
    background: linear-gradient(90deg, var(--color-gold-dark), transparent);
}

/* ==========================================
   INFO SECTION
   ========================================== */
.info-section {
    padding: 100px 0 80px;
    background: var(--color-off-white);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 78, 0.15);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 36px;
    background: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-crimson-dark) 100%);
    color: var(--color-white);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.info-card-body {
    padding: 36px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-beige);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.info-list-item:hover {
    background: var(--color-pink-light);
    transform: translateX(4px);
}

.list-icon {
    flex-shrink: 0;
    color: var(--color-crimson);
    font-size: 1.1rem;
    margin-top: 2px;
}

.info-list-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-medium);
}

.info-list-item strong {
    color: var(--color-crimson);
    font-weight: 600;
}

/* ==========================================
   ITEMS SECTION
   ========================================== */
.items-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-beige) 100%);
    position: relative;
}

.items-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.items-category {
    margin-bottom: 60px;
}

.items-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 30px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-bottom: 0;
    position: relative;
}

.category-advance {
    background: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-crimson-light) 100%);
    color: var(--color-white);
}

.category-day {
    background: linear-gradient(135deg, var(--color-day-blue) 0%, var(--color-day-accent) 100%);
    color: var(--color-white);
}

.category-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.category-title-wrap {
    flex: 1;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.category-subtitle {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.category-badge {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--color-white);
    border: 1px solid rgba(201, 169, 78, 0.15);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.item-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 14px;
    text-align: center;
    border-right: 1px solid rgba(232, 213, 196, 0.4);
    border-bottom: 1px solid rgba(232, 213, 196, 0.4);
    transition: var(--transition);
    position: relative;
    min-height: 130px;
    cursor: default;
}

.item-card:hover {
    background: var(--color-pink-light);
    transform: scale(1.02);
    z-index: 1;
    box-shadow: var(--shadow-card);
}

.item-card[data-category="day"]:hover {
    background: var(--color-day-blue-light);
}

/* Remove right border on last column items */
.items-grid .item-card:nth-child(4n) {
    border-right: none;
}

.item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-pink));
    border-radius: 50%;
    margin-bottom: 12px;
    color: var(--color-crimson);
    font-size: 1.15rem;
    transition: var(--transition);
}

.item-card[data-category="day"] .item-icon {
    background: linear-gradient(135deg, var(--color-day-blue-light), #D0DDE8);
    color: var(--color-day-blue);
}

.item-card:hover .item-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.item-card[data-category="day"]:hover .item-icon {
    box-shadow: 0 4px 12px rgba(46, 64, 87, 0.15);
}

.item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.item-note {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--color-text-light);
    background: rgba(201, 169, 78, 0.1);
    padding: 2px 10px;
    border-radius: 10px;
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.item-card[data-category="day"] .item-note {
    background: rgba(74, 124, 155, 0.1);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-crimson-dark) 50%, #4A0000 100%);
    position: relative;
    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 15% 85%, white 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, white 1px, transparent 1px);
    background-size: 50px 50px;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 169, 78, 0.15);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-divider .divider-sakura {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.contact-divider .divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.contact-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.contact-sub-text {
    font-size: 0.95rem;
    color: var(--color-gold-light);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-sub-text i {
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-crimson-dark);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 78, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 50px 0 30px;
    background: var(--color-off-white);
    text-align: center;
}

.footer-ornament {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 12px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.6;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

    .hero-badge-inner {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .info-card-header {
        padding: 22px 24px;
    }

    .info-card-body {
        padding: 24px;
    }

    .info-list-item {
        padding: 16px 18px;
    }

    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Remove right border on 3-col last items */
    .items-grid .item-card:nth-child(4n) {
        border-right: 1px solid rgba(232, 213, 196, 0.4);
    }
    .items-grid .item-card:nth-child(3n) {
        border-right: none;
    }

    .category-header {
        padding: 18px 22px;
    }

    .category-badge {
        display: none;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-badge-inner {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .hero-badge-inner::before {
        inset: -6px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .info-section {
        padding: 70px 0 60px;
    }

    .info-card-header {
        padding: 18px 20px;
        gap: 14px;
    }

    .info-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .info-card-title {
        font-size: 1.05rem;
    }

    .info-card-body {
        padding: 18px;
    }

    .info-list {
        gap: 14px;
    }

    .info-list-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .info-list-item p {
        font-size: 0.88rem;
    }

    .items-section {
        padding: 60px 0 80px;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset and adjust border removal for 2-col */
    .items-grid .item-card:nth-child(3n) {
        border-right: 1px solid rgba(232, 213, 196, 0.4);
    }
    .items-grid .item-card:nth-child(2n) {
        border-right: none;
    }

    .item-card {
        padding: 22px 10px;
        min-height: 110px;
    }

    .item-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .item-name {
        font-size: 0.82rem;
    }

    .item-note {
        font-size: 0.65rem;
    }

    .category-header {
        padding: 16px 18px;
        gap: 14px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.05rem;
    }

    .category-subtitle {
        font-size: 0.72rem;
    }

    .contact-section {
        padding: 70px 0;
    }

    .contact-icon-wrap {
        width: 65px;
        height: 65px;
        font-size: 1.4rem;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .contact-text {
        font-size: 0.92rem;
    }

    .sp-br {
        display: inline;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.88rem;
    }
}

/* Ultra-small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .container {
        max-width: 1080px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .sakura-petal {
        display: none;
    }

    .hero-badge-inner {
        animation: none;
    }

    .hero-cta i {
        animation: none;
    }
}
