/* ============================================
   Pattern 13: Pastel Kawaii — petitte✦
   ペットサロン / パステル / 浮遊アニメ
   ============================================ */
:root {
    --c-pink: #F8A4C8;
    --c-lavender: #C4A4F4;
    --c-mint: #A8E6CF;
    --c-cream: #FFF8F0;
    --c-white: #fff;
    --c-text: #5A4A6A;
    --c-muted: #A89AB8;
    --f-main: "M PLUS Rounded 1c", "Zen Maru Gothic", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--f-main);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 2;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================
   SCROLL ANIMATION SYSTEM
   ============================ */
.anim {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim.anim-up {
    transform: translateY(50px);
}

.anim.anim-left {
    transform: translateX(-60px);
}

.anim.anim-right {
    transform: translateX(60px);
}

.anim.anim-scale {
    transform: scale(0.9);
}

.anim.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.anim-delay-1 {
    transition-delay: 0.2s !important;
}

.anim-delay-2 {
    transition-delay: 0.4s !important;
}

.anim-delay-3 {
    transition-delay: 0.6s !important;
}

/* Hero text animation */
.anim-hero-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-hero-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(248, 164, 200, 0.15);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-pink);
}

.logo-star {
    color: var(--c-lavender);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3) rotate(20deg);
    }
}

.nav {
    display: flex;
    gap: 22px;
}

.nav a {
    text-decoration: none;
    color: var(--c-muted);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-pink);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--c-pink);
}

.nav a:hover::after {
    width: 100%;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(248, 164, 200, 0.5), rgba(196, 164, 244, 0.4), rgba(168, 230, 207, 0.3));
}

.hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-deco 8s ease-in-out infinite;
}

.hero-deco--1 {
    width: 200px;
    height: 200px;
    background: var(--c-pink);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-deco--2 {
    width: 150px;
    height: 150px;
    background: var(--c-lavender);
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.hero-deco--3 {
    width: 100px;
    height: 100px;
    background: var(--c-mint);
    top: 60%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float-deco {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-25px) scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(248, 164, 200, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--c-pink), var(--c-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--c-muted);
    margin-bottom: 25px;
}

.btn-kawaii {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--c-pink), var(--c-lavender));
    color: var(--c-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(248, 164, 200, 0.35);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-kawaii::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-kawaii:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(248, 164, 200, 0.5);
}

.btn-kawaii:hover::before {
    left: 100%;
}

/* ── Sections ── */
.section {
    padding: 80px 0;
}

.section--alt {
    background: var(--c-white);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--c-text);
}

.title-icon {
    margin-right: 8px;
}

.title-en {
    display: block;
    font-size: 0.85rem;
    color: var(--c-pink);
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-top: 5px;
    opacity: 0.8;
}

/* ── Split Layout (About) ── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-img {
    position: relative;
}

.split-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.split-img:hover img {
    transform: scale(1.02) rotate(-1deg);
}

.img-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--c-pink), var(--c-lavender));
    color: var(--c-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(248, 164, 200, 0.3);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.split-text p {
    font-size: 0.95rem;
    color: var(--c-muted);
    margin-bottom: 20px;
}

.point-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.point-tag {
    background: var(--c-cream);
    border: 1px solid rgba(248, 164, 200, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--c-text);
    font-weight: 500;
    transition: all 0.3s;
}

.point-tag:hover {
    background: linear-gradient(135deg, var(--c-pink), var(--c-lavender));
    color: var(--c-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 164, 200, 0.3);
}

/* ── Service Cards with Photos ── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--c-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-10px) rotate(-0.5deg);
    box-shadow: 0 20px 50px rgba(248, 164, 200, 0.25);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover .service-img img {
    transform: scale(1.12);
}

.service-body {
    padding: 22px;
}

.service-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--c-text);
}

.service-body p {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin-bottom: 10px;
}

.service-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-pink), var(--c-lavender));
    color: var(--c-white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ── Photo Band (Full Width) ── */
.photo-band {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.band-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: ken-burns 25s ease-in-out infinite alternate;
}

.band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 164, 200, 0.7), rgba(196, 164, 244, 0.7));
}

.band-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.band-text {
    color: var(--c-white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item::after {
    content: '♡';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--c-white);
    background: rgba(248, 164, 200, 0.3);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ── Contact ── */
.contact-card {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    background: var(--c-cream);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--c-muted);
    margin-bottom: 20px;
}

.contact-hours {
    font-size: 0.8rem !important;
    color: var(--c-muted) !important;
    margin-top: 15px !important;
}

/* ── FAQ ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--c-white);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-q {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--c-text);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-q::before {
    content: 'Q';
    color: var(--c-pink);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.faq-a {
    color: var(--c-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-a::before {
    content: 'A';
    color: var(--c-lavender);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

/* ── Footer ── */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--c-white);
    border-top: 2px solid rgba(248, 164, 200, 0.15);
}

.footer p {
    font-size: 0.75rem;
    color: var(--c-muted);
    margin-top: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 35px 25px;
        margin: 0 15px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .nav {
        display: none;
    }
}