@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --washi-cream: #FAF6F0;
    --aged-parchment: #F5EFE6;
    --sagoro-indigo: #2C3E50;
    --kintsugi-gold: #B8860B;
    --aged-bronze: #8B7355;
    --deep-archive: #3D3D3D;
    --faded-manuscript: #8B8B7A;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 16px 56px rgba(44, 62, 80, 0.06);
    --shadow-card: 0 12px 48px rgba(44, 62, 80, 0.06);
    --shadow-hover: 0 24px 72px rgba(44, 62, 80, 0.12);
    --border-gold: rgba(184, 134, 11, 0.12);
    --border-gold-strong: rgba(184, 134, 11, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.85;
    color: var(--deep-archive);
    background-color: var(--washi-cream);
    overflow-x: hidden;
}

strong, p, b {
    color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--sagoro-indigo);
}

.cinzel {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.06em;
}

.courier {
    font-family: 'Courier Prime', monospace;
    color: var(--faded-manuscript);
}

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

@media (max-width: 768px) {
    .container-custom {
        padding: 0 24px;
    }
}

.section-padding {
    padding: 120px 0 100px;
}

@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0 40px;
    }
}

.header-global {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.04);
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-global.scrolled {
    height: 64px;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.logo-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--sagoro-indigo);
    line-height: 1.2;
}

.logo-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 10px;
    color: var(--faded-manuscript);
    letter-spacing: 0.12em;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--sagoro-indigo);
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kintsugi-gold);
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--kintsugi-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.dropdown-panel {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 24px 80px rgba(44, 62, 80, 0.08);
    padding: 48px 80px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-trigger:hover .dropdown-panel,
.dropdown-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-intro h3 {
    font-size: 14px;
    margin-bottom: 24px;
}

.dropdown-intro p {
    font-size: 15px;
    color: var(--faded-manuscript);
    line-height: 1.75;
    max-width: 400px;
}

.dropdown-cta {
    margin-top: 20px;
}

.dropdown-cta a {
    font-size: 13px;
    color: var(--kintsugi-gold);
    text-decoration: underline;
}

.dropdown-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 24px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}

.dropdown-card:hover {
    border-left-color: var(--kintsugi-gold);
    background: rgba(184, 134, 11, 0.04);
}

.dropdown-card svg {
    width: 28px;
    height: 28px;
    color: var(--aged-bronze);
    margin-bottom: 12px;
}

.dropdown-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.dropdown-card p {
    font-size: 12px;
    color: var(--faded-manuscript);
    line-height: 1.5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    color: var(--faded-manuscript);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--kintsugi-gold), var(--aged-bronze));
    color: white;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.04em;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.25);
    transition: all 0.25s ease-out;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(184, 134, 11, 0.35);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--sagoro-indigo);
    color: var(--sagoro-indigo);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--kintsugi-gold);
    color: var(--kintsugi-gold);
}

.btn-large {
    padding: 20px 44px;
    font-size: 12px;
}

.hamburger-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.hamburger-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--sagoro-indigo);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(24px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.35s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-menu-content {
    padding-top: 100px;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--sagoro-indigo);
    padding: 16px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--kintsugi-gold), transparent);
    margin: 16px auto;
}

.mobile-menu-contact {
    margin-top: 48px;
}

.mobile-menu-contact p {
    font-family: 'Courier Prime', monospace;
    font-size: 14px;
    color: var(--aged-bronze);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--sagoro-indigo);
}

@media (max-width: 1024px) {
    .nav-main {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .header-phone {
        display: none;
    }

    .header-actions .btn-primary {
        display: none;
    }
    
    .header-inner {
        padding: 0 24px;
    }
}

.hero-section {
    min-height: 100vh;
    background: var(--aged-parchment);
    position: relative;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--washi-cream);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        15deg,
        transparent,
        transparent 80px,
        rgba(184, 134, 11, 0.03) 80px,
        rgba(184, 134, 11, 0.03) 81px
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    padding: 140px 80px 80px;
    min-height: 100vh;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-marker {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.hero-marker svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0.06em;
    color: var(--sagoro-indigo);
    max-width: 400px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--faded-manuscript);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 32px;
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: var(--kintsugi-gold);
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(184, 134, 11, 0.25));
}

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

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(250, 246, 240, 0.15) 0%, transparent 60%);
    border-radius: 4px 0 0 4px;
}

.hero-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.hero-stat-card:nth-child(2) {
    top: 80px;
    right: -40px;
}

.hero-stat-card:nth-child(3) {
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-stat-card:nth-child(4) {
    bottom: 80px;
    right: -40px;
}

.hero-stat-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.hero-stat-card span {
    font-family: 'Courier Prime', monospace;
    font-size: 11px;
    color: var(--kintsugi-gold);
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 48px 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .hero-stat-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 24px 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Courier Prime', monospace;
    font-size: 11px;
    color: var(--faded-manuscript);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--sagoro-indigo);
    margin-bottom: 16px;
}

.section-title-line {
    display: inline-block;
    width: 32px;
    height: 3px;
    background: var(--kintsugi-gold);
    margin-right: 12px;
    vertical-align: middle;
}

.section-subtitle {
    font-size: 17px;
    color: var(--faded-manuscript);
    max-width: 600px;
    line-height: 1.7;
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(184, 134, 11, 0.03) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.breadcrumbs {
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    color: #A8A29E;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: inherit;
}

.breadcrumbs span {
    margin: 0 8px;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--sagoro-indigo);
    margin-bottom: 16px;
}

.page-hero-dots {
    display: flex;
    gap: 8px;
}

.page-hero-dot {
    width: 6px;
    height: 6px;
    background: var(--kintsugi-gold);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .page-hero {
        height: auto;
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
}

.services-section {
    background: var(--washi-cream);
    position: relative;
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.services-image-side {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.services-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(250, 246, 240, 0.1) 0%, transparent 60%);
}

.services-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kintsugi-gold), rgba(184, 134, 11, 0.3));
}

.services-content-side {
    padding: 80px 48px 80px 80px;
    position: relative;
}

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

.services-marker {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
}

.services-marker svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.services-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--sagoro-indigo);
    margin-bottom: 32px;
}

.services-text {
    font-size: 16px;
    color: #6B6B5B;
    line-height: 1.8;
    max-width: 440px;
}

.services-text p {
    margin-bottom: 24px;
    position: relative;
}

.services-text p:not(:last-child)::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--kintsugi-gold);
    border-radius: 50%;
    margin: 24px auto 0;
}

.services-cta {
    margin-top: 40px;
}

.marquee-section {
    background: var(--aged-parchment);
    padding: 32px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--aged-parchment), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(-90deg, var(--aged-parchment), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--sagoro-indigo);
    white-space: nowrap;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--kintsugi-gold);
    border-radius: 50%;
}

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

@media (max-width: 1024px) {
    .services-split {
        grid-template-columns: 1fr;
    }
    
    .services-image-side {
        position: relative;
        height: 400px;
    }
    
    .services-content-side {
        padding: 60px 24px;
    }
}

.about-section {
    background: var(--aged-parchment);
}

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

.about-image-block {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(245, 239, 230, 0.2) 0%, transparent 60%);
}

.about-text-block {
    padding: 20px 0;
}

.about-text-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text-block p {
    font-size: 15px;
    color: #5D5D4D;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--border-gold-strong);
    margin: 20px 0;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.process-section {
    background: var(--washi-cream);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--kintsugi-gold), var(--aged-bronze), var(--kintsugi-gold));
    transform: translateX(-50%);
}

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

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

.timeline-card {
    /* width: calc(50% - 56px); */
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 28px 32px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.timeline-number {
    width: 56px;
    height: 56px;
    background: rgba(184, 134, 11, 0.1);
    border: 2px solid var(--kintsugi-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--kintsugi-gold);
    margin-bottom: 16px;
}

.timeline-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--faded-manuscript);
    line-height: 1.7;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--kintsugi-gold), rgba(184, 134, 11, 0.3));
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-connector {
    left: auto;
    right: 50%;
    transform: translateY(-50%) scaleX(-1);
}

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

@media (max-width: 1024px) {
    .timeline-line {
        left: 24px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 72px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-card {
        width: 100%;
    }
    
    .timeline-connector,
    .timeline-item:nth-child(even) .timeline-connector {
        left: 24px;
        right: auto;
        transform: translateY(-50%) scaleX(-1);
    }
    
    .timeline-dot {
        left: 24px;
    }
}

.advantages-section {
    background: var(--sagoro-indigo);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--washi-cream);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    padding: 32px;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    transition: all 0.3s ease;
    margin-left: -40px;
}

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

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

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

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.advantage-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--faded-manuscript);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-card {
        margin-left: 0;
    }
}

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

.achievements-section {
    background: var(--aged-parchment);
}

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

@media (min-width: 769px) {
    .achievements-grid {
        flex-direction: row;
    }
    
    .achievement-card {
        margin-bottom: 0 !important;
    }
}

.achievement-card {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    padding: 0;
    margin-bottom: -72px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    gap: 36px;
    transition: all 0.3s ease;
    flex-direction: column;
}

.achievement-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    z-index: 10;
}

.achievement-card + .achievement-card {
    margin-top: 24px;
}

.achievement-top-border {
    height: 4px;
    background: linear-gradient(90deg, var(--kintsugi-gold), var(--aged-bronze), var(--kintsugi-gold));
    border-radius: 4px 4px 0 0;
    width: 100%;
    order: -1;
}

.achievement-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    margin: 36px;
}

.achievement-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.achievement-content {
    flex: 1;
    padding: 36px 48px 36px 0;
}

.achievement-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.achievement-value {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--kintsugi-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.achievement-content p {
    font-size: 14px;
    color: var(--faded-manuscript);
}

@media (min-width: 769px) {
    .achievement-content {
        padding: 36px 48px 36px 0;
    }
}

@media (max-width: 768px) {
    .achievement-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .achievement-icon {
        margin: 24px;
    }
    
    .achievement-content {
        padding: 0 24px 24px;
    }
    
    .achievement-value {
        font-size: 40px;
    }
}

.team-section {
    background: var(--washi-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border-gold);
}

.team-member {
    padding: 32px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.08);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.25s ease;
}

.team-member:hover .team-name {
    color: var(--kintsugi-gold);
}

.team-member:hover .team-photo {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.team-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.team-icon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(184, 134, 11, 0.4);
}

.team-info {
    flex: 1;
}

.team-name {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--sagoro-indigo);
    transition: color 0.25s ease;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--faded-manuscript);
}

.team-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.team-arrow svg {
    width: 100%;
    height: 100%;
    stroke: rgba(184, 134, 11, 0.3);
}

.team-photo {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--kintsugi-gold);
    opacity: 0;
    transform: translateX(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        position: fixed;
        right: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        width: 90%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 16/10;
    }
    
    .team-member:hover .team-photo {
        transform: translate(-50%, -50%) scale(1);
    }
}

.faq-section {
    background: var(--aged-parchment);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    padding: 28px 32px;
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.04);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

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

.faq-item.active {
    background: rgba(184, 134, 11, 0.04);
    border-left: 4px solid var(--kintsugi-gold);
    grid-column: span 2;
    margin-top: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 600;
    flex: 1;
    padding-right: 16px;
}

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

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

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

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

.faq-answer p {
    padding-top: 20px;
    font-size: 16px;
    color: var(--faded-manuscript);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item,
    .faq-item:nth-child(even) {
        grid-column: span 1;
        margin-top: 0;
    }
    
    .faq-item.active {
        grid-column: span 1;
    }
}

.testimonials-section {
    background: var(--washi-cream);
}

.testimonials-masonry {
    columns: 3;
    column-gap: 24px;
}

.testimonial-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:nth-child(1) {
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    padding: 32px;
}

.testimonial-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.9), rgba(139, 115, 85, 0.9));
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.testimonial-card:nth-child(3) {
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    padding: 28px;
}

.testimonial-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(61, 61, 61, 0.9));
    border: none;
    padding: 28px;
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 56px rgba(44, 62, 80, 0.1);
    z-index: 10;
    position: relative;
}

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

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-card:not(.testimonial-card:nth-child(2)):not(.testimonial-card:nth-child(6)) .testimonial-stars svg {
    fill: var(--kintsugi-gold);
}

.testimonial-card:nth-child(2) .testimonial-stars svg,
.testimonial-card:nth-child(6) .testimonial-stars svg {
    fill: white;
}

.testimonial-text {
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card:nth-child(2) .testimonial-text,
.testimonial-card:nth-child(6) .testimonial-text {
    color: white;
}

.testimonial-author {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--sagoro-indigo);
}

.testimonial-card:nth-child(2) .testimonial-author,
.testimonial-card:nth-child(6) .testimonial-author {
    color: white;
}

.testimonial-source {
    font-size: 12px;
    color: var(--faded-manuscript);
    margin-top: 4px;
}

.testimonial-card:nth-child(2) .testimonial-source,
.testimonial-card:nth-child(6) .testimonial-source {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-decor {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .testimonials-masonry {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .testimonials-masonry {
        columns: 1;
    }
}

.contact-section {
    background: var(--aged-parchment);
}

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

.contact-form-side {
    padding-right: 60px;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--sagoro-indigo);
    margin-bottom: 12px;
}

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

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

.form-label {
    font-family: 'Courier Prime', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A8A29E;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.25s ease;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(61, 61, 61, 0.1);
    background: transparent;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: var(--deep-archive);
    transition: border-color 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-bottom-color: var(--kintsugi-gold);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    color: var(--kintsugi-gold);
    transform: translateY(-24px);
    font-size: 10px;
}

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

.contact-info-side {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 4px;
    padding: 80px 48px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}

.contact-info-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.contact-info-block:last-child {
    border-bottom: none;
}

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

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.contact-info-block p {
    font-size: 16px;
    color: var(--faded-manuscript);
}

.contact-map {
    margin-top: 24px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.06);
    filter: sepia(15%) saturate(0.9);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-side {
        padding-right: 0;
    }
}

.footer-global {
    background: var(--washi-cream);
    border-top: 1px solid var(--border-gold);
    padding: 80px 0 40px;
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--faded-manuscript);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 320px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--faded-manuscript);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--kintsugi-gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--faded-manuscript);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--faded-manuscript);
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--kintsugi-gold);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.24);
    z-index: 9998;
    color: white;
}

.cookie-banner h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-categories {
    margin-bottom: 20px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-category small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 2px;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--kintsugi-gold), var(--aged-bronze));
    color: white;
}

.cookie-btn-accept:hover {
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

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

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-links {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.cookie-links a {
    font-size: 12px;
    color: var(--kintsugi-gold);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

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

::-webkit-scrollbar-track {
    background: rgba(184, 134, 11, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--kintsugi-gold), var(--aged-bronze));
    border-radius: 4px;
}

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

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

.reveal-fade.visible {
    opacity: 1;
}

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

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

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

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.reveal-gold.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-skew {
    opacity: 0;
    transform: skewX(-3deg);
    transition: all 0.6s ease-out;
}

.reveal-skew.visible {
    opacity: 1;
    transform: skewX(0);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kintsugi-gold), var(--aged-bronze));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--faded-manuscript);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-price {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--kintsugi-gold);
    margin-bottom: 16px;
}

.service-card-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--faded-manuscript);
}

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

@media (max-width: 640px) {
    .service-card-grid {
        grid-template-columns: 1fr;
    }
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    color: white;
    font-size: 16px;
}

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

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

.legal-page {
    background: var(--washi-cream);
    padding: 120px 0 80px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 48px 0 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5D5D4D;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #5D5D4D;
    margin-bottom: 8px;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aged-parchment);
    text-align: center;
    padding: 120px 24px 80px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--kintsugi-gold);
}

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--faded-manuscript);
    line-height: 1.7;
    margin-bottom: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-gold);
}

.pricing-table th {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--sagoro-indigo);
    background: rgba(184, 134, 11, 0.05);
}

.pricing-table td {
    font-size: 15px;
    color: #5D5D4D;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .price {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--kintsugi-gold);
}

