:root {
    --bg-primary: #FAF8F4;
    --bg-secondary: #F2EDE6;
    --text-primary: #3D3632;
    --text-secondary: #8A8278;
    --accent-gold: #B8860B;
    --accent-sage: #7B9E87;
    --accent-linen: #C4A77D;
    --accent-rose: #D4A5A5;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
}

strong, p {
    color: inherit;
}

.vertical-dock {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--bg-primary);
    border-right: 1px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 1000;
}

.dock-logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.dock-logo-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    color: var(--accent-gold);
}

.dock-domain {
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: lowercase;
    line-height: 1.3;
}

.dock-site-name {
    font-size: 10px;
    font-weight: 450;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.dock-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dock-nav a {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.24s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 8px 0;
    position: relative;
}

.dock-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-sage);
    transition: width 0.24s ease-out;
}

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

.dock-nav a:hover {
    color: var(--accent-sage);
    transform: translateX(4px);
}

.spotlight-trigger:hover {
    z-index: 100;
    position: relative;
    transform: translateZ(0) translateY(-8px) scale(1.04);
    box-shadow: 0 16px 36px rgba(184,134,11,0.22);
}

.spotlight-trigger {
    position: relative;
}

.spotlight-trigger::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle,
        rgba(184,134,11,0.25) 0%,
        rgba(123,158,135,0.12) 50%,
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: all 220ms ease-out;
    pointer-events: none;
}

.spotlight-trigger:hover::after {
    opacity: 1;
    transform: scale(1);
    animation: spotlightPulse 1.8s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0% { transform: scale(0.7); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(0.7); opacity: 0.5; }
}

.dock-cta {
    margin-top: auto;
}

.dock-cta-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-linen));
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.24s ease-out;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dock-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(184,134,11,0.35);
}

.main-content {
    margin-left: 260px;
    min-height: 100vh;
}

.hero-section {
    padding: 100px 60px 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero-bg-patch {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: breathe 22s ease-in-out infinite;
}

.hero-bg-patch-1 {
    width: 400px;
    height: 400px;
    background: rgba(255,245,232,0.6);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero-bg-patch-2 {
    width: 300px;
    height: 300px;
    background: rgba(252,232,236,0.5);
    bottom: 10%;
    left: 20%;
    animation-delay: 7s;
}

.hero-bg-patch-3 {
    width: 350px;
    height: 350px;
    background: rgba(240,244,236,0.5);
    top: 40%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; transform: scale(1) translate(0, 0); }
    33% { opacity: 0.5; transform: scale(1.05) translate(10px, -15px); }
    66% { opacity: 0.6; transform: scale(0.98) translate(-10px, 10px); }
}

.hero-split {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding: 40px 60px 40px 40px;
}

.hero-title-line-1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: 0.2px;
    margin-bottom: 8px;
}

.hero-title-line-2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent-gold);
    letter-spacing: 0.2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1.4px;
    margin-bottom: 36px;
}

.hero-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-linen));
    color: #fff;
    border: 2px solid var(--accent-gold);
    border-radius: 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.24s ease-out;
    white-space: nowrap;
}

.hero-cta-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(184,134,11,0.4);
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    border-radius: 36px;
    border: 1px solid var(--accent-gold);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.services-section {
    padding: 80px 60px;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 48px;
}

.botanical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: var(--bg-primary);
    border-radius: 28px;
    padding: 32px;
    transition: all 0.24s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 36px rgba(184,134,11,0.22);
}

.bento-card-large {
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
}

.bento-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.bento-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.bento-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-section {
    padding: 80px 60px;
    background: var(--bg-primary);
}

.about-split {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-img {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--accent-sage);
}

.gallery-img img {
    width: 100%;
    display: block;
}

.about-content {
    padding: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
}

.about-content p:first-of-type::first-letter {
    font-size: 48px;
    font-weight: 600;
    color: var(--accent-gold);
    float: left;
    margin-right: 12px;
    line-height: 1;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 600;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.process-section {
    padding: 80px 60px;
    background: #EBE6DE;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-primary);
    border-radius: 20px;
    transition: all 0.24s ease-out;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(184,134,11,0.18);
}

.step-marker {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.step-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.process-connector {
    font-size: 18px;
    color: var(--accent-rose);
}

.features-section {
    padding: 80px 60px;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 36px;
    background: var(--bg-secondary);
    border-radius: 28px;
    transition: all 0.24s ease-out;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 36px rgba(184,134,11,0.22);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.achievement-strip {
    background: var(--text-primary);
    padding: 40px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 18s linear infinite;
}

.marquee-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.marquee-separator {
    color: var(--accent-rose);
    margin: 0 20px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.achievement-counters {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 48px;
    background: var(--text-primary);
}

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

.counter-number {
    font-size: 52px;
    font-weight: 600;
    color: var(--accent-gold);
}

.counter-label {
    font-size: 14px;
    color: var(--bg-secondary);
    margin-top: 8px;
}

.team-section {
    padding: 80px 60px;
    background: #EAE4DC;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-primary);
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    transition: all 0.24s ease-out;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.04);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.faq-section {
    padding: 80px 60px;
    background: #E4DED6;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 22px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.24s ease-out;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 20px;
    color: var(--accent-gold);
    transition: transform 0.24s ease-out;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reviews-section {
    padding: 80px 60px;
    background: #DCD6CE;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    flex: 0 0 360px;
    background: var(--bg-primary);
    border-radius: 28px;
    padding: 32px;
    scroll-snap-align: center;
    border-left: 4px solid var(--accent-gold);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.review-stars {
    color: var(--accent-linen);
    margin-top: 4px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 60px;
    background: var(--bg-primary);
}

.contact-split {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 28px;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid var(--accent-gold);
    background: transparent;
    font-size: 15px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.24s ease-out;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-sage);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-secondary);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-linen));
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.24s ease-out;
    margin-top: 12px;
}

.form-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(184,134,11,0.35);
}

.contact-info {
    padding: 20px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 24px;
    color: var(--accent-gold);
}

.contact-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.footer-section {
    background: var(--bg-secondary);
    padding: 60px;
    margin-left: 260px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.24s ease-out;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(61,54,50,0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-secondary);
}

.mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.24s ease-out;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1002;
    padding: 100px 40px 40px;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-header {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-menu-domain {
    font-size: 11px;
    color: var(--text-secondary);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 36px;
}

.mobile-nav-list a {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-menu-cta {
    margin-top: auto;
    text-align: center;
}

.mobile-menu-cta a {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-linen));
    color: #fff;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    border-radius: 24px;
    padding: 24px 32px;
    max-width: 400px;
    box-shadow: 0 12px 40px rgba(184,134,11,0.15);
    z-index: 2000;
    display: block;
}

.cookie-banner-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cookie-banner-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.24s ease-out;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-linen));
    color: #fff;
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-settings {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(61,54,50,0.1);
}

.cookie-settings-text {
    font-size: 12px;
    color: var(--accent-sage);
    cursor: pointer;
}

.cookie-settings-text:hover {
    text-decoration: underline;
}

@keyframes botanicalUnfold {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-unfold {
    animation: botanicalUnfold 540ms ease-out forwards;
}

.animate-unfold:nth-child(2) { animation-delay: 80ms; }
.animate-unfold:nth-child(3) { animation-delay: 160ms; }
.animate-unfold:nth-child(4) { animation-delay: 240ms; }
.animate-unfold:nth-child(5) { animation-delay: 320ms; }

@media (max-width: 1024px) {
    .vertical-dock {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .footer-section {
        margin-left: 0;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .botanical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card-large {
        grid-row: span 1;
    }
    
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-counters {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 24px 60px;
    }
    
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 28px;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .features-section,
    .team-section,
    .faq-section,
    .reviews-section,
    .contact-section,
    .footer-section {
        padding: 60px 24px;
    }
    
    .botanical-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-connector {
        transform: rotate(90deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number,
    .counter-number {
        font-size: 32px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .review-card {
        flex: 0 0 calc(100vw - 48px);
        max-width: 320px;
    }
}