@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --washi-cream: #FDF8F3;
    --peach-mist: #FFF5EE;
    --wasabi-green: #6B8E23;
    --wasabi-dark: #4A6B18;
    --saffron-gold: #D4A017;
    --terra-cotta: #E07B53;
    --deep-charcoal: #2D2D2D;
    --warm-gray: #8B8680;
    --light-gray: #A8A29E;
    --zen-gothic: 'Noto Sans JP', sans-serif;
    --space-mono: 'Space Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--zen-gothic);
    background-color: var(--washi-cream);
    color: var(--deep-charcoal);
    line-height: 1.85;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.pure-g {
    display: flex;
    flex-wrap: wrap;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 72px;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(107, 142, 35, 0.15);
    box-shadow: 4px 0 32px rgba(45, 45, 45, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.sidebar-nav:hover {
    width: 280px;
    border-right: 2px solid var(--wasabi-green);
}

.sidebar-logo {
    padding: 28px 20px;
    text-align: center;
}

.sidebar-logo svg {
    width: 40px;
    height: 40px;
}

.sidebar-logo-text {
    display: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--deep-charcoal);
    padding-top: 12px;
}

.sidebar-nav:hover .sidebar-logo-text {
    display: block;
}

.sidebar-logo-subtitle {
    display: none;
    font-size: 10px;
    color: var(--warm-gray);
    letter-spacing: 0.1em;
}

.sidebar-nav:hover .sidebar-logo-subtitle {
    display: block;
}

.sidebar-menu {
    flex: 1;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sidebar-item svg {
    width: 24px;
    height: 24px;
    stroke: rgba(45, 45, 45, 0.4);
    stroke-width: 1.5;
    flex-shrink: 0;
    transition: stroke 0.25s ease;
}

.sidebar-item span {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-left: 16px;
    white-space: nowrap;
}

.sidebar-item .nav-dot {
    display: none;
    width: 6px;
    height: 6px;
    background: var(--wasabi-green);
    border-radius: 50%;
    margin-left: auto;
}

.sidebar-nav:hover .sidebar-item span,
.sidebar-nav:hover .sidebar-item .nav-dot {
    display: block;
}

.sidebar-item:hover svg {
    stroke: var(--wasabi-green);
}

.sidebar-item:hover span {
    color: var(--wasabi-green);
}

.sidebar-footer {
    padding: 24px 20px;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sidebar-cta svg {
    width: 24px;
    height: 24px;
    stroke: var(--wasabi-green);
    stroke-width: 1.5;
    flex-shrink: 0;
}

.sidebar-cta-text {
    display: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--deep-charcoal);
    margin-left: 12px;
}

.sidebar-cta-phone {
    display: block;
    font-family: var(--space-mono);
    font-size: 10px;
    color: var(--wasabi-green);
    margin-top: 8px;
    text-align: center;
}

.sidebar-nav:hover .sidebar-cta-text {
    display: block;
}

.sidebar-nav:hover .sidebar-cta-phone {
    display: none;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 142, 35, 0.1);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--wasabi-green);
}

.mobile-menu-btn {
    width: 48px;
    height: 48px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--wasabi-green);
    stroke-width: 2;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(24px);
    z-index: 9999;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
}

.mobile-overlay.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-overlay-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-overlay-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--wasabi-green);
    stroke-width: 2;
}

.mobile-nav-item {
    font-size: 36px;
    font-weight: 700;
    color: var(--deep-charcoal);
    padding: 16px 0;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.35s ease;
}

.mobile-overlay.active .mobile-nav-item {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-item:nth-child(2) { transition-delay: 0.07s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.14s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.21s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.28s; }
.mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-item:nth-child(7) { transition-delay: 0.42s; }

.mobile-nav-dot {
    width: 8px;
    height: 8px;
    background: var(--wasabi-green);
    border-radius: 50%;
    margin: 8px auto;
}

.mobile-contact-info {
    margin-top: auto;
    padding-bottom: 40px;
    text-align: center;
}

.mobile-contact-phone {
    font-family: var(--space-mono);
    font-size: 14px;
    color: var(--wasabi-green);
    margin-bottom: 8px;
}

.mobile-contact-address {
    font-size: 12px;
    color: var(--warm-gray);
}

.hero-section {
    min-height: 100vh;
    background: var(--washi-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-mesh {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(107, 142, 35, 0.12) 0%, rgba(212, 160, 23, 0.06) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    z-index: 0;
    animation: meshFloat1 25s ease-in-out infinite alternate;
}

.hero-mesh-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(224, 123, 83, 0.1) 0%, rgba(107, 142, 35, 0.04) 50%, transparent 80%);
    filter: blur(60px);
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    z-index: 0;
    animation: meshFloat2 20s ease-in-out infinite alternate;
}

.hero-mesh-3 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
    z-index: 0;
}

@keyframes meshFloat1 {
    0% { transform: translate(0, 0) scale(0.95); }
    100% { transform: translate(40px, 40px) scale(1.05); }
}

@keyframes meshFloat2 {
    0% { transform: translate(0, 0) scale(0.95); }
    100% { transform: translate(-30px, -30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 160px 80px 80px 160px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-decor-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wasabi-green), rgba(107, 142, 35, 0.3));
    border-radius: 3px;
    margin-bottom: 24px;
    animation: expandLine 0.4s ease-out;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 60px; }
}

.hero-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--deep-charcoal);
    max-width: 480px;
    line-height: 0.92;
    margin-bottom: 20px;
    clip-path: inset(0 100% 0 0);
    animation: revealTitle 0.7s ease-out forwards;
}

@keyframes revealTitle {
    to { clip-path: inset(0 0 0 0); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--warm-gray);
    line-height: 1.75;
    max-width: 440px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--wasabi-green);
    border-radius: 50%;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.btn-primary {
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--wasabi-green), var(--wasabi-dark));
    color: white;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(107, 142, 35, 0.25);
    transition: all 0.25s ease-out;
    font-family: var(--zen-gothic);
    font-size: 14px;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(107, 142, 35, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--deep-charcoal);
    color: var(--deep-charcoal);
    font-weight: 600;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    font-family: var(--zen-gothic);
    font-size: 14px;
}

.btn-secondary:hover {
    border-color: var(--wasabi-green);
    color: var(--wasabi-green);
}

.hero-visual {
    position: relative;
    animation: fadeIn 0.7s ease-out 0.2s both;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 32px;
    filter: saturate(1.05);
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(253, 248, 243, 0.15) 0%, transparent 60%);
    border-radius: 32px;
    z-index: 2;
    pointer-events: none;
}

.hero-cards {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(107, 142, 35, 0.1);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 12px 40px rgba(45, 45, 45, 0.06);
}

.hero-card-1 {
    top: 80px;
    right: -20px;
}

.hero-card-2 {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-card-3 {
    bottom: 80px;
    right: -20px;
}

.hero-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 4px;
}

.hero-card-value {
    font-family: var(--space-mono);
    font-size: 11px;
    color: var(--wasabi-green);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.section {
    padding: 140px 80px;
    position: relative;
}

.section-alt {
    background: var(--peach-mist);
}

.section-dark {
    background: var(--wasabi-green);
    color: white;
}

.section-dark .section-title,
.section-dark .section-subtitle {
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-decor-line {
    width: 32px;
    height: 3px;
    background: var(--wasabi-green);
    border-radius: 3px;
    margin: 0 auto 16px;
    display: inline-block;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.7;
}

.services-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 80px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex-shrink: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(107, 142, 35, 0.08);
    box-shadow: 0 16px 56px rgba(45, 45, 45, 0.06);
    padding: 0;
    scroll-snap-align: center;
    transition: all 0.25s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 24px 72px rgba(107, 142, 35, 0.12);
    border-color: rgba(107, 142, 35, 0.2);
    transform: translateY(-4px);
}

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 0 28px 28px;
    text-align: center;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 40px auto 20px;
    display: block;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--wasabi-green);
    stroke-width: 2;
    fill: none;
}

.service-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
}

.service-card-text {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.65;
    max-width: 260px;
    margin: 0 auto;
}

.service-card-price {
    font-family: var(--space-mono);
    font-size: 14px;
    color: var(--wasabi-green);
    margin-top: 16px;
    font-weight: 700;
}

.service-card-decor {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--wasabi-green), var(--saffron-gold));
    border-radius: 3px;
    margin: 20px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 80px;
}

.about-photo {
    border-radius: 24px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.about-text {
    padding: 40px 0;
}

.about-decor-line {
    width: 48px;
    height: 3px;
    background: var(--wasabi-green);
    border-radius: 3px;
    margin-bottom: 24px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #5D5D5D;
    line-height: 1.8;
}

.about-dot {
    width: 4px;
    height: 4px;
    background: var(--wasabi-green);
    border-radius: 50%;
    margin: 16px auto;
}

.about-btn {
    margin-top: 32px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--wasabi-green), var(--wasabi-dark));
    color: white;
    font-weight: 600;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--zen-gothic);
    font-size: 14px;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 142, 35, 0.25);
}

.marquee-container {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(107, 142, 35, 0.1);
    border-bottom: 1px solid rgba(107, 142, 35, 0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-charcoal);
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding: 0 40px;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--saffron-gold);
    border-radius: 50%;
    display: inline-block;
    margin: 0 40px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--wasabi-green), var(--saffron-gold), var(--wasabi-green));
    border-radius: 3px;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 56px);
    position: relative;
    margin-bottom: 48px;
}

.process-step:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 56px);
}

.step-card {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 28px 32px;
    border: 1px solid rgba(107, 142, 35, 0.08);
    box-shadow: 0 8px 32px rgba(45, 45, 45, 0.04);
}

.step-number {
    width: 56px;
    height: 56px;
    background: rgba(107, 142, 35, 0.1);
    border: 2px solid var(--wasabi-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--wasabi-green);
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.step-text {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 14px;
    height: 14px;
    background: var(--wasabi-green);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--wasabi-green);
    transform: translateX(-50%);
    z-index: 2;
}

.advantages-overlap {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 80px;
    position: relative;
}

.advantage-card {
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 32px;
    margin-left: -40px;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.advantage-card:first-child {
    margin-left: 0;
}

.advantage-card:hover {
    transform: translateY(-12px) scale(1.05);
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    background: white;
}

.advantage-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--wasabi-green);
    stroke-width: 2;
    fill: none;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.advantage-text {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.65;
}

.achievements-masonry {
    columns: 3;
    column-gap: 24px;
    padding: 0 80px;
}

.achievement-card {
    break-inside: avoid;
    background: white;
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.25s ease;
}

.achievement-card:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(45, 45, 45, 0.1);
    z-index: 10;
    position: relative;
}

.achievement-card-gradient {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.9), rgba(74, 107, 24, 0.9));
    color: white;
}

.achievement-card-gradient .achievement-number {
    color: white;
}

.achievement-card-gradient .achievement-label {
    color: rgba(255, 255, 255, 0.8);
}

.achievement-card-gradient-gold {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.9), rgba(180, 130, 20, 0.9));
    color: white;
}

.achievement-card-gradient-gold .achievement-number {
    color: white;
}

.achievement-card-gradient-gold .achievement-label {
    color: rgba(255, 255, 255, 0.8);
}

.achievement-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--deep-charcoal);
    line-height: 1;
}

.achievement-number-sm {
    font-size: 56px;
}

.achievement-number-xs {
    font-size: 40px;
}

.achievement-label {
    font-family: var(--space-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--warm-gray);
    margin-top: 8px;
}

.achievement-decor {
    width: 48px;
    height: 48px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 24px;
    right: 24px;
}

.team-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(107, 142, 35, 0.1);
}

.team-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(107, 142, 35, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.team-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-charcoal);
    transition: color 0.25s ease;
}

.team-item:hover .team-name {
    color: var(--wasabi-green);
}

.team-role {
    font-size: 13px;
    color: var(--warm-gray);
    margin-top: 4px;
}

.team-specialty {
    font-family: var(--space-mono);
    font-size: 11px;
    color: var(--light-gray);
}

.team-photo {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--wasabi-green);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 5;
}

.team-item:hover .team-photo {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 80px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 28px 32px;
    border: 1px solid rgba(107, 142, 35, 0.08);
    box-shadow: 0 8px 32px rgba(45, 45, 45, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:nth-child(even) {
    margin-top: 28px;
}

.faq-item.active {
    background: rgba(107, 142, 35, 0.04);
    border-left: 4px solid var(--wasabi-green);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--deep-charcoal);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--warm-gray);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon svg {
    stroke: var(--wasabi-green);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-text {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.75;
    padding-top: 16px;
}

.testimonials-carousel {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 340px;
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    box-shadow: 0 16px 56px rgba(45, 45, 45, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
    transform-style: preserve-3d;
}

.testimonial-card.active {
    scale: 0.80;
    z-index: 100;
    border-color: var(--wasabi-green);
}

.testimonial-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: saturate(1.05);
}

.testimonial-content {
    padding: 28px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--saffron-gold);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #5D5D5D;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-charcoal);
}

.testimonial-source {
    font-size: 12px;
    color: var(--warm-gray);
}

.carousel-arrow {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(107, 142, 35, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.25s ease;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(107, 142, 35, 0.15);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--wasabi-green);
    stroke-width: 2;
}

.carousel-prev {
    left: 80px;
}

.carousel-next {
    right: 80px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-form-section {
    padding: 80px 60px;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-family: var(--space-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(45, 45, 45, 0.1);
    background: transparent;
    font-size: 16px;
    color: var(--deep-charcoal);
    font-family: var(--zen-gothic);
    transition: border-color 0.25s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--wasabi-green);
}

.form-input:focus + .form-label,
.form-input:focus ~ .form-label {
    color: var(--wasabi-green);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 80px 48px;
    border: 1px solid rgba(107, 142, 35, 0.08);
    box-shadow: 0 12px 48px rgba(45, 45, 45, 0.06);
    margin: 40px;
}

.contact-info-item {
    padding: 28px;
}

.contact-info-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(107, 142, 35, 0.15), transparent);
    margin: 20px 0;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--wasabi-green);
    stroke-width: 1.5;
    fill: none;
}

.contact-info-text {
    font-size: 16px;
    color: var(--warm-gray);
}

.contact-map {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 45, 45, 0.06);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: sepia(10%) saturate(0.95);
}

.page-hero {
    min-height: 280px;
    background: var(--peach-mist);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.page-hero-mesh .hero-mesh {
    filter: blur(100px);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 140px 80px 80px 160px;
    max-width: 560px;
}

.breadcrumbs {
    font-family: var(--space-mono);
    font-size: 12px;
    color: var(--light-gray);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--light-gray);
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: var(--wasabi-green);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--deep-charcoal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title::before {
    content: '';
    width: 32px;
    height: 3px;
    background: var(--wasabi-green);
    border-radius: 3px;
}

.page-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.page-marker {
    width: 6px;
    height: 6px;
    background: var(--wasabi-green);
    border-radius: 50%;
}

footer {
    background: var(--deep-charcoal);
    color: white;
    padding: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--wasabi-green);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--wasabi-green);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 56px rgba(45, 45, 45, 0.15);
    z-index: 9999;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.cookie-text {
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--zen-gothic);
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--wasabi-green), var(--wasabi-dark));
    color: white;
}

.cookie-decline {
    background: rgba(45, 45, 45, 0.1);
    color: var(--deep-charcoal);
}

.cookie-settings {
    background: transparent;
    color: var(--wasabi-green);
    text-decoration: underline;
    padding: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 80px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(45, 45, 45, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
    grid-row: span 2;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(5) img {
    height: 584px;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.65s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.6s ease-out;
}

.reveal-organic {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s ease-out;
}

.reveal-fade.visible,
.reveal-up.visible,
.reveal-scale.visible,
.reveal-left.visible,
.reveal-organic.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 40px 80px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .section {
        padding: 80px 40px;
    }
    
    .services-scroll {
        padding: 0 40px;
        flex-direction: column;
    }
    
    .service-card {
        width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .process-timeline {
        padding: 0 40px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .advantages-overlap {
        flex-direction: column;
        padding: 0 40px;
        gap: 24px;
    }
    
    .advantage-card {
        margin-left: 0;
        width: 100%;
    }
    
    .achievements-masonry {
        columns: 1;
        padding: 0 40px;
    }
    
    .team-list {
        grid-template-columns: 1fr;
    }
    
    .team-info {
        padding: 0 40px;
    }
    
    .team-photo {
        position: fixed;
        right: 20px;
        top: auto;
        bottom: 20px;
        transform: translateX(20px);
        width: 200px;
        height: 140px;
    }
    
    .team-item:hover .team-photo {
        transform: translateX(0);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .faq-item:nth-child(even) {
        margin-top: 0;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 60px 40px;
    }
    
    .contact-info-section {
        margin: 0 40px 40px;
    }
    
    .page-hero-content {
        padding: 120px 40px 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 40px;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5) {
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(5) img {
        height: 280px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .about-grid,
    .process-timeline,
    .advantages-overlap,
    .achievements-masonry,
    .team-info,
    .faq-grid,
    .gallery-grid {
        padding: 0 20px;
    }
    
    .contact-form-section {
        padding: 40px 20px;
    }
    
    .contact-info-section {
        margin: 0 20px 20px;
        padding: 40px 24px;
    }
    
    .page-hero-content {
        padding: 100px 20px 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img,
    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(5) img {
        height: 200px;
    }
    
    footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(45, 45, 45, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--wasabi-green), var(--saffron-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}
