@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Fira+Code:wght@400;500&family=Nunito+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --cream-gold: #FFF8F0;
    --warm-ivory: #FEF6E8;
    --deep-mahogany: #3D2314;
    --warm-cocoa: #5D4037;
    --muted-bronze: #A67C52;
    --saffron-gold: #FF8C00;
    --saffron-dark: #E67E00;
    --rosemary-green: #6B8E6B;
    --rosemary-light: rgba(107, 142, 107, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-border: rgba(255, 140, 0, 0.08);
    --shadow-soft: 0 8px 32px rgba(180, 100, 50, 0.06);
    --shadow-card: 0 32px 96px rgba(180, 100, 50, 0.08);
    --shadow-card-hover: 0 48px 128px rgba(255, 140, 0, 0.1);
    --shadow-glow: 0 10px 40px rgba(255, 140, 0, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.25s ease-out;
}

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

strong, p, span, li {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    background-color: var(--cream-gold);
    color: var(--warm-cocoa);
    line-height: 1.8;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 200, 150, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(255, 140, 0, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(107, 142, 107, 0.03) 0%, transparent 40%);
    filter: blur(120px);
    z-index: -1;
    animation: meshDrift 45s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes meshDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.08); }
}

.vertical-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 64px;
    height: 100vh;
    background: rgba(255, 248, 240, 0.99);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: -4px 0 48px rgba(180, 100, 50, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
    justify-content: space-between;
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.sidebar-logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--rosemary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.2);
}

.sidebar-logo-mark svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.sidebar-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 9px;
    color: var(--deep-mahogany);
    margin-top: 12px;
    text-align: center;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 24px;
}

.sidebar-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.sidebar-nav-item span {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: var(--warm-cocoa);
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
}

.sidebar-nav-item:hover span {
    color: var(--saffron-gold);
    transform: rotate(180deg) scale(1.05);
}

.sidebar-nav-item:hover {
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
    border-radius: 8px;
}

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

.sidebar-cta-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.25);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.sidebar-cta-btn:hover {
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.35);
    transform: scale(1.1);
}

.sidebar-cta-phone {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 9px;
    color: var(--saffron-gold);
    letter-spacing: 0.02em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: none;
}

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

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

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

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

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.mobile-menu-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.4s ease forwards;
}

.mobile-menu-list li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-list li:nth-child(2) { animation-delay: 0.16s; }
.mobile-menu-list li:nth-child(3) { animation-delay: 0.22s; }
.mobile-menu-list li:nth-child(4) { animation-delay: 0.28s; }
.mobile-menu-list li:nth-child(5) { animation-delay: 0.34s; }
.mobile-menu-list li:nth-child(6) { animation-delay: 0.4s; }
.mobile-menu-list li:nth-child(7) { animation-delay: 0.46s; }

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

.mobile-menu-list a {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--deep-mahogany);
    text-decoration: none;
    display: block;
}

.mobile-menu-divider {
    width: 60px;
    height: 2px;
    background: var(--saffron-gold);
    margin: 0 auto;
}

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

.mobile-menu-phone {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--saffron-gold);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 248, 240, 0.99);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

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

.mobile-header-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--saffron-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo-mark svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.mobile-header-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-mahogany);
}

.mobile-header-hamburger {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-header-hamburger svg {
    stroke: var(--saffron-gold);
    width: 20px;
    height: 20px;
}

main {
    margin-right: 64px;
}

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

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 140, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 140, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
    animation: gridDrift 20s ease-in-out infinite alternate;
}

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

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    padding: 160px 80px 120px 80px;
    width: 100%;
    position: relative;
    z-index: 4;
}

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

.hero-title-kanji {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 160px;
    line-height: 0.75;
    letter-spacing: -0.04em;
    color: var(--deep-mahogany);
    animation: kineticPulse 10s ease-in-out infinite;
}

.hero-title-cuisine {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 0.82;
    letter-spacing: -0.03em;
    color: var(--saffron-gold);
    margin-top: -16px;
    animation: kineticPulse 12s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-title-atelier {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 56px;
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--rosemary-green);
    margin-top: 4px;
}

@keyframes kineticPulse {
    0%, 100% { transform: scale(1) skewX(0deg); }
    25% { transform: scale(1.02) skewX(1deg); }
    50% { transform: scale(1.04) skewX(-1deg); }
    75% { transform: scale(1.02) skewX(0.5deg); }
}

.hero-technical {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: rgba(93, 64, 55, 0.5);
    margin-top: 24px;
}

.hero-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: var(--warm-cocoa);
    line-height: 1.8;
    max-width: 520px;
    margin-top: 24px;
}

.hero-markers {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-marker {
    width: 32px;
    height: 14px;
    background: var(--saffron-gold);
    border-radius: 7px;
    filter: drop-shadow(0 4px 12px rgba(255, 140, 0, 0.25));
}

.hero-accent-line {
    width: 240px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron-gold), var(--rosemary-green));
    border-radius: 2px;
    margin-top: 20px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn-primary {
    padding: 28px 64px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-dark));
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 14px 48px rgba(255, 140, 0, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 26px 56px;
    background: transparent;
    border: 2px solid var(--deep-mahogany);
    color: var(--deep-mahogany);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border-radius: 32px;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--saffron-gold);
    color: var(--saffron-gold);
    box-shadow: 0 8px 28px rgba(255, 140, 0, 0.15);
}

.hero-gallery {
    position: relative;
    height: 580px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.hero-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
}

.hero-gallery-item:nth-child(1) {
    grid-column: span 2;
    border-radius: 24px;
    margin-top: -20px;
    z-index: 3;
}

.hero-gallery-item:nth-child(1):hover {
    z-index: 10;
    transform: scale(1.02);
}

.hero-gallery-item:nth-child(5) {
    grid-column: span 2;
    border-radius: 24px;
}

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

.hero-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 140, 0, 0.05));
    pointer-events: none;
}

.hero-gallery-item:hover {
    z-index: 10;
    transform: scale(1.02);
}

.hero-floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    z-index: 5;
}

.hero-floating-card-1 {
    top: 40px;
    left: 12px;
}

.hero-floating-card-2 {
    bottom: 20px;
    right: 12px;
    z-index: 4;
}

.hero-floating-card-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--deep-mahogany);
}

.hero-floating-card-value {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--saffron-gold);
}

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

.section-light {
    background: var(--cream-gold);
}

.section-warm {
    background: var(--warm-ivory);
}

.section-dark {
    background: var(--deep-mahogany);
    color: white;
}

.section-dark .section-dark-text {
    color: white;
}

.section-dark .section-dark-muted {
    color: var(--muted-bronze);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-decor {
    display: inline-block;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.03em;
    color: var(--deep-mahogany);
    margin-bottom: 16px;
}

.section-title-white {
    color: white;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--muted-bronze);
}

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

.service-card {
    break-inside: avoid;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    z-index: 10;
    transform: scale(1.04);
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.service-card-image-only {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 14px;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--saffron-gold);
    fill: none;
}
.service-card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.service-card-content {
    padding: 20px 22px 22px;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
}

.service-card-category {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    color: var(--saffron-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.service-card-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--warm-cocoa);
    margin-top: 8px;
    line-height: 1.65;
}

.service-card-price {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--saffron-gold);
    margin-top: 12px;
}

.service-card-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--saffron-gold), var(--rosemary-green));
    margin: 14px 0;
    border-radius: 2px;
}

.service-card-divider {
    height: 4px;
    width: 40px;
    background: linear-gradient(90deg, var(--saffron-gold), var(--rosemary-green));
    margin: 0 22px 22px;
    border-radius: 2px;
}

.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    position: relative;
    align-items: stretch;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

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

.about-image-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
}

.about-image-block {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 120px;
    height: 80px;
    background: rgba(255, 140, 0, 0.04);
    border-radius: 20px;
    z-index: 10;
}

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

.about-content-decor {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 50%;
    margin-bottom: 24px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 0.82;
    letter-spacing: -0.03em;
    color: var(--deep-mahogany);
}

.about-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--warm-cocoa);
    line-height: 1.8;
    margin-top: 24px;
}

.about-divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 140, 0, 0.1);
    margin: 20px 0;
}

.about-cta {
    margin-top: 32px;
}

.about-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-dark));
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2);
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-block;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255, 140, 0, 0.25);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--saffron-gold), var(--rosemary-green), var(--saffron-gold));
    transform: translateX(-50%);
}

.process-step {
    width: calc(50% - 60px);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    margin-bottom: -16px;
    z-index: 1;
    transition: var(--transition-smooth);
}

.process-step:nth-child(odd) {
    align-self: flex-start;
    margin-right: auto;
}

.process-step:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
    margin-top: 72px;
}

.process-step:hover {
    z-index: 10;
    transform: scale(1.04);
    box-shadow: var(--shadow-card-hover);
}

.process-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--saffron-gold);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--saffron-gold);
    transform: translate(-50%, -50%);
    z-index: 5;
}

.process-step-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}

.process-step-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--saffron-gold);
    fill: none;
}

.process-step-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
}

.process-step-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--warm-cocoa);
    margin-top: 6px;
    line-height: 1.6;
}

.process-step-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 12px;
    filter: saturate(0.98);
}

.process-step-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 140, 0, 0.2);
    margin-top: 12px;
}

.portfolio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 0 80px;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portfolio-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    cursor: pointer;
    margin-bottom: -12px;
    position: relative;
    z-index: 1;
}

.portfolio-item:hover {
    background: white;
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: 0 32px 80px rgba(255, 140, 0, 0.08);
    z-index: 10;
}

.portfolio-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-right: 16px;
}

.portfolio-item-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--saffron-gold);
    fill: none;
}

.portfolio-item-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-mahogany);
    flex: 1;
}

.portfolio-item-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-bounce);
}

.portfolio-item-arrow svg {
    width: 20px;
    height: 20px;
    stroke: rgba(93, 64, 55, 0.3);
    fill: none;
}

.portfolio-item:hover .portfolio-item-arrow {
    transform: translateX(4px);
}

.portfolio-item:hover .portfolio-item-arrow svg {
    stroke: var(--saffron-gold);
}

.portfolio-preview {
    position: relative;
    min-height: 320px;
}

.portfolio-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-card-hover);
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: var(--transition-smooth);
}

.portfolio-preview-image.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
}

.portfolio-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
    border-radius: 24px;
    pointer-events: none;
}

.portfolio-preview-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 12px 24px;
    background: rgba(255, 140, 0, 0.9);
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
    z-index: 5;
}

.portfolio-preview-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--warm-cocoa);
    line-height: 1.6;
    padding-top: 16px;
}

.testimonials-carousel {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
    margin-top: 48px;
}

.carousel-track {
    position: relative;
    width: 300px;
    height: 400px;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.testimonial-card.active {
    z-index: 100;
    transform: translateZ(0) scale(1.04);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-card:nth-child(1) { transform: rotateY(0deg) translateZ(320px); }
.testimonial-card:nth-child(2) { transform: rotateY(52deg) translateZ(320px); }
.testimonial-card:nth-child(3) { transform: rotateY(104deg) translateZ(320px); }
.testimonial-card:nth-child(4) { transform: rotateY(156deg) translateZ(320px); }
.testimonial-card:nth-child(5) { transform: rotateY(208deg) translateZ(320px); }
.testimonial-card:nth-child(6) { transform: rotateY(260deg) translateZ(320px); }

.testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.testimonial-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

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

.testimonial-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.testimonial-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--saffron-gold);
    fill: none;
}

.testimonial-card-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
}

.testimonial-card-role {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: var(--muted-bronze);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.testimonial-card-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: var(--warm-cocoa);
    margin-top: 8px;
    line-height: 1.5;
}

.testimonial-card-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.testimonial-card-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--saffron-gold);
}

.testimonial-card-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--saffron-gold), var(--rosemary-green));
    border-radius: 0 0 24px 24px;
}

.carousel-nav {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.carousel-nav-btn {
    width: 52px;
    height: 52px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.carousel-nav-btn:hover {
    border-color: var(--saffron-gold);
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--saffron-gold);
    fill: none;
}

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

.faq-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: -12px;
    position: relative;
    z-index: 1;
}

.faq-card:hover {
    flex-grow: 1.6;
    background: white;
    box-shadow: 0 48px 128px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.15);
    z-index: 10;
    transform: scale(1.04);
}

.faq-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}

.faq-card-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--saffron-gold);
    fill: none;
}

.faq-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-mahogany);
}

.faq-card:hover .faq-card-title {
    color: var(--saffron-gold);
}
.faq-card.expanded {
    flex-grow: 1.6;
    background: white;
    box-shadow: 0 48px 128px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.15);
    z-index: 10;
    transform: scale(1.04);
}

.faq-card.expanded .faq-card-title {
    color: var(--saffron-gold);
}

.faq-card.expanded .faq-card-desc {
    display: block;
    margin-top: 12px;
}

.faq-card:not(.expanded) .faq-card-desc {
    display: none;
}

.faq-card-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: var(--warm-cocoa);
    margin-top: 6px;
    line-height: 1.6;
}

.faq-card-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 140, 0, 0.2);
    margin-top: 12px;
}

.achievements-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.achievement-card {
    width: 100%;
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0;
    margin-bottom: -30px;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.achievement-card:nth-child(1) { z-index: 3; }
.achievement-card:nth-child(2) { z-index: 2; }
.achievement-card:nth-child(3) { z-index: 1; }

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

.achievement-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--saffron-gold), var(--rosemary-green));
    border-radius: 4px 4px 0 0;
}

.achievement-card-content {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 24px;
}

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

.achievement-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--saffron-gold);
    fill: none;
}

.achievement-card-image {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.achievement-card-info {
    flex: 1;
}

.achievement-card-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--saffron-gold);
}

.achievement-card-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: var(--muted-bronze);
    margin-top: 4px;
}

.achievement-card-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--warm-cocoa);
    margin-top: 8px;
    line-height: 1.6;
}

.achievement-card-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 140, 0, 0.2);
    margin-top: 12px;
}

.team-node-graph {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-center-node {
    width: 160px;
    height: 160px;
    position: relative;
    z-index: 10;
}

.team-center-circle {
    width: 160px;
    height: 160px;
    background: rgba(255, 140, 0, 0.08);
    border: 2px solid var(--saffron-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.team-center-inner {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid var(--rosemary-light);
    border-radius: 50%;
}

.team-center-outer {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 140, 0, 0.08);
    border-radius: 50%;
}

.team-center-icon {
    width: 64px;
    height: 64px;
}

.team-center-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--warm-ivory);
    fill: none;
}

.team-peripheral-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.team-member-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    margin-bottom: -16px;
    z-index: 1;
}

.team-member-card:hover {
    z-index: 10;
    transform: scale(1.06);
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.team-member-card:nth-child(1) { top: 10%; left: 5%; }
.team-member-card:nth-child(2) { top: 10%; right: 5%; }
.team-member-card:nth-child(3) { bottom: 30%; left: 0; }
.team-member-card:nth-child(4) { bottom: 30%; right: 0; }
.team-member-card:nth-child(5) { bottom: 5%; left: 15%; }
.team-member-card:nth-child(6) { bottom: 5%; right: 15%; }

.team-member-image {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 10px;
}

.team-member-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.team-member-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--saffron-gold);
    fill: none;
}

.team-member-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-mahogany);
}

.team-member-role {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: var(--warm-cocoa);
    margin-top: 4px;
    line-height: 1.5;
}

.team-member-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 140, 0, 0.2);
    margin-top: 12px;
}

.team-connection-line {
    position: absolute;
    stroke: rgba(255, 140, 0, 0.12);
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 8 4;
}

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

.contact-accordion {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(180, 100, 50, 0.08);
}

.contact-panel {
    border-bottom: 1px solid var(--glass-border);
}

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

.contact-panel-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-panel-header:hover {
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: 0 32px 80px rgba(255, 140, 0, 0.08);
}

.contact-panel-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
    flex-shrink: 0;
}

.contact-panel-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--saffron-gold);
    fill: none;
}

.contact-panel-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
    flex: 1;
}

.contact-panel-chevron {
    width: 20px;
    height: 20px;
    transition: var(--transition-bounce);
}

.contact-panel-chevron svg {
    width: 20px;
    height: 20px;
    stroke: var(--muted-bronze);
    fill: none;
}

.contact-panel.active .contact-panel-chevron {
    transform: rotate(180deg);
}

.contact-panel.active .contact-panel-chevron svg {
    stroke: var(--saffron-gold);
}

.contact-panel-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.contact-panel.active .contact-panel-body {
    max-height: 500px;
    padding-bottom: 24px;
}

.contact-panel-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 16px;
}

.contact-panel-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--warm-cocoa);
    line-height: 1.75;
    margin-top: 12px;
}

.contact-panel-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--saffron-gold), var(--rosemary-green));
    margin-bottom: 16px;
    border-radius: 2px;
}

.contact-form-section {
    grid-column: span 2;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-mahogany);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    background: rgba(255, 248, 240, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: var(--warm-cocoa);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--saffron-gold);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(93, 64, 55, 0.5);
}

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

.form-submit {
    margin-top: 24px;
}

.form-submit button {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-dark));
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-bounce);
}

.form-submit button:hover {
    box-shadow: 0 14px 48px rgba(255, 140, 0, 0.4);
    transform: translateY(-2px);
}

.map-section {
    padding: 0 80px 80px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 400px;
}

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

footer {
    background: var(--deep-mahogany);
    color: white;
    padding: 80px;
    margin-right: 64px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
}

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

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--rosemary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
}

.footer-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-bounce);
}

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

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

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--saffron-gold);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-copyright {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-bounce);
}

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

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 80px rgba(180, 100, 50, 0.15);
    z-index: 9998;
    display: block;
}

.cookie-banner-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-mahogany);
    margin-bottom: 12px;
}

.cookie-banner-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: var(--warm-cocoa);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-btn-accept {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--saffron-dark));
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.cookie-btn-accept:hover {
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.cookie-btn-decline {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: var(--warm-cocoa);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-bounce);
}

.cookie-btn-decline:hover {
    border-color: var(--saffron-gold);
    color: var(--saffron-gold);
}

.glow-torch {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.glow-torch.active {
    opacity: 1;
}

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

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

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    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(-24px);
    transition: all 0.6s ease-out;
}

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

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

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

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

.count-up {
    animation: countUp 0.5s ease forwards;
}

.page-hero {
    min-height: 320px;
    background: var(--cream-gold);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px;
}

.page-hero-content {
    max-width: 560px;
    margin-left: 40px;
}

.page-breadcrumbs {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--muted-bronze);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 0.82;
    letter-spacing: -0.03em;
    color: var(--deep-mahogany);
    animation: kineticPulse 12s ease-in-out infinite;
}

.page-hero-decor {
    display: inline-block;
    margin-right: 12px;
}

.page-hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.page-hero-marker {
    width: 14px;
    height: 8px;
    background: var(--saffron-gold);
    border-radius: 4px;
}

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

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--deep-mahogany);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--deep-mahogany);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--warm-cocoa);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--warm-cocoa);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--saffron-gold), var(--rosemary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.25);
}

.thank-you-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    fill: none;
}

.thank-you-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--deep-mahogany);
    margin-bottom: 16px;
}

.thank-you-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: var(--warm-cocoa);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-cta {
    display: flex;
    gap: 16px;
}

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

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 140, 0, 0.05);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--saffron-gold), var(--saffron-dark));
    border-radius: 4px;
}

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

@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-gallery {
        height: 400px;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-gallery-item:nth-child(1) {
        grid-column: span 3;
    }
    
    .hero-gallery-item:nth-child(5) {
        grid-column: span 3;
    }
    
    .services-masonry {
        columns: 2;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .vertical-sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    main {
        margin-right: 0;
    }
    
    footer {
        margin-right: 0;
    }
    
    .hero-content-wrapper {
        padding: 120px 40px 80px;
    }
    
    .hero-title-kanji {
        font-size: 80px;
    }
    
    .hero-title-cuisine {
        font-size: 56px;
    }
    
    .hero-title-atelier {
        font-size: 36px;
    }
    
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        min-height: 300px;
    }
    
    .about-content {
        padding: 48px 40px;
    }
    
    .process-timeline {
        padding: 0 40px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        margin-right: 0 !important;
    }
    
    .process-step:nth-child(even) {
        margin-top: 0;
    }
    
    .process-step::before {
        left: -34px;
    }
    
    .portfolio-layout {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .portfolio-preview {
        display: none;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .contact-form-section {
        grid-column: span 1;
    }
    
    .map-section {
        padding: 0 40px 40px;
    }
    
    .section {
        padding: 80px 40px 60px;
    }
    
    .page-hero {
        padding: 80px 40px;
        min-height: 280px;
    }
    
    .page-hero-title {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-title-kanji {
        font-size: 60px;
    }
    
    .hero-title-cuisine {
        font-size: 40px;
    }
    
    .hero-title-atelier {
        font-size: 28px;
    }
    
    .hero-gallery {
        height: 300px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-gallery-item:nth-child(1),
    .hero-gallery-item:nth-child(5) {
        grid-column: span 2;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-masonry {
        columns: 1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-card:hover {
        flex-grow: 0;
    }
    
    .achievement-card-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .achievement-card-image {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 40px 24px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .thank-you-section {
        padding: 40px 24px;
    }
    
    .thank-you-title {
        font-size: 32px;
    }
    
    .thank-you-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .testimonials-carousel {
        height: auto;
    }
    
    .carousel-track {
        transform-style: flat;
    }
    
    .testimonial-card {
        position: relative;
        transform: none !important;
        margin-bottom: 24px;
    }
    
    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3),
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(5),
    .testimonial-card:nth-child(6) {
        transform: none;
    }
}
