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

:root {
    --gallery-bone: #FAF8F4;
    --salon-mist: #F2F0EB;
    --plinth-sand: #E5E3DD;
    --carbon-noir: #161616;
    --stone-taupe: #292929;
    --lacquer-red: #9B3A3A;
    --wenge-brown: #5D2828;
    --wenge-deep: #5D2828;
    
    --font-luxe: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    --shadow-float-1: 0 4px 12px rgba(22, 22, 22, 0.08);
    --shadow-float-2: 0 8px 24px rgba(22, 22, 22, 0.12);
    --shadow-float-3: 0 16px 48px rgba(22, 22, 22, 0.16);
    --shadow-float-4: 0 24px 72px rgba(22, 22, 22, 0.20);
    --shadow-red: 0 4px 20px rgba(155, 58, 58, 0.22);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--gallery-bone);
    color: var(--stone-taupe);
    font-size: 15px;
    line-height: 2.00;
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-luxe);
    font-weight: 700;
    color: var(--carbon-noir);
    letter-spacing: 0.002em;
    line-height: 0.72;
}

.luxe-bold {
    font-family: var(--font-luxe);
    font-weight: 700;
}

.luxe-medium {
    font-family: var(--font-luxe);
    font-weight: 500;
}

.uppercase-label {
    font-family: var(--font-luxe);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--carbon-noir);
}

.container-fluid {
    max-width: 100%;
}

.content-wrapper {
    padding-left: 276px;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-left: 0;
        padding-top: 52px;
    }
}

.fluid-bg {
    background: var(--gallery-bone);
    position: relative;
    overflow: hidden;
}

.fluid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(245, 240, 235, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(240, 238, 232, 0.5) 0%, transparent 50%);
    animation: fluidFlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fluidFlow {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.05) translate(1%, 1%); }
    66% { transform: scale(0.98) translate(-1%, -0.5%); }
}

.sidebar-dock {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: rgba(251, 249, 246, 0.97);
    border-right: 1px solid rgba(22, 22, 22, 0.05);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 28px 20px;
    transition: width 0.32s ease-out;
}

.sidebar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 36px;
}

.brand-icon {
    width: 22px;
    height: 22px;
    color: var(--lacquer-red);
}

.brand-domain {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 9px;
    color: var(--carbon-noir);
    letter-spacing: 0.14em;
    line-height: 1.20;
}

.brand-name {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 6px;
    color: var(--stone-taupe);
    margin-top: 2px;
    line-height: 1.34;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nav-item {
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 11px;
    color: var(--stone-taupe);
    cursor: pointer;
    padding: 10px 12px;
    transition: color 0.18s ease;
    border: none;
    background: none;
    text-align: left;
}

.nav-item:hover, .nav-item.active {
    color: var(--lacquer-red);
}

.sidebar-cta {
    margin-top: auto;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--lacquer-red), var(--wenge-brown));
    color: white;
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sidebar-cta:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-red);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background: rgba(251, 249, 246, 0.97);
    border-bottom: 1px solid rgba(22, 22, 22, 0.05);
    z-index: 9998;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}

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

.mobile-brand-icon {
    width: 20px;
    height: 20px;
    color: var(--lacquer-red);
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand-domain {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 8px;
    color: var(--carbon-noir);
    letter-spacing: 0.14em;
}

.mobile-brand-name {
    font-size: 5px;
    color: var(--stone-taupe);
}

.hamburger-btn {
    width: 28px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--carbon-noir);
    transition: transform 0.24s ease;
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    background: rgba(251, 249, 246, 0.98);
    z-index: 9997;
    padding: 40px 20px;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav-item {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-noir);
    padding: 16px 0;
    border-bottom: 1px solid var(--plinth-sand);
    display: block;
    cursor: pointer;
}

.mobile-nav-item:hover {
    color: var(--lacquer-red);
}

.mobile-menu-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--carbon-noir);
    display: none;
}

@media (max-width: 768px) {
    .sidebar-dock {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 120px 80px 120px 0;
    max-width: 55%;
}

.hero-title {
    font-size: clamp(3.6rem, 10vw, 11.6rem);
    line-height: 0.88;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--stone-taupe);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 48px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 26px 56px;
    background: linear-gradient(135deg, var(--lacquer-red), var(--wenge-brown));
    color: white;
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 28px 86px rgba(155, 58, 58, 0.22);
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 96px rgba(155, 58, 58, 0.28);
}

.hero-visual {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
}

.hero-card {
    position: absolute;
    background: white;
    box-shadow: var(--shadow-float-2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float-4);
    z-index: 96;
}

.hero-card-1 {
    width: 60%;
    height: 70%;
    top: 10%;
    left: 20%;
    z-index: 4;
}

.hero-card-2 {
    width: 50%;
    height: 50%;
    top: 5%;
    left: 0;
    z-index: 3;
}

.hero-card-3 {
    width: 55%;
    height: 55%;
    bottom: 5%;
    right: 5%;
    z-index: 5;
}

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

.hero-note {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-noir);
    margin-top: 24px;
}

.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(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--lacquer-red);
    border-bottom: 2px solid var(--lacquer-red);
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 72px;
        flex-direction: column;
    }
    
    .hero-content {
        padding: 0 24px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 40px;
    }
    
    .hero-card {
        width: 70% !important;
        height: 80% !important;
    }
}

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

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

.section-dark {
    background: var(--carbon-noir);
    color: white;
}

.section-dark strong, .section-dark p {
    color: white;
}

.section-dark h2 {
    color: white;
}

.section-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    margin-bottom: 48px;
}

.section-intro {
    font-size: 15px;
    line-height: 2;
    max-width: 720px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 24px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.floating-card {
    background: white;
    box-shadow: var(--shadow-float-2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lacquer-red);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.floating-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float-3);
    z-index: 88;
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card-content {
    padding: 32px;
}

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

.marquee-container {
    overflow: hidden;
    padding: 60px 0;
    background: var(--salon-mist);
}

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

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

.marquee-item {
    flex-shrink: 0;
    padding: 24px 32px;
    background: white;
    box-shadow: var(--shadow-float-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.marquee-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-float-4);
    z-index: 88;
}

.marquee-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.marquee-text {
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 14px;
    color: var(--carbon-noir);
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
}

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

.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--plinth-sand);
}

.timeline-node {
    position: relative;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
    cursor: pointer;
}

.timeline-node:hover {
    transform: scale(1.05);
    z-index: 96;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--lacquer-red);
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.timeline-label {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-noir);
}

.timeline-desc {
    font-size: 12px;
    color: var(--stone-taupe);
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.24s ease;
}

.timeline-node:hover .timeline-desc {
    opacity: 1;
}

@media (max-width: 768px) {
    .timeline-track {
        flex-direction: column;
        gap: 32px;
        padding: 20px 0;
    }
    
    .timeline-track::before {
        top: 0;
        bottom: 0;
        left: 20px;
        right: auto;
        width: 2px;
        height: 100%;
    }
    
    .timeline-node {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    
    .timeline-dot {
        margin: 0;
        flex-shrink: 0;
    }
}

.stats-marquee {
    display: flex;
    gap: 56px;
    padding: 40px 0;
    overflow: hidden;
}

.stats-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-noir);
    flex-shrink: 0;
}

.stats-icon {
    font-size: 20px;
}

.stats-divider {
    width: 24px;
    height: 1px;
    background: var(--lacquer-red);
}

@media (max-width: 768px) {
    .stats-marquee {
        flex-direction: column;
        gap: 24px;
    }
    
    .stats-marquee-item {
        justify-content: center;
    }
}

.accordion-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 120px 24px;
}

.accordion-item {
    background: white;
    box-shadow: var(--shadow-float-1);
    margin-bottom: 16px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, z-index 0.24s ease;
    cursor: pointer;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-float-2);
    z-index: 86;
}

.accordion-item.active {
    border-left: 2px solid var(--lacquer-red);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
}

.accordion-question {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-noir);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lacquer-red);
    transition: transform 0.24s ease;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-answer {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--stone-taupe);
    line-height: 1.8;
}

.carousel-section {
    padding: 120px 60px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 40px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.review-card {
    background: white;
    box-shadow: var(--shadow-float-2);
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s ease, opacity 0.4s ease;
    flex-shrink: 0;
    width: 340px;
    max-width: 340px;
    scroll-snap-align: center;
}

.review-card.active {
    transform: scale(1.08);
    z-index: 100;
    box-shadow: var(--shadow-float-4);
}

.review-card:not(.active) {
    transform: scale(0.9);
    z-index: 80;
    opacity: 0.6;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-float-2);
}

.review-text {
    font-size: 14px;
    color: var(--stone-taupe);
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-name {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 13px;
    color: var(--carbon-noir);
}

.review-quote {
    font-size: 16px;
    color: var(--lacquer-red);
    font-style: italic;
}

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

.carousel-btn {
    width: 48px;
    height: 48px;
    background: white;
    box-shadow: var(--shadow-float-1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.carousel-btn:hover {
    background: var(--lacquer-red);
    color: white;
    box-shadow: var(--shadow-red);
}

@media (max-width: 768px) {
    .carousel-track {
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
    }
    
    .review-card {
        width: 280px;
        max-width: 280px;
        transform: scale(0.95) !important;
        opacity: 0.5 !important;
    }
    
    .review-card.active {
        transform: scale(1) !important;
        opacity: 1 !important;
    }
}

.contact-section {
    padding: 120px 60px;
}

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

.contact-info {
    padding: 40px;
    background: white;
    box-shadow: var(--shadow-float-2);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lacquer-red);
}

.contact-item {
    margin-bottom: 28px;
}

.contact-label {
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 12px;
    color: var(--lacquer-red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 15px;
    color: var(--carbon-noir);
}

.contact-form {
    background: white;
    box-shadow: var(--shadow-float-2);
    padding: 40px;
}

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

.form-label {
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 12px;
    color: var(--carbon-noir);
    margin-bottom: 8px;
    display: block;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(155, 58, 58, 0.14);
    background: var(--gallery-bone);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--stone-taupe);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--lacquer-red);
    box-shadow: 0 0 0 3px rgba(155, 58, 58, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--lacquer-red), var(--wenge-brown));
    color: white;
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 80px 24px;
    }
}

.footer-section {
    background: var(--plinth-sand);
    border-top: 2px solid var(--lacquer-red);
    padding: 80px 60px 40px;
    padding-left: 276px;
}

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

.footer-col-title {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 13px;
    color: var(--carbon-noir);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 13px;
    color: var(--stone-taupe);
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: var(--lacquer-red);
}

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

.footer-brand-icon {
    width: 24px;
    height: 24px;
    color: var(--lacquer-red);
}

.footer-brand-name {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--stone-taupe);
}

.footer-desc {
    font-size: 12px;
    color: var(--stone-taupe);
    line-height: 1.6;
}

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

.footer-copyright {
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 11px;
    color: var(--stone-taupe);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 24px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    background: white;
    box-shadow: var(--shadow-float-4);
    padding: 28px;
    z-index: 9999;
    border-left: 4px solid var(--lacquer-red);
}

.cookie-title {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-noir);
    margin-bottom: 12px;
}

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

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--lacquer-red), var(--wenge-brown));
    color: white;
}

.cookie-btn-decline {
    background: var(--plinth-sand);
    color: var(--stone-taupe);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(245, 240, 235, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(240, 238, 232, 0.4) 0%, transparent 60%);
    animation: fluidFlow 25s ease-in-out infinite;
}

.page-hero-title {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 15px;
    color: var(--stone-taupe);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    box-shadow: var(--shadow-float-2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float-4);
    z-index: 88;
}

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

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

.service-card-title {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 18px;
    color: var(--carbon-noir);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--stone-taupe);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-price {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 20px;
    color: var(--lacquer-red);
    margin-bottom: 20px;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--lacquer-red);
    color: var(--lacquer-red);
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.service-card-btn:hover {
    background: var(--lacquer-red);
    color: white;
}

.team-card {
    background: white;
    box-shadow: var(--shadow-float-2);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float-4);
    z-index: 88;
}

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

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

.team-card-role {
    font-family: var(--font-luxe);
    font-weight: 500;
    font-size: 11px;
    color: var(--lacquer-red);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.team-card-name {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 16px;
    color: var(--carbon-noir);
    margin-bottom: 12px;
}

.team-card-bio {
    font-size: 13px;
    color: var(--stone-taupe);
    line-height: 1.6;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-float-2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-float-4);
    z-index: 88;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(22, 22, 22, 0.9));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.portfolio-title {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 14px;
}

.portfolio-type {
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 120px 60px;
    max-width: 960px;
    margin: 0 auto;
}

.legal-content {
    padding: 80px 60px;
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-title {
    font-family: var(--font-luxe);
    font-weight: 700;
    font-size: 20px;
    color: var(--carbon-noir);
    margin-bottom: 16px;
}

.legal-text {
    font-size: 14px;
    color: var(--stone-taupe);
    line-height: 1.9;
}

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

.thank-you-icon {
    font-size: 64px;
    margin-bottom: 32px;
}

.thank-you-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--stone-taupe);
    max-width: 500px;
    margin-bottom: 40px;
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}