@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=EB+Garamond:wght@400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');
:root {
    --warm-cream: #FDF6E3;
    --soft-ivory: #FAF3E0;
    --deep-forest: #1B4332;
    --warm-charcoal: #4A3728;
    --muted-gold: #B8956C;
    --antique-gold: #D4AF37;
    --deep-burgundy: #6B2D2D;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(212, 175, 55, 0.08);
    --shadow-medium: 0 8px 32px rgba(212, 175, 55, 0.12);
    --shadow-strong: 0 16px 48px rgba(212, 175, 55, 0.16);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 24px;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-charcoal);
    background-color: var(--warm-cream);
    overflow-x: hidden;
}
strong, p {
    color: inherit;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-forest);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 72px;
    height: 100vh;
    background: rgba(253, 246, 227, 0.99);
    backdrop-filter: blur(16px);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0 24px 24px 0;
    box-shadow: 4px 0 48px rgba(212, 175, 55, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    justify-content: space-between;
    transition: width var(--transition-base);
}
header:hover {
    width: 280px;
}
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--antique-gold), var(--deep-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
}
.logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}
.logo-short {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-top: 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
}
.logo-full {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-top: 12px;
    text-align: left;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
header:hover .logo-short {
    display: none;
}
header:hover .logo-full {
    display: block;
}
.header-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    width: 100%;
    position: relative;
}
.nav-item svg {
    width: 22px;
    height: 22px;
    stroke: rgba(74, 55, 40, 0.5);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}
.nav-text {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--warm-charcoal);
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all var(--transition-base);
    margin-top: 4px;
}
.nav-text-en {
    font-size: 11px;
    color: var(--muted-gold);
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all var(--transition-base);
}
header:hover .nav-text,
header:hover .nav-text-en {
    opacity: 1;
    max-width: 200px;
    margin-left: 12px;
}
.nav-item:hover .nav-text {
    color: var(--antique-gold);
}
.nav-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
}
.nav-underline {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
    margin-top: 4px;
    transition: width var(--transition-base);
}
.nav-item:hover .nav-underline {
    width: 100%;
}
.header-cta {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    width: 100%;
}
header:hover .header-cta {
    display: flex;
}
.cta-button {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--antique-gold), #C9A227);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
    text-align: center;
    transition: all var(--transition-base);
    white-space: nowrap;
}
.cta-button:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}
.header-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--antique-gold);
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: 12px;
    white-space: nowrap;
}
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(253, 246, 227, 0.99);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    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: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--antique-gold), var(--deep-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-logo-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}
.mobile-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-forest);
}
.hamburger {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}
.hamburger:hover {
    background: rgba(212, 175, 55, 0.15);
}
.hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 2;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 246, 227, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all var(--transition-base);
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    display: flex;
}
.mobile-menu-item {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-forest);
    padding: 16px 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}
.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-item::before,
.mobile-menu-item::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--antique-gold);
}
.mobile-menu-item::before {
    top: 0;
}
.mobile-menu-item::after {
    bottom: 0;
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 2;
}
.mobile-menu-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--antique-gold);
    margin-top: 40px;
    letter-spacing: 0.02em;
}
.mobile-menu-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--muted-gold);
    margin-top: 8px;
    text-align: center;
    padding: 0 20px;
}
main {
    margin-left: 72px;
    min-height: 100vh;
}
.hero {
    min-height: 100vh;
    background: var(--warm-cream);
    position: relative;
    overflow: hidden;
    padding: 140px 80px 120px 80px;
}
.hero-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}
.pattern-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}
.pattern-zigzag {
    animation: patternDrift 50s ease-in-out infinite alternate;
}
.pattern-sunburst {
    animation: patternDrift 60s ease-in-out infinite alternate-reverse;
}
.pattern-chevron {
    animation: patternDrift 55s ease-in-out infinite alternate;
}
@keyframes patternDrift {
    0% { transform: translate(0, 0) scale(0.92); }
    100% { transform: translate(40px, 40px) scale(1.08); }
}
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}
.hero-grid-line {
    animation: gridDrift 30s ease-in-out infinite alternate;
}
@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    z-index: 2;
}
.hero-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-left {
    grid-column: span 6;
}
.hero-decor-icon {
    margin-bottom: 28px;
}
.hero-decor-icon svg {
    width: 56px;
    height: 56px;
    stroke: rgba(212, 175, 55, 0.4);
    fill: none;
    stroke-width: 2;
}
.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--deep-forest);
    line-height: 0.78;
}
.hero-title-sub {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--antique-gold);
    line-height: 0.88;
    margin-top: 8px;
}
.hero-chinese-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: rgba(74, 55, 40, 0.5);
    letter-spacing: 0.1em;
    margin-top: 16px;
}
.hero-description {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: var(--warm-charcoal);
    line-height: 1.8;
    max-width: 480px;
    margin-top: 20px;
}
.hero-markers {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.hero-marker {
    width: 24px;
    height: 12px;
    background: var(--antique-gold);
    border-radius: 2px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}
.hero-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
    margin-top: 16px;
    border-radius: 2px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.btn-primary {
    padding: 24px 52px;
    background: linear-gradient(135deg, var(--antique-gold), #C9A227);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    transition: all var(--transition-base);
    white-space: nowrap;
}
.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}
.btn-secondary {
    padding: 22px 44px;
    background: transparent;
    border: 2px solid var(--deep-forest);
    color: var(--deep-forest);
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 28px;
    transition: all var(--transition-base);
    white-space: nowrap;
}
.btn-secondary:hover {
    border-color: var(--antique-gold);
    color: var(--antique-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}
.hero-right {
    grid-column: span 6;
    position: relative;
}
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    height: 560px;
    position: relative;
}
.hero-main-image {
    grid-column: span 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.08);
    transition: all var(--transition-base);
}
.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95);
}
.hero-main-image:hover {
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 0 48px 128px rgba(212, 175, 55, 0.1);
}
.hero-side-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-side-image {
    flex: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
}
.hero-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-soft);
    z-index: 5;
}
.hero-card-1 {
    top: 20px;
    margin-left: 20px;
}
.hero-card-2 {
    bottom: 20px;
    margin-left: 120px;
}
.hero-card-label {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--deep-forest);
}
.hero-card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: var(--antique-gold);
    margin-top: 4px;
}
.section {
    padding: 100px 80px;
    position: relative;
}
.section-ivory {
    background: var(--soft-ivory);
}
.section-cream {
    background: var(--warm-cream);
}
.section-forest {
    background: var(--deep-forest);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--deep-forest);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.section-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: var(--warm-charcoal);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-title {
    color: var(--warm-cream);
}
.section-dark .section-subtitle {
    color: rgba(253, 246, 227, 0.8);
}
.fluidity-transition {
    height: 80px;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(253, 246, 227, 0.9), transparent);
    pointer-events: none;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-base);
}
.service-card:hover {
    transform: scale(1.03);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-strong);
    z-index: 10;
}
.service-card-image {
    height: 200px;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}
.service-card:hover .service-card-image img {
    transform: scale(1.05);
}
.service-card-content {
    padding: 20px 22px 22px;
}
.service-card-category {
    font-family: 'EB Garamond', serif;
    font-size: 11px;
    color: var(--antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 8px;
}
.service-card-desc {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--warm-charcoal);
    line-height: 1.65;
}
.service-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--antique-gold);
    margin-top: 12px;
}
.service-card-decor {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
    margin: 16px 22px 0;
    border-radius: 2px;
}
.service-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}
.service-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.service-card-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
    margin-bottom: 14px;
    border-radius: 2px;
}
.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    position: relative;
}
.about-divider {
    position: absolute;
    left: 55%;
    top: 0;
    height: 100%;
    width: 8px;
    background: linear-gradient(180deg, var(--antique-gold), var(--deep-burgundy));
    transform: translateX(-50%);
    z-index: 2;
}
.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 500px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}
.about-content {
    padding: 80px 60px;
}
.about-decor {
    margin-bottom: 24px;
}
.about-decor svg {
    width: 48px;
    height: 48px;
    stroke: rgba(212, 175, 55, 0.4);
    fill: none;
    stroke-width: 2;
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--deep-forest);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}
.about-text {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: var(--warm-charcoal);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-divider-line {
    width: 40px;
    height: 2px;
    background: rgba(212, 175, 55, 0.1);
    margin: 20px 0;
}
.btn-about {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--antique-gold), #C9A227);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    transition: all var(--transition-base);
    display: inline-block;
    margin-top: 24px;
}
.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}
.process-timeline {
    position: relative;
    padding: 40px 0;
}
.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--antique-gold), var(--deep-burgundy), var(--antique-gold));
    transform: translateX(-50%);
}
.process-step {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-md);
    padding: 24px 28px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-medium);
    position: relative;
    margin-bottom: 72px;
    transition: all var(--transition-base);
}
.process-step:nth-child(odd) {
    margin-right: auto;
}
.process-step:nth-child(even) {
    margin-left: auto;
    margin-top: 72px;
}
.process-step:hover {
    z-index: 10;
    transform: scale(1.02);
}
.process-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--antique-gold);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--antique-gold);
    transform: translate(-50%, -50%);
    z-index: 5;
}
.process-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}
.process-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 6px;
}
.process-desc {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--warm-charcoal);
    line-height: 1.6;
    margin-top: 6px;
}
.process-image {
    height: 100px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-top: 12px;
}
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.98);
}
.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: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}
.portfolio-item:hover {
    background: var(--white);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-medium);
    z-index: 10;
}
.portfolio-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex-shrink: 0;
}
.portfolio-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.portfolio-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.portfolio-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-forest);
}
.portfolio-arrow {
    width: 20px;
    height: 20px;
    transition: all var(--transition-base);
}
.portfolio-arrow svg {
    width: 100%;
    height: 100%;
    stroke: rgba(74, 55, 40, 0.3);
    fill: none;
    stroke-width: 2;
}
.portfolio-item:hover .portfolio-arrow svg {
    stroke: var(--antique-gold);
    transform: translateX(4px);
}
.portfolio-reveal {
    position: relative;
    min-height: 320px;
}
.portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all var(--transition-base);
}
.portfolio-image.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(212, 175, 55, 0.9);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
.portfolio-desc {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--warm-charcoal);
    line-height: 1.6;
    padding-top: 16px;
    opacity: 0;
    transition: all var(--transition-base);
}
.portfolio-image.active + .portfolio-desc,
.portfolio-reveal:hover .portfolio-desc {
    opacity: 1;
    bottom: -40px;
}
.testimonial-carousel {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
    margin-top: 48px;
}
.testimonial-track {
    position: relative;
    width: 300px;
    height: 100%;
    transform-style: preserve-3d;
}
.testimonial-card {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}
.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 {
    transform: rotateY(var(--rotate, 0deg)) translateZ(320px) scale(1.04);
    box-shadow: 0 32px 80px rgba(212, 175, 55, 0.12);
    z-index: 100;
}
.testimonial-image {
    height: 120px;
    overflow: hidden;
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-content {
    padding: 24px;
}
.testimonial-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}
.testimonial-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-forest);
}
.testimonial-role {
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    color: var(--muted-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.testimonial-text {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: var(--warm-charcoal);
    line-height: 1.5;
    margin-top: 8px;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}
.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--antique-gold);
}
.testimonial-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
}
.testimonial-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}
.testimonial-nav:hover {
    background: var(--white);
    border-color: var(--antique-gold);
}
.testimonial-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 2;
}
.testimonial-nav-prev {
    left: calc(50% - 400px);
}
.testimonial-nav-next {
    right: calc(50% - 400px);
}
.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 rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card:hover {
    flex-grow: 1.6;
    background: var(--white);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.15);
    z-index: 10;
}
.faq-card:hover .faq-icon {
    transform: scale(1.1);
}
.faq-card:hover .faq-title {
    color: var(--antique-gold);
}
.faq-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    transition: transform var(--transition-base);
}
.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-forest);
    transition: color var(--transition-base);
    margin-bottom: 6px;
}
.faq-text {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: var(--warm-charcoal);
    line-height: 1.6;
}
.achievements-stack {
    max-width: 900px;
    margin: 0 auto;
}
.achievement-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-strong);
    padding: 0;
    margin-bottom: -80px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}
.achievement-card:nth-child(1) { z-index: 6; }
.achievement-card:nth-child(2) { z-index: 5; }
.achievement-card:nth-child(3) { z-index: 4; }
.achievement-card:nth-child(4) { z-index: 3; }
.achievement-card:nth-child(5) { z-index: 2; }
.achievement-card:nth-child(6) { z-index: 1; }
.achievement-card:hover {
    z-index: 10;
    transform: translateY(-4px);
}
.achievement-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
    border-radius: 4px 4px 0 0;
}
.achievement-content {
    display: flex;
    align-items: center;
    padding: 24px;
}
.achievement-icon {
    width: 48px;
    height: 48px;
    margin: 0 24px 0 24px;
    flex-shrink: 0;
}
.achievement-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.achievement-image {
    width: 140px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 24px;
}
.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.achievement-info {
    flex: 1;
}
.achievement-value {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--antique-gold);
}
.achievement-label {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: var(--muted-gold);
    margin-top: 4px;
}
.achievement-desc {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--warm-charcoal);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 500px;
}
.team-network {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-center {
    position: relative;
    z-index: 5;
}
.team-center-circle {
    width: 160px;
    height: 160px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--antique-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 32px 80px rgba(212, 175, 55, 0.12);
}
.team-center-icon {
    width: 64px;
    height: 64px;
}
.team-center-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--soft-ivory);
    fill: none;
    stroke-width: 1.5;
}
.team-center-inner {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(107, 45, 45, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.team-center-outer {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.team-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 18px 20px;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-base);
    width: 200px;
}
.team-node:hover {
    z-index: 10;
    transform: scale(1.06);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 32px 80px rgba(212, 175, 55, 0.1);
}
.team-node:nth-child(2) { top: 10%; left: 50%; transform: translateX(-50%); }
.team-node:nth-child(3) { top: 25%; right: 5%; }
.team-node:nth-child(4) { bottom: 25%; right: 5%; }
.team-node:nth-child(5) { bottom: 10%; left: 50%; transform: translateX(-50%); }
.team-node:nth-child(6) { bottom: 25%; left: 5%; }
.team-node:nth-child(7) { top: 25%; left: 5%; }
.team-node:hover:nth-child(2) { transform: translateX(-50%) scale(1.06); }
.team-node:hover:nth-child(5) { transform: translateX(-50%) scale(1.06); }
.team-node-image {
    height: 70px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
}
.team-node-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-node-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.team-node-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.team-node-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-forest);
}
.team-node-role {
    font-family: 'EB Garamond', serif;
    font-size: 12px;
    color: var(--warm-charcoal);
    margin-top: 4px;
    line-height: 1.5;
}
.team-connection {
    position: absolute;
    stroke: rgba(212, 175, 55, 0.12);
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 8 4;
    z-index: 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 80px;
}
.accordion-panel {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all var(--transition-base);
}
.accordion-panel:hover {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 32px 80px rgba(212, 175, 55, 0.08);
    z-index: 10;
}
.accordion-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}
.accordion-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
    flex-shrink: 0;
}
.accordion-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.accordion-title {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-forest);
}
.accordion-chevron {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}
.accordion-chevron svg {
    width: 100%;
    height: 100%;
    stroke: var(--muted-gold);
    fill: none;
    stroke-width: 2;
}
.accordion-panel.active .accordion-chevron {
    transform: rotate(180deg);
}
.accordion-panel.active .accordion-chevron svg {
    stroke: var(--antique-gold);
}
.accordion-panel.active {
    border-left: 4px solid var(--antique-gold);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.accordion-panel.active .accordion-content {
    max-height: 400px;
}
.accordion-image {
    height: 180px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin: 0 24px 16px;
}
.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.accordion-text {
    padding: 0 24px 24px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: var(--warm-charcoal);
    line-height: 1.75;
}
.accordion-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--antique-gold), var(--deep-burgundy));
    margin: 0 24px 16px;
    border-radius: 2px;
}
footer {
    background: var(--deep-forest);
    padding: 60px 80px 40px;
    margin-left: 72px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--warm-cream);
    margin-bottom: 16px;
}
.footer-brand-desc {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: rgba(253, 246, 227, 0.7);
    line-height: 1.7;
}
.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--antique-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: rgba(253, 246, 227, 0.7);
    transition: color var(--transition-base);
}
.footer-links a:hover {
    color: var(--antique-gold);
}
.footer-contact-item {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: rgba(253, 246, 227, 0.7);
    margin-bottom: 12px;
}
.footer-contact-item strong {
    color: var(--antique-gold);
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: rgba(253, 246, 227, 0.5);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: rgba(253, 246, 227, 0.5);
    transition: color var(--transition-base);
}
.footer-legal a:hover {
    color: var(--antique-gold);
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 92px;
    background: rgba(253, 246, 227, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    max-width: 400px;
    box-shadow: var(--shadow-strong);
    z-index: 999;
    display: block;
}
.cookie-banner.hidden {
    display: none;
}
.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 8px;
}
.cookie-text {
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    color: var(--warm-charcoal);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
}
.cookie-btn {
    padding: 10px 20px;
    font-family: 'EB Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-base);
}
.cookie-accept {
    background: linear-gradient(135deg, var(--antique-gold), #C9A227);
    color: var(--white);
    border: none;
}
.cookie-accept:hover {
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.cookie-decline {
    background: transparent;
    color: var(--warm-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.cookie-decline:hover {
    border-color: var(--antique-gold);
    color: var(--antique-gold);
}
.spotlight {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s;
}
body.spotlight-active .spotlight {
    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-art-deco {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}
.reveal-art-deco.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-out forwards;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--warm-cream);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--antique-gold), #C9A227);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}
.hero-inner {
    min-height: 280px;
    background: var(--warm-cream);
    position: relative;
    overflow: hidden;
    padding: 120px 80px 60px;
}
.breadcrumbs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--muted-gold);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.breadcrumbs a {
    color: var(--muted-gold);
    transition: color var(--transition-base);
}
.breadcrumbs a:hover {
    color: var(--antique-gold);
}
.hero-inner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--deep-forest);
    letter-spacing: 0.02em;
}
.hero-inner-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.form-section {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    color: var(--deep-forest);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: var(--warm-charcoal);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-textarea {
    min-height: 150px;
    resize: vertical;
}
.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--antique-gold), #C9A227);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    transition: all var(--transition-base);
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}
.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}
.thank-you-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.thank-you-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 16px;
}
.thank-you-text {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: var(--warm-charcoal);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}
.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 32px;
    text-align: center;
}
.legal-section {
    margin-bottom: 32px;
}
.legal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 12px;
}
.legal-text {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: var(--warm-charcoal);
    line-height: 1.8;
}
.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 32px;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}
.contact-info-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-medium);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex-shrink: 0;
}
.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--antique-gold);
    fill: none;
    stroke-width: 1.5;
}
.contact-info-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: var(--muted-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.contact-info-value {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: var(--warm-charcoal);
}
@media (max-width: 1024px) {
    header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    main {
        margin-left: 0;
    }
    footer {
        margin-left: 0;
    }
    .cookie-banner {
        left: 20px;
        max-width: calc(100% - 40px);
    }
    .hero {
        padding: 100px 24px 80px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-left {
        grid-column: span 1;
    }
    .hero-right {
        grid-column: span 1;
    }
    .hero-title-main {
        font-size: 64px;
    }
    .hero-title-sub {
        font-size: 40px;
    }
    .hero-split {
        height: auto;
        grid-template-columns: 1fr;
    }
    .hero-main-image {
        height: 300px;
    }
    .hero-side-images {
        flex-direction: row;
    }
    .hero-side-image {
        height: 140px;
    }
    .hero-card-1,
    .hero-card-2 {
        margin-left: 0;
    }
    .section {
        padding: 80px 24px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-split {
        grid-template-columns: 1fr;
    }
    .about-divider {
        display: none;
    }
    .about-image {
        min-height: 300px;
    }
    .about-content {
        padding: 40px 24px;
    }
    .process-line {
        left: 20px;
    }
    .process-step {
        width: calc(100% - 60px);
        margin-left: 40px !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 24px;
    }
    .process-dot {
        left: 20px;
        transform: translate(-50%, -50%);
    }
    .portfolio-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .portfolio-reveal {
        display: none;
    }
    .testimonial-carousel {
        height: auto;
        perspective: none;
    }
    .testimonial-track {
        transform-style: flat;
    }
    .testimonial-card {
        position: relative;
        transform: none !important;
        margin-bottom: 24px;
        width: 100%;
    }
    .testimonial-nav {
        display: none;
    }
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-network {
        flex-direction: column;
        gap: 24px;
    }
    .team-center {
        position: relative;
    }
    .team-node {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    .team-node:hover {
        transform: none !important;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 48px;
    }
    .hero-title-sub {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .hero-inner {
        padding: 100px 24px 60px;
        min-height: auto;
    }
    .hero-inner-title {
        font-size: 36px;
    }
    .section-title {
        font-size: 36px;
    }
    .achievement-content {
        flex-direction: column;
        text-align: center;
    }
    .achievement-image {
        margin: 16px 0;
    }
    .contact-info-box {
        padding: 24px;
    }
}
