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

:root {
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #2D3748;
    --gray-800: #1E293B;
    --turquoise: #00BFFF;
    --turquoise-dark: #0099CC;
    --turquoise-glow: rgba(0, 191, 255, 0.6);
    --sidebar-width: 320px;
    --content-padding: 320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

strong, b {
    font-weight: 600;
    color: inherit;
}

p {
    color: inherit;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.vertical-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-200));
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-right: 3px solid rgba(0, 191, 255, 0.4);
    box-shadow: 12px 0 64px rgba(0, 191, 255, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(0, 191, 255, 0.2);
}

.sidebar-logo svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.sidebar-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.3;
}

.sidebar-logo-text span {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 2px;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav a {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--gray-600);
    padding: 12px 16px;
    border-left: 3px solid transparent;
    transition: all 0.35s ease;
    position: relative;
}

.sidebar-nav a:hover {
    color: var(--turquoise);
    border-left-color: var(--turquoise);
    background: rgba(0, 191, 255, 0.05);
    padding-left: 24px;
}

.sidebar-nav a.active {
    color: var(--turquoise);
    border-left-color: var(--turquoise);
    background: rgba(0, 191, 255, 0.08);
}

.sidebar-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 191, 255, 0.2);
}

.sidebar-cta a {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    box-shadow: 0 16px 64px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
}

.sidebar-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 80px rgba(0, 191, 255, 0.5);
}

.sidebar-contact {
    margin-top: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

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

.mobile-header {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 64px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 2px solid rgba(0, 191, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 191, 255, 0.2);
    z-index: 9998;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

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

.mobile-logo svg {
    width: 36px;
    height: 36px;
}

.mobile-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-700);
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 191, 255, 0.1);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 191, 255, 0.2);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--turquoise);
    stroke-width: 2.5;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    gap: 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-overlay.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(0, 191, 255, 0.1);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-overlay-close svg {
    width: 28px;
    height: 28px;
    stroke: var(--turquoise);
    stroke-width: 2.5;
}

.mobile-overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-overlay-nav a {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--gray-700);
    padding: 8px 24px;
    transition: all 0.3s ease;
}

.mobile-overlay-nav a:hover {
    color: var(--turquoise);
}

.mobile-overlay-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(0, 191, 255, 0.2);
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.mobile-overlay-cta a {
    display: block;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 16px 64px rgba(0, 191, 255, 0.4);
}

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

.section-dark {
    background: var(--gray-800);
    color: var(--white);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: var(--gray-300);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.15) saturate(1.2) contrast(1.1);
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,191,255,0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 120px 80px;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--gray-700);
    margin-bottom: 24px;
    animation: heroTitleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: scale(0.88);
}

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

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--turquoise);
    margin-bottom: 32px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.03em;
    border: none;
    box-shadow: 0 24px 80px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 60px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 32px 100px rgba(0, 191, 255, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: var(--turquoise);
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 16px;
    border: 3px solid var(--turquoise);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 60px;
}

.btn-secondary:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.brutalist-block {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--turquoise);
    background: rgba(0, 191, 255, 0.05);
    animation: brutalistPulse 4s ease-in-out infinite;
}

.brutalist-block:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.brutalist-block:nth-child(2) { top: 20%; right: 8%; animation-delay: 0.5s; }
.brutalist-block:nth-child(3) { bottom: 15%; left: 12%; animation-delay: 1s; }
.brutalist-block:nth-child(4) { bottom: 25%; right: 5%; animation-delay: 1.5s; }
.brutalist-block:nth-child(5) { top: 40%; left: 3%; animation-delay: 2s; }
.brutalist-block:nth-child(6) { top: 50%; right: 3%; animation-delay: 2.5s; }

@keyframes brutalistPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 48px 12px rgba(0, 191, 255, 0.2);
        transform: scale(1.05);
    }
}

.inner-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.inner-hero-content {
    max-width: 1200px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--gray-400);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

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

.breadcrumbs span {
    margin: 0 8px;
}

.inner-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.inner-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--turquoise);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    color: var(--turquoise);
    margin-bottom: 24px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

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

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

.card {
    background: var(--white);
    border: 3px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 48px 192px rgba(0, 191, 255, 0.12);
    padding: 40px 32px;
    transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
}

.card:hover {
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 64px 256px rgba(0, 191, 255, 0.2);
    transform: translateY(-6px);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--turquoise);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.card-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--turquoise);
    margin-top: auto;
}

.service-card {
    overflow: hidden;
    padding: 0;
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: contrast(1.1);
}

.service-card-content {
    padding: 32px;
}

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

.service-card p {
    margin-bottom: 16px;
}

.service-card .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--turquoise);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.service-card .btn-link:hover {
    gap: 12px;
}

.team-card {
    text-align: center;
    padding: 48px 32px;
}

.team-card-image {
    width: 140px;
    height: 140px;
    border-radius: 0;
    margin: 0 auto 24px;
    object-fit: cover;
    border: 3px solid var(--turquoise);
    filter: grayscale(20%);
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-card-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--turquoise);
    margin-bottom: 16px;
}

.team-card p {
    font-size: 14px;
}

.review-card {
    padding: 40px;
}

.review-card-text {
    font-style: italic;
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid var(--turquoise);
}

.review-card-info strong {
    display: block;
    font-size: 15px;
    color: var(--gray-700);
}

.review-card-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.advantage-card {
    padding: 48px 32px;
    text-align: center;
    background: var(--white);
    transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage-card:hover {
    transform: scale(1.08);
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 64px 256px rgba(0, 191, 255, 0.2);
}

.advantage-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--turquoise);
}

.advantage-card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(0, 191, 255, 0.3);
    transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover {
    border-color: var(--turquoise);
    box-shadow: 0 24px 80px rgba(0, 191, 255, 0.3);
    transform: scale(1.03);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: contrast(1.1);
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-item-overlay span {
    font-size: 13px;
    color: var(--gray-300);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 80px;
    bottom: -40px;
    width: 4px;
    background: linear-gradient(to bottom, var(--turquoise), rgba(0, 191, 255, 0.2));
}

.process-step:last-child::before {
    display: none;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--turquoise);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-step-content {
    flex: 1;
}

.process-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.process-step-content p {
    font-size: 15px;
    color: var(--gray-600);
}

.faq-item {
    border: 3px solid rgba(0, 191, 255, 0.3);
    margin-bottom: 16px;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 191, 255, 0.5);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--turquoise);
}

.faq-question-icon {
    width: 24px;
    height: 24px;
    color: var(--turquoise);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.faq-answer-content {
    padding: 0 32px 24px;
    font-size: 15px;
    color: var(--gray-600);
    border-left: 4px solid var(--turquoise);
    margin-left: 32px;
    padding-left: 20px;
}

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

.contact-info {
    padding: 48px;
    background: var(--gray-100);
    border: 3px solid rgba(0, 191, 255, 0.3);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gray-700);
    margin-bottom: 32px;
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 191, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--turquoise);
    stroke-width: 2;
}

.contact-item-content strong {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item-content span,
.contact-item-content a {
    font-size: 16px;
    color: var(--gray-700);
}

.contact-item-content a:hover {
    color: var(--turquoise);
}

.contact-form {
    padding: 48px;
    background: var(--white);
    border: 3px solid rgba(0, 191, 255, 0.3);
    box-shadow: 0 48px 192px rgba(0, 191, 255, 0.12);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--gray-700);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-size: 15px;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 16px 64px rgba(0, 191, 255, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 80px rgba(0, 191, 255, 0.4);
}

.map-container {
    width: 100%;
    height: 400px;
    border: 3px solid rgba(0, 191, 255, 0.3);
    overflow: hidden;
}

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

.site-footer {
    background: var(--gray-800);
    color: var(--gray-300);
    padding: 80px 80px 40px;
    margin-left: var(--content-padding);
}

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

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

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

.footer-brand-logo svg {
    width: 48px;
    height: 48px;
}

.footer-brand-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 24px;
}

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

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

.footer-column a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--turquoise);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--white);
    border: 3px solid rgba(0, 191, 255, 0.4);
    box-shadow: 0 32px 128px rgba(0, 0, 0, 0.15);
    padding: 32px;
    z-index: 9999;
    display: block;
}

.cookie-banner h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.4);
}

.cookie-btn-decline {
    background: var(--gray-200);
    color: var(--gray-700);
}

.cookie-btn-decline:hover {
    background: var(--gray-300);
}

.cookie-banner-link {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--turquoise);
}

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

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

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    color: var(--turquoise);
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.thank-you-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gray-700);
    margin-bottom: 24px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

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

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-700);
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gray-700);
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content li {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

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

.animate-in {
    animation: fadeInUp 0.75s ease-out forwards;
    opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

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

@media (max-width: 1024px) {
    .vertical-sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 96px;
    }
    .site-footer {
        margin-left: 0;
    }
    
    .section {
        padding: 80px 32px;
    }
    
    .hero-content {
        padding: 100px 32px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 20px;
    }
    
    .hero-content {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .gallery-item-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .site-footer {
        padding: 64px 20px 32px;
    }
    
    .inner-hero {
        min-height: 280px;
    }
    
    .inner-hero-content {
        padding: 60px 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step::before {
        left: 32px;
        top: 64px;
        bottom: -20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 32px 24px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .brutalist-block {
        width: 60px;
        height: 60px;
    }
    
    .breadcrumbs {
        font-size: 11px;
    }
    
    .map-container {
        height: 300px;
    }
}
