@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --warm-cream: #FFFBF5;
    --soft-amber: #FEF3E2;
    --deep-slate: #1C1917;
    --warm-stone: #78716C;
    --muted-terracotta: #D97706;
    --steel-gray: #57534E;
    --light-terracotta: rgba(217,119,6,0.08);
    --terracotta-medium: rgba(217,119,6,0.12);
    --terracotta-light: rgba(217,119,6,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--warm-stone);
    background-color: var(--warm-cream);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.92;
    color: var(--deep-slate);
}

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

.sharp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.sharp-btn-primary {
    background: linear-gradient(135deg, var(--muted-terracotta), #B45309);
    color: white;
    box-shadow: 6px 6px 0 rgba(217,119,6,0.3);
}

.sharp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 0 rgba(217,119,6,0.4);
}

.sharp-btn-secondary {
    background: transparent;
    color: var(--deep-slate);
    border: 2px solid var(--deep-slate);
    box-shadow: none;
}

.sharp-btn-secondary:hover {
    border-color: var(--muted-terracotta);
    box-shadow: 0 6px 20px rgba(217,119,6,0.15);
}

.sharp-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px) saturate(140%);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    transition: all 0.3s ease;
}

.sharp-card:hover {
    border-color: rgba(217,119,6,0.15);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

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

@keyframes blob-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
}

@keyframes blob-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 30px) scale(0.95); }
}

@keyframes blob-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 50px) scale(1.05); }
}

@keyframes blob-float-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -30px) scale(0.9); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(217,119,6,0.2); }
    50% { box-shadow: 0 0 40px rgba(217,119,6,0.4); }
}

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

.animated-blob {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.6;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, rgba(217,119,6,0.08) 0%, rgba(180,83,9,0.05) 30%, rgba(254,243,199,0.03) 50%, transparent 70%);
    animation: blob-float-1 45s ease-in-out infinite;
}

.blob-2 {
    width: 600px;
    height: 600px;
    top: 40%;
    right: -15%;
    background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, rgba(254,243,199,0.04) 50%, transparent 70%);
    animation: blob-float-2 50s ease-in-out infinite;
}

.blob-3 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: 30%;
    background: radial-gradient(circle, rgba(254,243,199,0.04) 0%, rgba(217,119,6,0.03) 50%, transparent 70%);
    animation: blob-float-3 55s ease-in-out infinite;
}

.blob-4 {
    width: 450px;
    height: 450px;
    bottom: -10%;
    right: 20%;
    background: radial-gradient(circle, rgba(180,83,9,0.04) 0%, rgba(217,119,6,0.03) 50%, transparent 70%);
    animation: blob-float-4 48s ease-in-out infinite;
}

.sharp-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    filter: blur(40px);
    background-image: 
        linear-gradient(rgba(217,119,6,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217,119,6,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: grid-shift 25s ease-in-out infinite;
}

.glow-torch {
    position: fixed;
    width: 160px;
    height: 160px;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle, rgba(217,119,6,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.1s;
}

.floating-side-island {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    max-height: calc(100vh - 120px);
    background: rgba(255,251,245,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.12);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08), 0 24px 64px rgba(217,119,6,0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    gap: 8px;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.floating-side-island.scrolled {
    opacity: 0.5;
    transform: translateY(-50%) scale(0.9);
}

.floating-side-island.scrolled:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

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

.floating-side-island .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--muted-terracotta), var(--steel-gray));
    border-radius: 0;
    box-shadow: 4px 4px 0 rgba(217,119,6,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-side-island .logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.floating-side-island .logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 10px;
    color: var(--deep-slate);
    margin-top: 8px;
    text-align: center;
}

.floating-side-island .nav-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    overflow-y: auto;
}

.floating-side-island .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.floating-side-island .nav-item:hover {
    background: rgba(217,119,6,0.08);
    transform: scale(1.05);
    box-shadow: 4px 4px 0 rgba(217,119,6,0.1);
}

.floating-side-island .nav-item svg {
    width: 20px;
    height: 20px;
    stroke: rgba(120,113,108,0.5);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.2s;
}

.floating-side-island .nav-item:hover svg {
    stroke: var(--muted-terracotta);
}

.floating-side-island .nav-item span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 9px;
    color: var(--warm-stone);
    text-align: center;
    line-height: 1.2;
    margin-top: 4px;
}

.floating-side-island .nav-item:hover span {
    color: var(--muted-terracotta);
}

.floating-side-island .cta-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--muted-terracotta), #B45309);
    color: white;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 0;
    box-shadow: 4px 4px 0 rgba(217,119,6,0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.floating-side-island .cta-btn:hover {
    box-shadow: 6px 6px 0 rgba(217,119,6,0.3);
    transform: translateY(-2px);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255,251,245,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(217,119,6,0.08);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

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

.mobile-header .mobile-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--muted-terracotta);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-header .mobile-logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-slate);
}

.mobile-header .mobile-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--muted-terracotta), #B45309);
    color: white;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 12px;
    border: none;
    border-radius: 0;
    box-shadow: 4px 4px 0 rgba(217,119,6,0.2);
    cursor: pointer;
    text-decoration: none;
}

.mobile-header .hamburger {
    width: 40px;
    height: 40px;
    background: rgba(217,119,6,0.08);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-header .hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,251,245,0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: none;
    border: 2px solid var(--muted-terracotta);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-overlay .close-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.mobile-menu-overlay .mobile-nav {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
}

.mobile-menu-overlay .mobile-nav-item {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--deep-slate);
    padding: 16px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.mobile-menu-overlay .mobile-nav-item:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu-overlay .mobile-nav-item:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu-overlay .mobile-nav-item:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu-overlay .mobile-nav-item:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu-overlay .mobile-nav-item:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu-overlay .mobile-nav-item:nth-child(6) { transition-delay: 0.36s; }
.mobile-menu-overlay .mobile-nav-item:nth-child(7) { transition-delay: 0.42s; }

.mobile-menu-overlay .mobile-nav-item:hover {
    border-bottom-color: var(--muted-terracotta);
}

.mobile-menu-overlay .mobile-contact-info {
    margin-left: 40px;
    margin-top: auto;
    padding-bottom: 40px;
}

.mobile-menu-overlay .mobile-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--muted-terracotta);
    margin-bottom: 8px;
}

.mobile-menu-overlay .mobile-address {
    font-size: 14px;
    color: var(--warm-stone);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 80px 140px 120px;
    overflow: hidden;
}

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

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

.hero-decor {
    margin-bottom: 28px;
}

.hero-decor svg {
    width: 56px;
    height: 56px;
    stroke: rgba(217,119,6,0.4);
    fill: none;
    stroke-width: 3;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(60px, 10vw, 120px);
    letter-spacing: -0.03em;
    line-height: 0.72;
    color: var(--deep-slate);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: -0.02em;
    line-height: 0.88;
    color: var(--muted-terracotta);
}

.hero-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(120,113,108,0.5);
    margin-top: 16px;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 17px;
    color: var(--warm-stone);
    line-height: 1.65;
    max-width: 440px;
    margin-top: 20px;
}

.hero-markers {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.hero-marker {
    width: 24px;
    height: 10px;
    background: var(--muted-terracotta);
    border-radius: 0;
    filter: drop-shadow(4px 4px 0 rgba(217,119,6,0.15));
}

.hero-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray));
    margin-top: 16px;
    box-shadow: 4px 4px 0 rgba(217,119,6,0.1);
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-cta .sharp-btn-primary {
    padding: 24px 52px;
    font-size: 16px;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.3);
}

.hero-cta .sharp-btn-primary:hover {
    box-shadow: 10px 10px 0 rgba(217,119,6,0.4);
}

.hero-cta .sharp-btn-secondary {
    padding: 22px 44px;
}

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

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

.hero-bento-item {
    border-radius: 0;
    border: 2px solid rgba(217,119,6,0.1);
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-bento-item:first-child {
    grid-row: span 2;
}

.hero-bento-item:hover {
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 8px 8px 0 rgba(217,119,6,0.1);
}

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

.hero-bento-item:first-child img {
    box-shadow: inset 0 0 40px rgba(217,119,6,0.06);
}

.hero-stat-card {
    position: absolute;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    padding: 14px 18px;
    box-shadow: 6px 6px 0 rgba(217,119,6,0.06);
    z-index: 5;
}

.hero-stat-card-1 {
    top: 40px;
    right: 24px;
}

.hero-stat-card-2 {
    bottom: 40px;
    right: 24px;
}

.hero-stat-card-label {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--deep-slate);
}

.hero-stat-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted-terracotta);
}

.section-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    z-index: 10;
}

.services-section {
    background: var(--soft-amber);
    padding: 100px 80px;
}

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

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(217,119,6,0.15);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
    z-index: 20;
}

.service-card-header {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 16px;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.service-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
    flex: 1;
}

.service-card-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--warm-stone);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.service-card.active .service-card-chevron {
    transform: rotate(180deg);
    stroke: var(--muted-terracotta);
}

.service-card.active {
    border-left: 4px solid var(--muted-terracotta);
}

.service-card-content {
    display: none;
    padding: 0 24px 24px;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray)) 1;
}

.service-card.active .service-card-content {
    display: block;
}

.service-card-pattern {
    height: 120px;
    margin: 16px 0;
    opacity: 0.65;
}

.service-card-pattern svg {
    width: 100%;
    height: 100%;
}

.service-card-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--warm-stone);
}

.about-section {
    background: var(--warm-cream);
    padding: 100px 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    padding: 18px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.about-card:hover {
    z-index: 20;
    transform: scale(1.06);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

.about-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.about-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-slate);
}

.about-card-text {
    font-size: 12px;
    color: var(--warm-stone);
    margin-top: 4px;
    line-height: 1.5;
}

.about-card-line {
    width: 40px;
    height: 2px;
    background: rgba(217,119,6,0.2);
    margin: 12px auto;
}

.about-card-value {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--muted-terracotta);
}

.process-section {
    background: var(--soft-amber);
    padding: 100px 80px;
    overflow: hidden;
}

.process-container {
    display: flex;
    gap: 32px;
    padding: 80px;
    max-width: max-content;
}

.process-card {
    width: 320px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    padding: 24px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-card:hover {
    z-index: 20;
    transform: scale(1.06);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
}

.process-card-number {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 48px;
    color: rgba(217,119,6,0.1);
    position: absolute;
    top: 12px;
    right: 16px;
}

.process-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.process-card-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.process-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
    margin-bottom: 8px;
}

.process-card-text {
    font-size: 14px;
    color: var(--warm-stone);
    line-height: 1.6;
}

.process-card-decor {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray));
    margin-bottom: 16px;
    box-shadow: 4px 4px 0 rgba(217,119,6,0.1);
}

.process-card-pattern {
    height: 80px;
    margin-top: 12px;
}

.process-card-pattern svg {
    width: 100%;
    height: 100%;
}

.progress-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(217,119,6,0.1);
    border-radius: 0;
    z-index: 100;
}

.progress-indicator-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray));
    width: 0%;
    transition: width 0.3s ease;
}

.portfolio-section {
    background: var(--warm-cream);
    padding: 100px 80px;
}

.portfolio-grid {
    columns: 3;
    column-gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    break-inside: avoid;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: scale(1.03);
    border-color: rgba(217,119,6,0.15);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
    z-index: 20;
}

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

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

.portfolio-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
    margin-bottom: 4px;
}

.portfolio-card-category {
    font-size: 11px;
    color: var(--muted-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.portfolio-card-text {
    font-size: 14px;
    color: var(--warm-stone);
    line-height: 1.6;
}

.portfolio-card-decor {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray));
    margin-top: 16px;
    box-shadow: 4px 4px 0 rgba(217,119,6,0.1);
}

.testimonials-section {
    background: var(--soft-amber);
    padding: 100px 80px;
}

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

.testimonial-card {
    width: 300px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    position: absolute;
    padding: 0;
    transition: all 0.5s ease;
}

.testimonial-card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 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(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.testimonial-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
}

.testimonial-card-role {
    font-size: 12px;
    color: var(--warm-stone);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.testimonial-card-text {
    font-size: 13px;
    color: var(--warm-stone);
    margin-top: 8px;
    line-height: 1.5;
}

.testimonial-card-rating {
    width: 96px;
    height: 16px;
    margin-top: 8px;
    display: flex;
}

.testimonial-card-rating svg {
    width: 100%;
    height: 100%;
    fill: var(--muted-terracotta);
}

.testimonial-card-decor {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray));
    border-radius: 0;
}

.testimonial-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(217,119,6,0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
}

.testimonial-nav:hover {
    border-color: var(--muted-terracotta);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.testimonial-nav-prev {
    left: 20%;
}

.testimonial-nav-next {
    right: 20%;
}

.faq-section {
    background: var(--warm-cream);
    padding: 100px 80px;
}

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

.faq-card {
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    margin-bottom: -30px;
    overflow: visible;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.faq-card:hover {
    z-index: 20;
    transform: translateY(-4px);
}

.faq-card-header {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--muted-terracotta), var(--steel-gray)) 1;
    display: flex;
    align-items: center;
    padding: 0;
}

.faq-card-icon {
    width: 48px;
    height: 48px;
    margin: 24px;
    flex-shrink: 0;
}

.faq-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.faq-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
    padding: 24px;
    flex: 1;
}

.faq-card-content {
    display: none;
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--warm-stone);
    line-height: 1.6;
}

.faq-card.active .faq-card-content {
    display: block;
}

.faq-card-line {
    width: 40px;
    height: 2px;
    background: rgba(217,119,6,0.2);
    margin-top: 12px;
}

.achievements-section {
    background: var(--deep-slate);
    padding: 100px 80px;
    color: white;
}

.achievements-split {
    display: grid;
    grid-template-columns: 55% 45%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.achievements-image {
    position: relative;
}

.achievements-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.achievements-image-decor {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.achievements-image-decor svg {
    width: 56px;
    height: 56px;
    stroke: rgba(217,119,6,0.3);
    fill: none;
    stroke-width: 2;
}

.achievements-image-overlay {
    position: absolute;
    top: 20px;
    left: -48px;
    width: 140px;
    height: 100px;
    background: rgba(217,119,6,0.04);
    border-radius: 0;
}

.achievements-content {
    padding: 80px 60px;
    color: white;
}

.achievements-content h2 {
    color: white;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.achievements-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.75;
}

.achievements-content .decor-line {
    width: 40px;
    height: 2px;
    background: rgba(217,119,6,0.2);
    margin: 20px 0;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.achievement-stat {
    text-align: left;
}

.achievement-stat-value {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--muted-terracotta);
}

.achievement-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.team-section {
    background: var(--soft-amber);
    padding: 100px 80px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--muted-terracotta), var(--steel-gray), var(--muted-terracotta));
    transform: translateX(-50%);
}

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

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

.timeline-card {
    width: calc(50% - 60px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08);
    padding: 24px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    z-index: 20;
    transform: scale(1.05) translateY(-4px);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
}

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

.timeline-number {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 32px;
    color: rgba(217,119,6,0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

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

.timeline-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.timeline-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
}

.timeline-text {
    font-size: 14px;
    color: var(--warm-stone);
    margin-top: 6px;
    line-height: 1.6;
}

.timeline-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    margin-top: 12px;
}

.timeline-line-decor {
    width: 40px;
    height: 2px;
    background: rgba(217,119,6,0.2);
    margin-top: 12px;
}

.contacts-section {
    background: var(--warm-cream);
    padding: 100px 80px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: -12px;
}

.contact-card:hover {
    background: white;
    border-color: rgba(217,119,6,0.15);
    box-shadow: 10px 10px 0 rgba(217,119,6,0.1);
    z-index: 20;
}

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

.contact-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

.contact-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--deep-slate);
    flex: 1;
}

.contact-card-chevron {
    width: 20px;
    height: 20px;
    stroke: rgba(120,113,108,0.3);
    fill: none;
    stroke-width: 2;
    transition: all 0.2s ease;
}

.contact-card:hover .contact-card-chevron {
    stroke: var(--muted-terracotta);
    transform: translateX(4px);
}

.contacts-reveal {
    position: relative;
    min-height: 320px;
}

.contacts-reveal-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.1);
}

.contacts-reveal-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(217,119,6,0.9);
    padding: 12px 24px;
}

.contacts-reveal-badge {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 20px;
    color: white;
}

.footer {
    background: var(--deep-slate);
    color: white;
    padding: 60px 80px 40px;
}

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

.footer-section h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--muted-terracotta);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

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

.footer-legal-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-legal-links a:hover {
    color: var(--muted-terracotta);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: rgba(255,251,245,0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(217,119,6,0.12);
    border-radius: 0;
    box-shadow: 8px 8px 0 rgba(217,119,6,0.08), 0 24px 64px rgba(0,0,0,0.1);
    padding: 24px;
    z-index: 9997;
}

.cookie-banner h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--deep-slate);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--warm-stone);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-category {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(217,119,6,0.08);
}

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

.cookie-category-label {
    font-size: 12px;
    color: var(--warm-stone);
    margin-left: 8px;
}

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

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

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--muted-terracotta), #B45309);
    color: white;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--warm-stone);
    border: 2px solid var(--warm-stone);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

.page-hero-content {
    position: relative;
    z-index: 4;
    max-width: 560px;
    margin-left: 40px;
}

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

.page-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 48px;
    letter-spacing: -0.03em;
    color: var(--deep-slate);
}

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

.page-title-decor svg {
    width: 24px;
    height: 24px;
    stroke: var(--muted-terracotta);
    fill: none;
    stroke-width: 2;
}

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

.page-marker {
    width: 12px;
    height: 6px;
    background: var(--muted-terracotta);
    border-radius: 0;
}

.form-section {
    background: var(--warm-cream);
    padding: 100px 80px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

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

.form-input,
.form-textarea {
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--deep-slate);
    background: white;
    border: 2px solid rgba(217,119,6,0.08);
    border-radius: 0;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--muted-terracotta);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}

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

.form-submit {
    grid-column: span 2;
    margin-top: 16px;
}

.form-submit .sharp-btn {
    width: 100%;
    padding: 18px 32px;
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        columns: 2;
    }
    
    .achievements-split {
        grid-template-columns: 1fr;
    }
    
    .achievements-image {
        height: 300px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-reveal {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .floating-side-island {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    body {
        padding-top: 64px;
    }
    
    .hero-section {
        padding: 80px 24px;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .team-section,
    .contacts-section,
    .form-section {
        padding: 80px 24px;
    }
    
    .page-hero {
        padding: 0 24px;
    }
    
    .footer {
        padding: 40px 24px 20px;
    }
    
    .process-container {
        flex-direction: column;
        padding: 40px 24px;
    }
    
    .process-card {
        width: 100%;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding: 0 0 0 40px;
        justify-content: flex-start;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-card {
        width: 100%;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .testimonials-carousel {
        height: auto;
    }
    
    .testimonial-card {
        position: relative;
        margin-bottom: 24px;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        columns: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width,
    .form-submit {
        grid-column: span 1;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .sharp-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .sharp-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}