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

:root {
    --plaster-white: #FCFAF7;
    --trowel-mist: #F4F0E8;
    --substrate-light: #EBE7E2;
    --deep-umber: #2A2520;
    --warm-espresso: #3A3028;
    --artisan-clay: #B48458;
    --deep-sienna: #946838;
    --clay-glow: rgba(180, 130, 90, 0.32);
    --kinetic-opacity-min: 0.035;
    --kinetic-opacity-max: 0.055;
    --scroll-speed: 28s;
    --transition-base: 0.32s ease;
    --overlap-transition: 0.56s cubic-bezier(0.34, 1.56, 0.64, 1);
    --sticky-transition: 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@font-face {
    font-family: 'Tsukushi Pro G3';
    src: local('Tsukushi Pro G3 Bold'), local('Tsukushi-Pro-G3-Bold');
    font-weight: 700;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--plaster-white);
    color: var(--warm-espresso);
    line-height: 1.78;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle 100px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        transparent 0%, 
        rgba(180, 130, 90, 0.015) 40%, 
        transparent 70%);
    transition: background var(--transition-base);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(252, 250, 247, 0.98);
    border-bottom: 2px solid rgba(180, 130, 90, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease-out;
}

header.scrolled {
    border-bottom-color: rgba(180, 130, 90, 0.28);
    box-shadow: 0 8px 40px rgba(180, 130, 90, 0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--deep-umber);
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span:first-child {
    font-size: 16px;
}

.logo-text span:last-child {
    font-size: 10px;
    color: var(--artisan-clay);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--deep-umber);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 4px;
}

nav a:hover {
    color: var(--artisan-clay);
    transform: scale(1.04);
    background: rgba(180, 130, 90, 0.06);
}

.cta-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--artisan-clay), var(--deep-sienna));
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 14px 56px var(--clay-glow);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 72px rgba(180, 130, 90, 0.42);
    scale: 1.04;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(252, 250, 247, 0.99);
    border: 1px solid rgba(180, 130, 90, 0.2);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10000;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--deep-umber);
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(252, 250, 247, 0.99);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-umber);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--artisan-clay);
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--deep-umber);
}

.mobile-nav-contacts {
    position: absolute;
    bottom: 40px;
    text-align: center;
}

.kinetic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.kinetic-row {
    position: absolute;
    white-space: nowrap;
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(6rem, 18vw, 18rem);
    color: var(--artisan-clay);
    opacity: var(--kinetic-opacity-min);
    animation: kineticScroll var(--scroll-speed) ease-in-out infinite alternate;
}

.kinetic-row:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.kinetic-row:nth-child(2) {
    top: 50%;
    animation-delay: -14s;
}

.kinetic-row:nth-child(3) {
    top: 85%;
    animation-delay: -7s;
}

@keyframes kineticScroll {
    0% {
        transform: translateX(-30%);
        opacity: var(--kinetic-opacity-min);
    }
    100% {
        transform: translateX(30%);
        opacity: var(--kinetic-opacity-max);
    }
}

main {
    padding-top: 80px;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    background: var(--plaster-white);
    overflow: hidden;
}

.hero-content {
    padding-left: 48px;
    z-index: 2;
}

.hero h1 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 0.74;
    color: var(--deep-umber);
    letter-spacing: -0.05em;
    animation: heroTitleStagger 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes heroTitleStagger {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.7);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--warm-espresso);
    line-height: 1.6;
    max-width: 480px;
    margin-top: 24px;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.4s forwards;
}

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

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.6s forwards;
}

.hero-cta .cta-button {
    padding: 20px 48px;
    font-size: 14px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--deep-umber);
    margin-left: 24px;
}

.hero-note svg {
    color: var(--artisan-clay);
}

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

.hero-frame {
    position: relative;
    width: 85%;
    height: 80%;
    border: 2px solid rgba(180, 130, 90, 0.14);
    border-radius: 8px;
    box-shadow: 0 40px 140px rgba(180, 130, 90, 0.10);
    overflow: hidden;
    z-index: 2;
    animation: overlapReveal 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes overlapReveal {
    0% {
        opacity: 0;
        transform: scale(0.92);
        z-index: 80;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        z-index: 86;
    }
}

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

.hero-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(180, 130, 90, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 70%;
    height: 60%;
    background: var(--trowel-mist);
    border-radius: 8px;
    z-index: 1;
    animation: overlaySlide 1.2s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes overlaySlide {
    0% {
        opacity: 0;
        transform: translateX(-30px) translateY(30px);
    }
    100% {
        opacity: 0.5;
        transform: translateX(0) translateY(0);
    }
}

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

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

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

.section-dark {
    background: var(--substrate-light);
    color: var(--warm-espresso);
}

.section-title {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--deep-umber);
    line-height: 0.94;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 64px;
}

.sticky-section {
    position: sticky;
    top: 0;
    z-index: 78;
    transition: z-index var(--sticky-transition);
}

.sticky-section:hover {
    z-index: 90;
}

.overlap-card {
    background: var(--plaster-white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 82;
    transition: all var(--overlap-transition);
    border: 1px solid rgba(180, 130, 90, 0.10);
}

.overlap-card:hover {
    z-index: 96;
    transform: scale(1.04);
    box-shadow: 0 32px 96px rgba(180, 130, 90, 0.18);
}

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

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

.overlap-card h3 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-umber);
    margin-bottom: 12px;
}

.overlap-card p {
    font-size: 15px;
    color: var(--warm-espresso);
    line-height: 1.6;
}

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

.services-grid .overlap-card:nth-child(1) {
    grid-column: span 2;
}

.services-grid .overlap-card:nth-child(3) {
    grid-column: span 2;
}

.services-grid .overlap-card:nth-child(5) {
    grid-column: span 2;
}

.price-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(180, 130, 90, 0.08);
    border-radius: 6px;
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--artisan-clay);
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    background: var(--trowel-mist);
    border-radius: 12px;
    z-index: -1;
}

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

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

.stat-number {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--artisan-clay);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--warm-espresso);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.process-section {
    background: var(--trowel-mist);
}

.node-graph {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
}

.node-line {
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--artisan-clay), transparent);
    z-index: 1;
}

.process-node {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    transition: all var(--transition-base);
}

.process-node:hover {
    transform: scale(1.08);
}

.node-circle {
    width: 80px;
    height: 80px;
    background: var(--plaster-white);
    border: 3px solid var(--artisan-clay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-base);
}

.process-node:hover .node-circle {
    background: var(--artisan-clay);
    box-shadow: 0 16px 48px var(--clay-glow);
}

.process-node:hover .node-circle svg {
    color: white;
}

.node-number {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-umber);
}

.node-title {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-umber);
    margin-bottom: 8px;
}

.node-desc {
    font-size: 14px;
    color: var(--warm-espresso);
    max-width: 160px;
    margin: 0 auto;
}

.marquee-section {
    background: var(--deep-umber);
    color: var(--plaster-white);
    padding: 48px 0;
    overflow: hidden;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 0 48px;
    white-space: nowrap;
}

.marquee-item span {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.05em;
}

.marquee-item .highlight {
    color: var(--artisan-clay);
}

.marquee-item::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--artisan-clay);
    border-radius: 50%;
}

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

.flex-grid {
    display: flex;
    gap: 24px;
}

.flex-card {
    flex: 1;
    background: var(--plaster-white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(180, 130, 90, 0.10);
    transition: all var(--transition-base);
}

.flex-card:hover {
    flex: 1.4;
    box-shadow: 0 24px 72px rgba(180, 130, 90, 0.16);
    z-index: 88;
}

.flex-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(180, 130, 90, 0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.flex-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--artisan-clay);
}

.flex-card h3 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-umber);
    margin-bottom: 12px;
}

.flex-card p {
    font-size: 15px;
    color: var(--warm-espresso);
}

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

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

.team-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.team-item:hover,
.team-item.active {
    background: var(--plaster-white);
    border-color: var(--artisan-clay);
    box-shadow: 0 16px 48px rgba(180, 130, 90, 0.12);
}

.team-item h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-umber);
}

.team-item span {
    font-size: 13px;
    color: var(--artisan-clay);
}

.team-photo {
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(42, 37, 32, 0.3));
    border-radius: 0 0 12px 12px;
}

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

.accordion-item {
    border-bottom: 1px solid rgba(180, 130, 90, 0.15);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(180, 130, 90, 0.06), transparent);
    transition: width 0.4s ease;
    pointer-events: none;
}

.accordion-item:hover::before {
    width: 100%;
}

.accordion-item:hover {
    border-left: 4px solid var(--artisan-clay);
    padding-left: 16px;
    margin-left: -4px;
}

.accordion-item.active {
    border-left: 4px solid var(--artisan-clay);
    padding-left: 16px;
    margin-left: -4px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.accordion-header:hover {
    padding-left: 8px;
}

.accordion-header h3 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--deep-umber);
    transition: color var(--transition-base);
    padding-right: 16px;
}

.accordion-item:hover .accordion-header h3,
.accordion-item.active .accordion-header h3 {
    color: var(--artisan-clay);
}

.accordion-icon {
    width: 28px;
    height: 28px;
    position: relative;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--artisan-clay);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.accordion-icon::before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::before {
    background: var(--deep-sienna);
}

.accordion-item.active .accordion-icon::after {
    height: 0;
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    display: block;
}

.accordion-body-inner {
    padding: 0 0 28px 0;
}

.accordion-body p {
    font-size: 15px;
    color: var(--warm-espresso);
    line-height: 1.75;
}

.accordion-body-inner {
    padding-bottom: 0;
    transition: padding-bottom 0.5s ease;
}

.accordion-item.active .accordion-body-inner {
    padding-bottom: 28px;
}

.carousel-section {
    overflow: hidden;
}

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

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

.review-card {
    flex: 0 0 360px;
    background: var(--plaster-white);
    border-radius: 16px;
    padding: 32px;
    scroll-snap-align: center;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.review-card:hover {
    z-index: 88;
}

.review-card.center {
    flex: 0 0 420px;
    transform: scale(1.15);
    z-index: 100;
    box-shadow: 0 32px 96px rgba(180, 130, 90, 0.24);
}

.review-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--artisan-clay);
}

.review-card h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-umber);
    margin-bottom: 4px;
}

.review-card .location {
    font-size: 13px;
    color: var(--artisan-clay);
    margin-bottom: 16px;
}

.review-card p {
    font-size: 15px;
    color: var(--warm-espresso);
    line-height: 1.7;
    font-style: italic;
}

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

.review-stars svg {
    width: 20px;
    height: 20px;
    color: var(--artisan-clay);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(180, 130, 90, 0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--artisan-clay);
}

.contact-item h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-umber);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--warm-espresso);
}

.contact-form {
    background: var(--trowel-mist);
    padding: 48px;
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--deep-umber);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--artisan-clay);
    border-radius: 6px;
    background: var(--plaster-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--deep-umber);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(180, 130, 90, 0.15);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--artisan-clay), var(--deep-sienna));
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 56px var(--clay-glow);
}

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

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

footer {
    background: var(--substrate-light);
    border-top: 3px solid var(--artisan-clay);
    padding: 80px 48px 40px;
}

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

.footer-col h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-umber);
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    color: var(--warm-espresso);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-logo span {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-umber);
}

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

.footer-copyright {
    text-align: center;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(180, 130, 90, 0.15);
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--deep-umber);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--deep-umber);
    color: var(--plaster-white);
    padding: 24px 32px;
    border-radius: 12px;
    max-width: 420px;
    z-index: 9997;
    box-shadow: 0 16px 64px rgba(42, 37, 32, 0.3);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.cookie-btn-accept {
    background: var(--artisan-clay);
    color: white;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--plaster-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
    transform: scale(1.04);
}

.cookie-links {
    margin-top: 16px;
    font-size: 12px;
    opacity: 0.8;
}

.cookie-links a {
    color: var(--artisan-clay);
    text-decoration: none;
}

.hero-inner {
    min-height: 55vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding: 80px 48px;
    background: var(--trowel-mist);
}

.hero-inner-content h1 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--deep-umber);
    line-height: 0.94;
    animation: fadeUp 0.6s ease-out forwards;
}

.hero-inner-content p {
    font-size: 18px;
    color: var(--warm-espresso);
    margin-top: 24px;
    max-width: 520px;
}

.hero-inner-image {
    position: relative;
}

.hero-inner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-inner-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 50%;
    height: 50%;
    background: var(--artisan-clay);
    opacity: 0.15;
    border-radius: 12px;
    z-index: -1;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.list-styled {
    list-style: none;
    margin: 32px 0;
}

.list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
}

.list-styled li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--artisan-clay);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.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;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(42, 37, 32, 0.7));
    color: white;
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

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

.thank-you-section h1 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--deep-umber);
    margin-bottom: 24px;
}

.thank-you-section p {
    font-size: 18px;
    color: var(--warm-espresso);
    max-width: 600px;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--deep-umber);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-umber);
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 16px;
    color: var(--warm-espresso);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 16px;
    color: var(--warm-espresso);
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .overlap-card:nth-child(1),
    .services-grid .overlap-card:nth-child(3),
    .services-grid .overlap-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 40px 24px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        height: 50vh;
    }
    
    .hero-frame {
        width: 90%;
        height: 100%;
    }
    
    .hero-overlay {
        display: none;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-grid,
    .contact-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        order: -1;
    }
    
    .flex-grid {
        flex-direction: column;
    }
    
    .node-graph {
        flex-direction: column;
        gap: 40px;
    }
    
    .node-line {
        display: none;
    }
    
    .process-node {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .node-circle {
        margin: 0;
        flex-shrink: 0;
    }
    
    .node-desc {
        margin: 0;
        max-width: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 100px 24px 60px;
    }
    
    .hero-inner-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 24px;
    }
    
    .header-inner {
        padding: 12px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .hero-content {
        padding: 32px 16px;
    }
    
    .hero-note {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        padding: 20px 0;
    }
    
    .review-card {
        flex: 0 0 300px;
    }
    
    .review-card.center {
        flex: 0 0 340px;
        transform: scale(1.05);
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .logo-text span:first-child {
        font-size: 14px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .overlap-card img {
        height: 180px;
    }
    
    .team-photo img {
        height: 320px;
    }
}

strong, p {
    color: inherit;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(42, 37, 32, 0.85));
    color: white;
}

.gallery-item-overlay h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-item-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

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

.review-card-full {
    display: flex;
    gap: 24px;
    background: var(--plaster-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(180, 130, 90, 0.10);
    transition: all var(--transition-base);
}

.review-card-full:hover {
    box-shadow: 0 24px 72px rgba(180, 130, 90, 0.16);
    transform: translateY(-4px);
}

.review-card-full img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--artisan-clay);
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-content h4 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-umber);
    margin-bottom: 4px;
}

.review-content .location {
    font-size: 13px;
    color: var(--artisan-clay);
    margin-bottom: 12px;
}

.review-content > p:last-child {
    font-size: 15px;
    color: var(--warm-espresso);
    line-height: 1.7;
    margin-top: 12px;
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.process-step-card {
    display: flex;
    gap: 32px;
    background: var(--plaster-white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(180, 130, 90, 0.10);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.process-step-card:hover {
    z-index: 88;
    box-shadow: 0 24px 72px rgba(180, 130, 90, 0.16);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--artisan-clay);
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-umber);
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--warm-espresso);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    gap: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--artisan-clay);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-value {
    font-family: 'Tsukushi Pro G3', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-umber);
}

@media (max-width: 992px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card-full {
        flex-direction: column;
        text-align: center;
    }
    
    .review-card-full img {
        margin: 0 auto;
    }
    
    .process-step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: auto;
        text-align: center;
    }
    
    .step-details {
        justify-content: center;
    }
}