@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
    --color-clean-white: #FAFCFA;
    --color-soap-mist: #F0F4F0;
    --color-crystal-light: #E4EAE4;
    --color-deep-forest: #1A2A20;
    --color-slate-green: #2A3A30;
    --color-fresh-mint: #308260;
    --color-deep-pine: #286450;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-mint-glow: 0 14px 56px rgba(48, 130, 96, 0.32);
    --shadow-card-hover: 0 24px 64px rgba(48, 130, 96, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background-color: var(--color-clean-white);
    color: var(--color-slate-green);
    line-height: 1.78;
    font-size: 17px;
    overflow-x: hidden;
}

strong, p, span {
    color: inherit;
}

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

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

.vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 56px;
    height: 100vh;
    background: rgba(250, 252, 250, 0.98);
    border-right: 2px solid rgba(48, 130, 96, 0.10);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    transition: width 0.3s ease;
}

.vertical-nav:hover {
    width: 180px;
}

.nav-logo {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.nav-logo-text {
    font-weight: 700;
    font-size: 11px;
    color: var(--color-deep-forest);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-nav:hover .nav-logo-text {
    opacity: 1;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-deep-forest);
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.nav-item:hover {
    color: var(--color-fresh-mint);
    transform: scale(1.06);
    background: rgba(48, 130, 96, 0.06);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 8px;
}

.nav-item-text {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-nav:hover .nav-item-text {
    opacity: 1;
}

.nav-cta {
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--color-fresh-mint), var(--color-deep-pine));
    color: white;
    font-size: 7px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: var(--shadow-mint-glow);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    width: 40px;
    text-align: center;
}

.vertical-nav:hover .nav-cta {
    width: auto;
    padding: 12px 20px;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.main-content {
    margin-left: 56px;
}

.fluid-canvas {
    position: fixed;
    top: 0;
    left: 56px;
    width: calc(100% - 56px);
    height: 100vh;
    background: var(--color-clean-white);
    z-index: -1;
    overflow: hidden;
}

.fluid-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 130, 96, 0.02) 0%, rgba(48, 130, 96, 0.04) 50%, rgba(48, 130, 96, 0.02) 100%);
    animation: flowSlow 24s ease-in-out infinite alternate;
}

@keyframes flowSlow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-20px) translateY(-10px); }
}

.geometric-frame {
    position: relative;
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 4px;
    box-shadow: 0 40px 140px rgba(48, 130, 96, 0.10);
    transition: var(--transition-smooth);
}

.geometric-frame:hover {
    border-color: rgba(48, 130, 96, 0.20);
    box-shadow: 0 48px 160px rgba(48, 130, 96, 0.16);
}

.frame-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(48, 130, 96, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 130, 96, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.5;
}

.section {
    padding: 120px 72px;
    position: relative;
}

.section-dark {
    background: var(--color-soap-mist);
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
    padding: 0 72px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 48px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--color-deep-forest);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title .char {
    display: inline-block;
    animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-slate-green);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--color-fresh-mint), var(--color-deep-pine));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 18px 72px rgba(48, 130, 96, 0.38);
    cursor: pointer;
    transition: all 0.32s ease;
    border: none;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(48, 130, 96, 0.44);
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-deep-forest);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-visual {
    position: relative;
    height: 80vh;
    max-height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 16px;
}

.bento-item {
    background: var(--color-clean-white);
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 80;
    cursor: pointer;
}

.bento-item:hover {
    transform: scale(1.04);
    z-index: 96;
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-fresh-mint);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.bento-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-deep-forest);
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 14px;
    color: var(--color-slate-green);
    line-height: 1.5;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(48, 130, 96, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-deep-forest);
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-slate-green);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 56px;
}

.timeline {
    position: relative;
    padding-left: 50%;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-fresh-mint);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 32px 0;
    padding-right: 48px;
}

.timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 48px;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 32px;
    width: 56px;
    height: 56px;
    background: var(--color-clean-white);
    border: 2px solid var(--color-fresh-mint);
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 88;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-node {
    transform: translateX(-50%) scale(1.10);
    z-index: 96;
    box-shadow: var(--shadow-card-hover);
}

.timeline-content {
    background: var(--color-clean-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px dashed rgba(48, 130, 96, 0.14);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--color-fresh-mint);
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 15px;
    color: var(--color-slate-green);
}

.marquee-container {
    overflow: hidden;
    padding: 40px 0;
    background: var(--color-crystal-light);
}

.marquee-track {
    display: flex;
    gap: 56px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

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

.marquee-item {
    flex-shrink: 0;
    padding: 24px 40px;
    background: var(--color-clean-white);
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-forest);
    white-space: nowrap;
}

.marquee-item span {
    color: var(--color-fresh-mint);
}

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

.card-item {
    background: var(--color-clean-white);
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 80;
}

.card-item:hover {
    transform: scale(1.04);
    z-index: 96;
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-fresh-mint);
    flex-grow: 1.4;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(48, 130, 96, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.card-desc {
    font-size: 15px;
    color: var(--color-slate-green);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-member {
    padding: 24px;
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.team-member:hover {
    border-color: var(--color-fresh-mint);
    background: rgba(48, 130, 96, 0.04);
}

.team-member.active {
    border-color: var(--color-fresh-mint);
    background: rgba(48, 130, 96, 0.08);
}

.team-member-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 14px;
    color: var(--color-fresh-mint);
    font-weight: 500;
}

.team-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    border: 1px dashed rgba(48, 130, 96, 0.14);
    transition: var(--transition-smooth);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 80;
}

.faq-item:hover {
    z-index: 96;
    border-color: var(--color-fresh-mint);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-deep-forest);
    background: var(--color-clean-white);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-fresh-mint);
    transition: transform 0.4s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--color-soap-mist);
}

.faq-answer-content {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--color-slate-green);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--color-clean-white);
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 80;
    scroll-snap-align: center;
}

.review-card.active {
    transform: scale(1.15);
    z-index: 100;
    box-shadow: var(--shadow-card-hover);
}

.review-card:hover {
    z-index: 96;
    border-color: var(--color-fresh-mint);
}

.review-card:not(.active) {
    transform: scale(0.85);
    opacity: 0.7;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--color-fresh-mint);
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 4px;
}

.review-text {
    font-size: 15px;
    color: var(--color-slate-green);
    font-style: italic;
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--color-clean-white);
    border: 1px solid var(--color-fresh-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
    color: var(--color-fresh-mint);
}

.carousel-btn:hover {
    background: var(--color-fresh-mint);
    color: white;
}

.carousel-btn.prev { left: 20%; }
.carousel-btn.next { right: 20%; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(48, 130, 96, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-fresh-mint);
}

.contact-info-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    color: var(--color-slate-green);
}

.contact-form {
    background: var(--color-clean-white);
    border: 1px dashed rgba(48, 130, 96, 0.14);
    border-radius: 16px;
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px dashed var(--color-fresh-mint);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--color-deep-forest);
    background: var(--color-clean-white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(48, 130, 96, 0.15);
}

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

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--color-fresh-mint), var(--color-deep-pine));
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.32s ease;
    box-shadow: var(--shadow-mint-glow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(48, 130, 96, 0.40);
}

.site-footer {
    background: var(--color-crystal-light);
    border-top: 3px solid var(--color-fresh-mint);
    padding: 64px 72px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--color-slate-green);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-fresh-mint);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 36px;
    height: 36px;
}

.footer-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-deep-forest);
}

.footer-desc {
    font-size: 14px;
    color: var(--color-slate-green);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(48, 130, 96, 0.14);
}

.footer-copyright {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-deep-forest);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 80px;
    background: var(--color-clean-white);
    border: 2px solid var(--color-fresh-mint);
    border-radius: 16px;
    padding: 24px;
    max-width: 420px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: block;
}

.cookie-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 14px;
    color: var(--color-slate-green);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--color-fresh-mint), var(--color-deep-pine));
    color: white;
}

.cookie-btn.decline {
    background: var(--color-soap-mist);
    color: var(--color-deep-forest);
    border: 1px solid rgba(48, 130, 96, 0.2);
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 252, 250, 0.98);
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-deep-forest);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--color-fresh-mint);
}

.hamburger {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(250, 252, 250, 0.98);
    border: 1px solid rgba(48, 130, 96, 0.2);
    border-radius: 10px;
    z-index: 9999;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--color-deep-forest);
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.inner-page-hero {
    min-height: 55vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 72px;
    background: var(--color-soap-mist);
    position: relative;
    overflow: hidden;
}

.inner-page-hero-content {
    padding-right: 48px;
}

.inner-page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-deep-forest);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.inner-page-hero-subtitle {
    font-size: 18px;
    color: var(--color-slate-green);
    line-height: 1.6;
    max-width: 480px;
}

.inner-page-hero-visual {
    position: relative;
    height: 400px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 42, 32, 0.9));
    color: white;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 16px;
    margin-top: 32px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--color-slate-green);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.service-price-card {
    background: var(--color-clean-white);
    border: 2px solid var(--color-fresh-mint);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.service-price-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-fresh-mint);
    margin-bottom: 8px;
}

.service-price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-deep-forest);
}

.service-price-unit {
    font-size: 14px;
    color: var(--color-slate-green);
}

.service-cta-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--color-fresh-mint), var(--color-deep-pine));
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.32s ease;
    text-align: center;
    display: block;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(48, 130, 96, 0.40);
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 72px;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: rgba(48, 130, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--color-fresh-mint);
}

.thank-you-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--color-slate-green);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.legal-section {
    padding: 120px 72px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-deep-forest);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 16px;
    color: var(--color-slate-green);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    color: var(--color-slate-green);
    line-height: 1.8;
    margin-bottom: 8px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 32px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .vertical-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .fluid-canvas {
        left: 0;
        width: 100%;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 120px 24px 80px;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-visual {
        height: 50vh;
    }
    
    .section {
        padding: 80px 24px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento-item.large {
        grid-column: span 2;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 28px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 72px;
        padding-right: 0;
    }
    
    .timeline-node {
        left: 28px;
        transform: translateX(-50%);
    }
    
    .timeline-item:hover .timeline-node {
        transform: translateX(-50%) scale(1.10);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .inner-page-hero {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
        min-height: auto;
    }
    
    .inner-page-hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .inner-page-hero-subtitle {
        margin: 0 auto;
    }
    
    .inner-page-hero-visual {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        position: static;
    }
    
    .legal-section {
        padding: 80px 24px;
    }
    
    .carousel-btn {
        display: none;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.large {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .hero-cta {
        padding: 16px 32px;
        font-size: 14px;
    }
}