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

:root {
    --concrete-white: #FCFAF8;
    --misty-dawn: #F4F0EC;
    --morning-haze: #EBE7E4;
    --deep-slate: #2A2420;
    --warm-umber: #3A3428;
    --construction-terra: #B48A60;
    --deep-gravel: #947040;
    
    --font-heading: 'Noto Serif JP', 'Tsukushi Pro Neo Bold', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    
    --shadow-floating: 0 16px 48px rgba(160, 150, 140, 0.18);
    --shadow-floating-hover: 0 24px 64px rgba(160, 150, 140, 0.28);
    --shadow-cta: 0 18px 72px rgba(180, 130, 80, 0.38);
    
    --radius-card: 16px;
    --radius-card-hover: 24px;
    --transition-smooth: 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--concrete-white);
    color: var(--warm-umber);
    line-height: 1.76;
    font-size: 17px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 252, 248, 0.8) 0%, rgba(248, 244, 240, 0.6) 40%, rgba(242, 238, 234, 0.4) 70%, rgba(236, 232, 228, 0.3) 100%);
    pointer-events: none;
    z-index: -1;
    animation: glassyShift 20s ease-in-out infinite alternate;
}

@keyframes glassyShift {
    0% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.85; transform: scale(1); }
}

strong, p {
    color: inherit;
}

a {
    color: var(--construction-terra);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--deep-gravel);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-slate);
    line-height: 0.82;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(4.2rem, 8vw, 8rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.floating-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 82;
}

.floating-card:hover {
    border-radius: var(--radius-card-hover);
    box-shadow: var(--shadow-floating-hover);
    transform: scale(1.04);
    z-index: 96;
}

.terra-accent {
    color: var(--construction-terra);
}

.terra-gradient {
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-cta);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(180, 130, 80, 0.48);
    color: #FFFFFF;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(252, 250, 248, 0.95);
    color: var(--deep-slate);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    border-radius: 16px;
    border: 2px solid var(--construction-terra);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--construction-terra);
    color: #FFFFFF;
}

.thin-vertical-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 64px;
    height: 100%;
    background: rgba(252, 250, 248, 0.98);
    border-right: 2px solid rgba(140, 130, 120, 0.12);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
}

.sidebar-logo {
    margin-top: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.sidebar-logo svg {
    width: 24px;
    height: 24px;
    fill: var(--deep-slate);
}

.sidebar-logo-text {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-top: 8px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.sidebar-nav a {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--deep-slate);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 4px;
}

.sidebar-nav a:hover {
    color: var(--construction-terra);
    transform: scale(1.06);
    background: rgba(180, 130, 80, 0.08);
}

.sidebar-nav a.active {
    color: var(--construction-terra);
    font-weight: 700;
}

.sidebar-cta {
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 8px;
    border-radius: 20px;
    box-shadow: 0 10px 36px rgba(180, 130, 80, 0.32);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(180, 130, 80, 0.42);
}

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

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

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--deep-slate);
    transition: var(--transition-smooth);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 250, 248, 0.98);
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-slate);
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--construction-terra);
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(252, 250, 248, 0.98);
    border: 1px solid rgba(140, 130, 120, 0.2);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--deep-slate);
}

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

.hero-content {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--warm-umber);
    line-height: 1.6;
    max-width: 480px;
    margin-top: 32px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-secondary {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--deep-slate);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    width: 85%;
    height: 75%;
    border-radius: var(--radius-card);
    box-shadow: 0 40px 140px rgba(160, 150, 140, 0.18);
    overflow: hidden;
    position: relative;
    animation: floatingCard 6s ease-in-out infinite;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

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

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

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: var(--construction-terra);
}

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

.lens-mask-reveal {
    position: relative;
}

.lens-mask-reveal::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(180, 138, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.18s ease-out;
    z-index: 999;
}

.lens-mask-reveal:hover::after {
    opacity: 1;
}

.section {
    padding: 120px 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--deep-slate);
    line-height: 0.82;
    letter-spacing: -0.01em;
    margin-bottom: 64px;
}

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

.service-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card:hover {
    border-radius: var(--radius-card-hover);
    box-shadow: var(--shadow-floating-hover);
    transform: scale(1.04) translateY(-8px);
    z-index: 96;
}

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

.service-card-content {
    padding: 24px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--warm-umber);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-price {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--construction-terra);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--construction-terra);
    transition: gap 0.3s ease;
}

.service-card-link:hover {
    gap: 12px;
}

.sticky-split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sticky-content {
    position: sticky;
    top: 120px;
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--construction-terra);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--concrete-white);
    border: 3px solid var(--construction-terra);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.timeline-item:hover::before {
    transform: scale(1.3);
    background: var(--construction-terra);
}

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

.timeline-item-desc {
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.6;
}

.marquee-container {
    overflow: hidden;
    padding: 40px 0;
    background: var(--morning-haze);
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(252, 250, 248, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(160, 150, 140, 0.12);
    white-space: nowrap;
}

.marquee-item-number {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--construction-terra);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.marquee-item-text {
    font-size: 14px;
    color: var(--deep-slate);
    font-weight: 500;
}

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

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

.advantage-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-floating-hover);
    z-index: 96;
}

.advantage-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    border-radius: 50%;
}

.advantage-card-icon svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

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

.advantage-card-desc {
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.6;
}

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

.faq-item {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    z-index: 96;
    box-shadow: var(--shadow-floating-hover);
}

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

.faq-question:hover {
    background: rgba(180, 130, 80, 0.04);
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--deep-slate);
    font-weight: 500;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--morning-haze);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--deep-slate);
    transition: var(--transition-smooth);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transform: rotate(90deg);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.faq-answer-text {
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.7;
    padding-left: 24px;
    border-left: 3px solid var(--construction-terra);
}

.reviews-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 40px 0;
    -webkit-overflow-scrolling: touch;
}

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

.review-card {
    flex: 0 0 380px;
    scroll-snap-align: center;
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
}

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

.review-card-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--construction-terra);
}

.review-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 8px;
}

.review-card-text {
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-card-author {
    font-size: 14px;
    color: var(--construction-terra);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(252, 250, 248, 0.95);
    border: 2px solid var(--construction-terra);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--construction-terra);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--construction-terra);
    transition: fill 0.3s ease;
}

.carousel-btn:hover svg {
    fill: #FFFFFF;
}

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

.contact-info-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 40px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 32px;
}

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

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.contact-info-label {
    font-size: 12px;
    color: var(--warm-umber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    color: var(--deep-slate);
    font-weight: 500;
}

.contact-form {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 40px;
}

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

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid var(--morning-haze);
    border-radius: 12px;
    background: var(--concrete-white);
    color: var(--deep-slate);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--construction-terra);
    box-shadow: 0 0 0 4px rgba(180, 130, 80, 0.12);
}

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
}

footer {
    background: var(--morning-haze);
    border-top: 3px solid var(--construction-terra);
    padding: 80px;
}

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

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 24px;
}

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

.footer-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--construction-terra);
}

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

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

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

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

.footer-links a {
    font-size: 14px;
    color: var(--warm-umber);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--construction-terra);
    padding-left: 4px;
}

.footer-copyright {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid rgba(140, 130, 120, 0.2);
}

.footer-copyright p {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--warm-umber);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: rgba(252, 250, 248, 0.98);
    border-radius: var(--radius-card);
    box-shadow: 0 24px 80px rgba(160, 150, 140, 0.28);
    padding: 32px;
    z-index: 9999;
    border: 2px solid var(--construction-terra);
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 16px;
}

.cookie-banner-text {
    font-size: 14px;
    color: var(--warm-umber);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    color: #FFFFFF;
    border: none;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(180, 130, 80, 0.32);
}

.cookie-btn-decline {
    background: var(--concrete-white);
    color: var(--deep-slate);
    border: 2px solid var(--construction-terra);
}

.cookie-btn-decline:hover {
    background: var(--morning-haze);
}

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

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 32px;
}

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

.hero-section-inner {
    min-height: 55vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 80px 80px 80px 80px;
    position: relative;
}

.inner-hero-content {
    padding: 60px 0;
}

.inner-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.inner-hero-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    object-fit: cover;
}

.page-content {
    padding: 80px;
}

.process-section {
    padding: 120px 80px;
    background: var(--misty-dawn);
}

.shape-morphing-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: 8px;
    box-shadow: var(--shadow-floating);
    padding: 48px;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--construction-terra);
}

.shape-morphing-card:hover {
    border-radius: 24px;
    box-shadow: var(--shadow-floating-hover);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-floating-hover);
    z-index: 96;
}

.team-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-content {
    padding: 24px;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card-role {
    font-size: 14px;
    color: var(--construction-terra);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card-desc {
    font-size: 14px;
    color: var(--warm-umber);
    line-height: 1.6;
}

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

.portfolio-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-floating-hover);
    z-index: 96;
}

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

.portfolio-card-content {
    padding: 20px;
}

.portfolio-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-card-desc {
    font-size: 13px;
    color: var(--warm-umber);
    line-height: 1.5;
}

.pricing-table {
    width: 100%;
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 32px;
    border-bottom: 1px solid var(--morning-haze);
    transition: background 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(180, 130, 80, 0.04);
}

.pricing-header {
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    color: #FFFFFF;
}

.pricing-header .pricing-cell {
    font-weight: 700;
    color: #FFFFFF;
}

.pricing-cell {
    font-size: 15px;
    color: var(--warm-umber);
    display: flex;
    align-items: center;
}

.pricing-cell-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--construction-terra);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 60px;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-text {
    font-size: 16px;
    color: var(--warm-umber);
    line-height: 1.8;
}

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

.thank-you-content {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 80px;
    max-width: 700px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--construction-terra), var(--deep-gravel));
    border-radius: 50%;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    fill: #FFFFFF;
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--warm-umber);
    line-height: 1.7;
    margin-bottom: 32px;
}

.careers-list {
    display: grid;
    gap: 24px;
}

.career-card {
    background: rgba(252, 250, 248, 0.96);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-floating);
    padding: 32px;
    transition: var(--transition-smooth);
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-floating-hover);
}

.career-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-slate);
    font-weight: 700;
    margin-bottom: 12px;
}

.career-desc {
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.6;
    margin-bottom: 16px;
}

.career-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.career-tag {
    padding: 6px 14px;
    background: var(--morning-haze);
    border-radius: 20px;
    font-size: 12px;
    color: var(--warm-umber);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-section,
    .hero-section-inner {
        grid-template-columns: 1fr;
        padding-left: 24px;
        padding-right: 24px;
        min-height: auto;
    }
    
    .hero-visual,
    .inner-hero-visual {
        height: 400px;
    }
    
    .thin-vertical-sidebar {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .section {
        padding: 80px 24px;
    }
    
    .sticky-split-screen {
        grid-template-columns: 1fr;
    }
    
    .sticky-content {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-content {
        padding: 60px 24px;
    }
    
    footer {
        padding: 60px 24px;
    }
    
    .pricing-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-cell:nth-child(2) {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    
    h2 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .review-card {
        flex: 0 0 300px;
    }
    
    .legal-content {
        padding: 40px 24px;
    }
    
    .thank-you-section {
        padding: 40px 24px;
    }
    
    .thank-you-content {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 12px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-item::before {
        left: 2px;
        width: 18px;
        height: 18px;
    }
}