:root {
    --primary-color: #4A5D45;
    /* Dark Green from logo */
    --accent-color: #F4B8A5;
    /* Warm Pink/Orange from logo */
    --text-color: #333333;
    --bg-color: #FDFBF7;
    /* Warm Off-white */
    --alternate-bg: #F5F1EA;
    --border-color: #9C8C7A;
    /* Muted Brown */

    --font-serif: 'Shippori Mincho', serif;
    --font-sans: 'Noto Sans JP', sans-serif;

    --container-width: 1100px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-serif);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.5s;
    background: transparent;
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav ul li a:hover::after {
    width: 100%;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    z-index: -1;
    transform: scale(1.1);
    animation: zoomOut 10s forwards;
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.hero-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.scroll-down::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 1px;
    height: 60px;
    background: #fff;
    transform: translateX(-50%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        height: 0;
        top: 25px;
    }

    50% {
        height: 60px;
        top: 25px;
    }

    100% {
        height: 0;
        top: 85px;
    }
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section.alternate {
    background-color: var(--alternate-bg);
}

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

.section-en {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

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

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Grid */
.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 30px;
}

/* Therapy Section */
.therapy-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.therapy-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Dagashi Section */
.dagashi-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.dagashi-grid>div {
    flex: 1;
}

.dagashi-image img {
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--accent-color);
}

.dagashi-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Workshop Section */
.workshop-card {
    background: #fff;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.workshop-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.workshop-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    border-top: 1px solid var(--alternate-bg);
    border-bottom: 1px solid var(--alternate-bg);
    padding: 30px 0;
}

.info-item .value {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-top: 5px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: #3a4a36;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E1306C;
    /* Instagram Color */
}

.instagram-btn:hover {
    background: #c13584;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-links {
    margin-top: 25px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    transition: 0.3s;
}

.instagram-link:hover {
    color: #E1306C;
}

.instagram-link .instagram-icon {
    width: 24px;
    height: 24px;
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.access-info .shop-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.access-map {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    filter: brightness(1.2);
}

.footer-logo span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.fade-in.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .therapy-grid,
    .dagashi-grid,
    .access-content {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

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

    .workshop-card {
        padding: 40px 30px;
    }

    .workshop-card h3 {
        font-size: 1.5rem;
    }

    .workshop-info {
        flex-direction: column;
        gap: 30px;
        padding: 25px 0;
    }

    .info-item .label {
        font-size: 0.9rem;
    }

    .info-item .value {
        font-size: 1.3rem;
        white-space: nowrap;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}