@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inconsolata:wght@300;400;500&display=swap');

:root {
    --pearl-cream: #FFF8F5;
    --soft-parchment: #FDF6F0;
    --conservation-teal: #2D6A6A;
    --antique-gold: #C9A227;
    --sepia-brown: #8B7355;
    --deep-mahogany: #4A3728;
    --warm-umber: #6B5B4E;
    --dusty-rose: #B8A99A;
    --glass-white: rgba(255, 255, 255, 0.97);
    --glass-blur: blur(20px) saturate(180%);
    --shadow-card: 0 20px 60px rgba(74, 55, 40, 0.08);
    --shadow-card-hover: 0 24px 72px rgba(74, 55, 40, 0.12);
    --border-glass: 1px solid rgba(45, 106, 106, 0.08);
    --border-glass-teal: 1px solid rgba(45, 106, 106, 0.12);
    --radius-card: 12px;
    --sidebar-width: 260px;
}

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

strong, p {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-umber);
    background: var(--pearl-cream);
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--pearl-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--conservation-teal), var(--antique-gold));
    border-radius: 4px;
}

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

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(255, 248, 245, 0.98);
    backdrop-filter: var(--glass-blur);
    border-right: 1px solid rgba(45, 106, 106, 0.12);
    box-shadow: 4px 0 56px rgba(74, 55, 40, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(45, 106, 106, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(45, 106, 106, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.sidebar-header {
    padding: 32px 28px;
    border-bottom: 1px solid rgba(45, 106, 106, 0.1);
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--conservation-teal), var(--antique-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.company-name {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--deep-mahogany);
    line-height: 1.3;
}

.company-subtitle {
    font-family: 'Lora', serif;
    font-size: 9px;
    color: var(--dusty-rose);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.sidebar-nav {
    flex: 1;
    padding: 48px 0;
    overflow-y: auto;
}

.nav-section-title {
    font-family: 'Lora', serif;
    font-size: 10px;
    color: rgba(74, 55, 40, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 28px 12px;
}

.nav-item {
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    color: rgba(74, 55, 40, 0.7);
    font-family: 'Lora', serif;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(45, 106, 106, 0.06);
    border-left-color: var(--conservation-teal);
    color: var(--conservation-teal);
}

.nav-item.active {
    background: rgba(45, 106, 106, 0.08);
    border-left-color: var(--conservation-teal);
    color: var(--conservation-teal);
}

.nav-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(45, 106, 106, 0.1);
}

.cta-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--conservation-teal), #3D8080);
    color: white;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(45, 106, 106, 0.2);
    transition: all 0.25s ease-out;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    box-shadow: 0 8px 28px rgba(45, 106, 106, 0.3);
    transform: scale(1.02);
}

.sidebar-phone {
    font-family: 'Lora', serif;
    font-size: 11px;
    color: var(--dusty-rose);
    text-align: center;
    margin-top: 16px;
    letter-spacing: 0.05em;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 248, 245, 0.98);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(45, 106, 106, 0.12);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--conservation-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.mobile-company-name {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.01em;
    color: var(--deep-mahogany);
}

.hamburger {
    width: 44px;
    height: 44px;
    background: rgba(45, 106, 106, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--conservation-teal);
    stroke-width: 2;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 248, 245, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

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

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 106, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 115, 85, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
}

.mobile-menu-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(45, 106, 106, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(45, 106, 106, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none;
}

.mobile-close svg {
    width: 28px;
    height: 28px;
    stroke: var(--conservation-teal);
    stroke-width: 2;
}

.mobile-nav-item {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--deep-mahogany);
    text-decoration: none;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-item::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--conservation-teal);
    margin: 20px auto 0;
}

.mobile-menu-contact {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.5s;
}

.mobile-menu-contact.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-phone {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    color: var(--conservation-teal);
    text-decoration: none;
}

.mobile-menu-address {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--dusty-rose);
    margin-top: 8px;
}

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    background: var(--soft-parchment);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(45, 106, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 162, 39, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    filter: blur(80px);
    opacity: 0.6;
    animation: glassyDrift 25s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(45, 106, 106, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(45, 106, 106, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

@keyframes glassyDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, 20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    padding: 140px 80px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vitrine-frame {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(45, 106, 106, 0.4);
    border-radius: 8px;
    margin-bottom: 24px;
    opacity: 0;
    transform: scale(0);
    animation: glassyAppear 0.4s ease forwards;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 42px;
    letter-spacing: -0.01em;
    color: var(--deep-mahogany);
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: titleReveal 0.7s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: var(--warm-umber);
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

.teal-markers {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.5s forwards;
}

.teal-marker {
    width: 8px;
    height: 8px;
    background: var(--conservation-teal);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(45, 106, 106, 0.25));
}

.hero-cta {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.6s ease 0.6s forwards;
}

.btn-primary {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--conservation-teal), #3D8080);
    color: white;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(45, 106, 106, 0.25);
    transition: all 0.25s ease-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(45, 106, 106, 0.35);
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--deep-mahogany);
    color: var(--deep-mahogany);
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    border-radius: 12px;
    transition: all 0.25s ease-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--conservation-teal);
    color: var(--conservation-teal);
}

.hero-gallery {
    position: relative;
    height: 520px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    position: relative;
    z-index: 0;
}

.bento-item {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
}

.bento-item:nth-child(1) {
    grid-row: span 2;
    animation: bentoIn 0.8s ease 0.1s forwards;
}

.bento-item:nth-child(2) {
    animation: bentoIn 0.8s ease 0.22s forwards;
}

.bento-item:nth-child(3) {
    animation: bentoIn 0.8s ease 0.34s forwards;
}

.bento-item:nth-child(4) {
    animation: bentoIn 0.8s ease 0.46s forwards;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    border: var(--border-glass-teal);
    border-radius: var(--radius-card);
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
}

.float-card:nth-child(5) {
    top: 40px;
    right: 0;
    animation: floatIn 0.6s ease 0.7s forwards;
}

.float-card:nth-child(6) {
    bottom: 40px;
    right: 0;
    animation: floatIn 0.6s ease 0.85s forwards;
}

.float-card-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-mahogany);
}

.float-card-value {
    font-family: 'Inconsolata', monospace;
    font-size: 11px;
    color: var(--conservation-teal);
    margin-top: 2px;
}

@keyframes glassyAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleReveal {
    to {
        clip-path: inset(0 0% 0 0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bentoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

.section-alt {
    background: var(--soft-parchment);
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--deep-mahogany);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--conservation-teal);
}

.section-subtitle {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.8;
    max-width: 560px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    border: var(--border-glass);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--conservation-teal), var(--antique-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(45, 106, 106, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--conservation-teal);
    fill: none;
    stroke-width: 1.5;
}

.service-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-mahogany);
    margin-bottom: 8px;
}

.service-title-jp {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--dusty-rose);
    margin-bottom: 12px;
}

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

.service-price {
    font-family: 'Inconsolata', monospace;
    font-size: 13px;
    color: var(--conservation-teal);
    padding: 8px 16px;
    background: rgba(45, 106, 106, 0.06);
    border-radius: 6px;
    display: inline-block;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--conservation-teal), var(--antique-gold), var(--conservation-teal));
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-card {
    width: calc(50% - 56px);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: var(--glass-blur);
    border: var(--border-glass);
    border-radius: var(--radius-card);
    padding: 28px 32px;
    box-shadow: 0 16px 48px rgba(74, 55, 40, 0.06);
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.6s ease;
}

.timeline-item:nth-child(even) .timeline-card {
    transform: translateX(24px);
}

.timeline-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-number {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(45, 106, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--conservation-teal);
    margin-bottom: 16px;
}

.timeline-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-mahogany);
    margin-bottom: 8px;
}

.timeline-title-jp {
    font-size: 12px;
    color: var(--dusty-rose);
    margin-bottom: 12px;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--conservation-teal);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--conservation-teal);
    z-index: 10;
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(45, 106, 106, 0.08);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-grow: 1;
}

.advantage-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 106, 106, 0.15);
    transform: scale(1.02);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    transform: scale(1.1);
}

.advantage-value {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--conservation-teal);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-value {
    color: var(--deep-mahogany);
}

.advantage-label {
    font-family: 'Lora', serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.advantages-section .advantage-label {
    color: var(--warm-umber);
}

.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    min-height: 500px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
}

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

.about-image::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(45, 106, 106, 0.3);
    border-radius: 8px;
}

.about-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .vitrine-frame {
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 16px;
}

.testimonials-carousel {
    position: relative;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}

.carousel-track {
    position: relative;
    width: 320px;
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: var(--glass-blur);
    border: var(--border-glass);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.testimonial-card.active {
    box-shadow: 0 24px 64px rgba(45, 106, 106, 0.1);
}

.testimonial-image {
    height: 130px;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 24px;
}

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

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--antique-gold);
}

.testimonial-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(45, 106, 106, 0.15);
}

.author-name {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-mahogany);
}

.author-company {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--dusty-rose);
}

.carousel-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(45, 106, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.25s ease;
}

.carousel-nav:hover {
    background: var(--conservation-teal);
}

.carousel-nav:hover svg {
    stroke: white;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--conservation-teal);
    stroke-width: 2;
    fill: none;
}

.carousel-prev {
    left: 20%;
}

.carousel-next {
    right: 20%;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 80px;
}

.team-list {
    padding-right: 40px;
}

.team-list .vitrine-frame {
    margin-bottom: 24px;
}

.team-list .section-title {
    margin-bottom: 16px;
}

.team-list .section-subtitle {
    margin-bottom: 32px;
}

.team-member {
    position: relative;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(45, 106, 106, 0.08);
    border-radius: var(--radius-card);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
}

.team-member::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--conservation-teal);
    border-radius: var(--radius-card) 0 0 var(--radius-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    border-color: rgba(45, 106, 106, 0.15);
    box-shadow: 0 8px 24px rgba(45, 106, 106, 0.06);
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(45, 106, 106, 0.1);
    flex-shrink: 0;
}

.member-info {
    flex: 1;
}

.member-name {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
}

.member-role {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--conservation-teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.member-specialty {
    font-family: 'Inconsolata', monospace;
    font-size: 11px;
    color: var(--dusty-rose);
    margin-top: 4px;
}

.team-photos {
    position: relative;
    min-height: 400px;
}

.team-photo-hover {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-card);
    border: 2px solid rgba(45, 106, 106, 0.15);
    box-shadow: 0 12px 40px rgba(74, 55, 40, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

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

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.contact-form-section {
    padding: 80px 60px;
}

.contact-form {
    max-width: 480px;
}

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

.form-label {
    font-family: 'Inconsolata', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dusty-rose);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(74, 55, 40, 0.12);
    background: transparent;
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--warm-umber);
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--conservation-teal);
}

.form-input:focus + .form-label,
.form-textarea:focus + .form-label {
    color: var(--conservation-teal);
}

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

.contact-info-section {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-card);
    padding: 80px 48px;
    border: var(--border-glass);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-block {
    padding: 20px 0;
    border-bottom: 1px solid rgba(45, 106, 106, 0.1);
}

.contact-block:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--conservation-teal);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 12px;
}

.contact-label {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--dusty-rose);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-value {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--warm-umber);
}

.contact-value a {
    color: var(--conservation-teal);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-value a:hover {
    color: var(--deep-mahogany);
}

.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(74, 55, 40, 0.06);
    filter: grayscale(100%);
}

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

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

.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: var(--glass-blur);
    border: var(--border-glass);
    border-radius: var(--radius-card);
    padding: 0;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--conservation-teal);
    border-radius: 3px 3px 0 0;
}

.faq-item:active {
    transform: scale(1.03);
    box-shadow: 0 20px 64px rgba(45, 106, 106, 0.1);
    z-index: 100;
}

.faq-icon {
    width: 36px;
    height: 36px;
    margin: 16px 0 10px 16px;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--conservation-teal);
    fill: none;
    stroke-width: 1.5;
}

.faq-question {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-mahogany);
    padding: 0 16px;
}

.faq-answer {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--warm-umber);
    line-height: 1.5;
    padding: 8px 16px 16px;
}

.faq-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--conservation-teal);
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer-wrapper {
    max-height: 200px;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(74, 55, 40, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.gallery-meta {
    font-family: 'Inconsolata', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: calc(var(--sidebar-width) + 24px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: var(--glass-blur);
    border: var(--border-glass-teal);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: 0 16px 64px rgba(74, 55, 40, 0.15);
    z-index: 9000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}

.cookie-banner.visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s ease;
}

.cookie-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-mahogany);
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--conservation-teal), #3D8080);
    color: white;
}

.cookie-accept:hover {
    box-shadow: 0 4px 16px rgba(45, 106, 106, 0.25);
}

.cookie-decline {
    background: rgba(45, 106, 106, 0.08);
    color: var(--conservation-teal);
}

.cookie-decline:hover {
    background: rgba(45, 106, 106, 0.12);
}

.cookie-link {
    font-size: 11px;
    color: var(--dusty-rose);
    margin-top: 12px;
    text-align: center;
}

.cookie-link a {
    color: var(--conservation-teal);
    text-decoration: none;
}

.cookie-link a:hover {
    text-decoration: underline;
}

footer {
    background: var(--deep-mahogany);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 80px 40px;
    margin-left: var(--sidebar-width);
}

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

.footer-brand {
    max-width: 320px;
}

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

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--conservation-teal), var(--antique-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.footer-company {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--conservation-teal);
    transition: width 0.25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: white;
}

.page-hero {
    padding: 160px 80px 80px;
    background: var(--pearl-cream);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(45, 106, 106, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(201, 162, 39, 0.04) 0%, transparent 50%);
    filter: blur(80px);
    opacity: 0.6;
}

.breadcrumbs {
    font-family: 'Inconsolata', monospace;
    font-size: 12px;
    color: var(--dusty-rose);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumbs a {
    color: var(--dusty-rose);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: var(--conservation-teal);
}

.page-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 44px;
    color: var(--deep-mahogany);
    position: relative;
    z-index: 1;
}

.page-title::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--conservation-teal);
}

.page-subtitle {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--warm-umber);
    margin-top: 16px;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--conservation-teal), #3D8080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.thanks-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--deep-mahogany);
    margin-bottom: 16px;
}

.thanks-text {
    font-family: 'Lora', serif;
    font-size: 17px;
    color: var(--warm-umber);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.legal-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-mahogany);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

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

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--deep-mahogany);
}

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

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

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

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

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

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 120px 48px 48px;
    }
    
    .hero-gallery {
        height: 400px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    footer {
        margin-left: 0;
    }
    
    .cookie-banner {
        left: 24px;
        right: 24px;
        max-width: none;
    }
    
    .hero {
        padding-top: 72px;
    }
    
    .section {
        padding: 80px 48px;
    }
    
    .page-hero {
        padding: 120px 48px 60px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 48px;
    }
    
    .team-photos {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding: 20px 0;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 40px;
        transform: translateX(24px);
    }
    
    .timeline-item:nth-child(even) .timeline-card {
        transform: translateX(24px);
    }
    
    .timeline-card.visible {
        transform: translateX(0);
    }
    
    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 24px 48px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-gallery {
        height: 300px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-item:nth-child(1) {
        grid-row: span 1;
    }
    
    .float-card {
        display: none;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .page-hero {
        padding: 100px 24px 48px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .testimonials-carousel {
        height: auto;
    }
    
    .carousel-track {
        position: relative;
        width: 100%;
        height: auto;
        transform-style: flat;
    }
    
    .testimonial-card {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
        transform: none !important;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .contact-form-section {
        padding: 48px 24px;
    }
    
    .contact-info-section {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantage-value {
        font-size: 32px;
    }
    
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius-card) var(--radius-card) 0 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

.lens-container {
    position: relative;
    overflow: hidden;
}

.lens-magnifier {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    z-index: 100;
    overflow: hidden;
    border: 3px solid var(--conservation-teal);
}

.lens-magnifier.active {
    opacity: 1;
    transform: scale(1);
}

.lens-magnifier img {
    position: absolute;
    width: 400%;
    height: 400%;
    object-fit: cover;
    filter: saturate(1.1);
}

.marquee-section {
    background: var(--soft-parchment);
    padding: 24px 0;
    overflow: hidden;
}

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

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

.marquee-text {
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--deep-mahogany);
    letter-spacing: -0.01em;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--conservation-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.shape-morph-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(45, 106, 106, 0.06);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.shape-morph-overlay.active {
    animation: shapeMorphExpand 0.6s ease-out forwards;
}

@keyframes shapeMorphExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200vmax;
        height: 200vmax;
        opacity: 0;
    }
}
