:root {
    --text-color: #4a4a4a;
    --bg-color: #f9f9f7;
    /* Off-white / Kinari */
    --accent-color: #c6e5b1;
    /* Light Green / Wakakusa */
    --accent-dark: #a8cf8e;
    --font-heading: 'Shippori Mincho', 'Noto Serif JP', serif;
    --font-body: 'Zen Maru Gothic', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #333;
    font-weight: 600;
}

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

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

/* Header */
.site-header {
    padding: 2rem 0;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
}

/* Hero - Slideshow */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 24s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

.slide:nth-child(4) {
    animation-delay: 18s;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    4% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    29% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed dim filter */
    z-index: -1;
}

.hero-text {
    text-align: center;
    color: #fff;
    /* Deep Green Blurred Shadow */
    text-shadow: 0 4px 12px rgba(9, 60, 9, 0.9);
    position: relative;
    z-index: 2;
    /* Dark Green Background Box */
    background-color: rgba(9, 60, 9, 0.5);
    /* Deep green with 50% opacity */
    padding: 1.5rem 4rem;
    /* Narrower vertical padding */
    border: none;
    /* Removed border */
}

.catch-copy {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.sub-copy {
    font-size: 1.3rem;
    opacity: 1;
    font-weight: 500;
}

/* Story */
.offset-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.frame-image {
    border-radius: 24px;
    /* rounded-2xl */
    box-shadow: 10px 10px 0 var(--accent-color);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.text-body {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-sub {
    /* text-align: right; Removed to allow centering of grid if needed, or keep logic */
    display: flex;
    justify-content: flex-end;
}

.story-image-sub-grid {
    display: flex;
    gap: 1rem;
    margin-top: -50px;
    /* Overlap effect */
    flex-wrap: wrap;
    justify-content: flex-end;
}

.story-image-sub {
    display: block;
    width: 180px;
    /* margin-top removed from here */
}

.frame-image-small {
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: transform 0.3s;
}

.frame-image-small:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 5;
}

/* Rotate them slightly differently for rustic feel */
.story-image-sub:nth-child(1) .frame-image-small {
    transform: rotate(-3deg);
}

.story-image-sub:nth-child(2) .frame-image-small {
    transform: rotate(2deg);
}

.story-image-sub:nth-child(3) .frame-image-small {
    transform: rotate(-2deg);
}

/* Product */
.bg-accent {
    background-color: rgba(198, 229, 177, 0.2);
    /* Transparent accent color */
}

.text-center {
    text-align: center;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.product-item {
    text-align: center;
    max-width: 300px;
}

.circle-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4a6b3a;
    /* Darker green */
}

/* Juice Section Split Layout */
.product-description {
    margin-top: 4rem;
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    /* rounded-2xl */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;

    /* Split Layout */
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    /* Reset from center */
    flex-direction: row;
}

.juice-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.juice-text-col {
    flex: 1;
}

.cloud-image {
    width: 450px;
    /* Enlarged from 300px */
    height: 320px;
    /* Enlarged from 220px */
    object-fit: cover;
    /* Organic cloud shape using border-radius */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border: 5px solid #fff;
    /* Optional border */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    transition: border-radius 3s ease-in-out;
    animation: blobMorph 8s infinite;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.2rem;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    display: inline-block;
    width: 100%;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a6b3a;
    display: block;
    margin-top: 0.5rem;
}

/* Store Photos Section */
.store-photos {
    background-color: #fcfcfc;
}

.store-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.store-img {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}


/* Menu */
.offset-layout-reverse {
    display: flex;
    flex-wrap: wrap-reverse;
    /* Image right/bottom on desktop */
    align-items: center;
    gap: 4rem;
}

.menu-image {
    flex: 1;
    min-width: 300px;
}

.menu-content {
    flex: 1;
    min-width: 300px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #bbb;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    /* Menu items look good in serif */
}

.menu-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 4rem 1rem;
    text-align: center;
}

.footer-logo {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.shop-info {
    margin-bottom: 3rem;
    font-family: var(--font-body);
}

.info-content {
    margin-bottom: 2rem;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.details {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.details p {
    margin: 0.5rem 0;
}

.label {
    display: inline-block;
    background: #5a5a5a;
    color: #fff;
    padding: 0.2rem 0;
    /* Removed horizontal padding, using width/center */
    width: 100px;
    /* Fixed width for alignment */
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 1rem;
    vertical-align: middle;
    letter-spacing: normal;
    /* Reset spacing for label */
}

.hours {
    letter-spacing: 0.17em;
    /* Widened to match phone number width */
    margin-bottom: 0.5rem;
}

.tel a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    vertical-align: middle;
    letter-spacing: 0.05em;
}

.tel a:hover {
    color: var(--accent-color);
}

.shop-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.8;
    border: 1px dotted rgba(255, 255, 255, 0.4);
}

.map-container {
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Grayscale/Muted Map Style */
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(0.2) contrast(1.1) opacity(0.9);
    transition: filter 0.3s;
}

.map-container iframe:hover {
    filter: grayscale(0);
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-text {
    transition-delay: 0.1s;
}

.delay-image {
    transition-delay: 0.4s;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .catch-copy {
        font-size: 2rem;
    }

    .hero-text {
        padding: 0 1rem;
    }

    .offset-layout,
    .offset-layout-reverse {
        flex-direction: column;
    }

    .story-image-sub-grid {
        justify-content: center;
        margin-top: 2rem;
    }

    .story-image-sub {
        width: 100px;
        /* Smaller on mobile */
        margin-top: 0;
    }

    .offset-layout-reverse {
        flex-direction: column-reverse;
    }

    .product-description {
        flex-direction: column;
        padding: 2rem;
    }
}

/* Specific style for Store Section Note */
.store-blink-note {
    color: #666;
    font-size: 1rem;
    margin-top: 1rem;
    display: inline-block;
    animation: pulse-slow 4s infinite ease-in-out;
}

@keyframes pulse-slow {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}