/* ============================================
   loxen.ink — Premium Real Estate Design System
   Unique Color Palette: Deep Plum + Gold
   ============================================ */

:root {
    /* Color System - Deep Plum & Gold */
    --color-primary: #2d1b2e;
    --color-secondary: #4a2c4d;
    --color-accent: #c9a961;
    --color-accent-light: #e6d5a8;
    --color-dark: #1a0f1b;
    --color-text: #f5f3f0;
    --color-text-muted: #c4bdb6;
    --color-emerald: #3d5a4c;
    --color-emerald-light: #5a8670;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Container */
    --container-width: 1320px;
    --container-padding: clamp(1.5rem, 5vw, 3rem);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(90, 134, 112, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(29, 27, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.nav-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-text);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-accent);
    color: var(--color-primary) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

/* ============================================
   HERO SPLIT SECTION
   ============================================ */

.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
    padding: calc(80px + var(--space-xl)) var(--container-padding) var(--space-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.highlight {
    color: var(--color-accent);
    font-style: italic;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
}

.hero-img-1 {
    width: 70%;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 2;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.hero-img-2 {
    width: 60%;
    height: 400px;
    bottom: 0;
    right: 0;
    z-index: 1;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.hero-img-1:hover {
    transform: scale(1.02) rotate(-1deg);
}

.hero-img-2:hover {
    transform: scale(1.02) rotate(1deg);
}

.hero-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    padding: var(--space-lg);
    border-radius: 50%;
    text-align: center;
    border: 3px solid var(--color-accent);
    z-index: 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.3;
    margin-top: var(--space-xs);
}

/* ============================================
   FEATURES DIAGONAL SECTION
   ============================================ */

.features-diagonal {
    position: relative;
    padding: var(--space-2xl) 0;
    margin: var(--space-2xl) 0;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 44, 77, 0.3) 0%, rgba(61, 90, 76, 0.2) 100%);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(29, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   PORTFOLIO SHOWCASE
   ============================================ */

.portfolio-showcase {
    padding: var(--space-2xl) 0;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.portfolio-item {
    position: relative;
    grid-column: span 6;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-large {
    grid-column: span 12;
    height: 500px;
}

.portfolio-wide {
    grid-column: span 12;
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(29, 27, 46, 0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-location {
    display: block;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.portfolio-name {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.portfolio-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-section {
    padding: var(--space-2xl) 0;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

.process-timeline {
    display: grid;
    gap: var(--space-xl);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-lg);
}

.timeline-marker {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-section {
    padding: var(--space-2xl) 0;
    background: rgba(74, 44, 77, 0.2);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.multi-step-contact-form {
    background: rgba(29, 27, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-progress {
    margin-bottom: var(--space-xl);
}

.progress-bar {
    height: 4px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: var(--color-accent);
    width: 25%;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.step-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.option-card-input {
    cursor: pointer;
}

.option-card-input input {
    position: absolute;
    opacity: 0;
}

.option-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(29, 27, 46, 0.6);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.option-card-input:hover .option-card-content {
    border-color: var(--color-accent);
    background: rgba(29, 27, 46, 0.9);
}

.option-card-input input:checked + .option-card-content {
    border-color: var(--color-accent);
    background: rgba(201, 169, 97, 0.1);
}

.option-icon {
    font-size: 2.5rem;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.field-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.field-group input,
.field-group select,
.field-group textarea {
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: rgba(29, 27, 46, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(29, 27, 46, 1);
}

.checkbox-group {
    margin-top: var(--space-md);
}

.checkbox-group label {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.btn-next,
.btn-back,
.btn-submit {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-next,
.btn-submit {
    flex: 1;
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.btn-back {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-back:hover {
    background: rgba(201, 169, 97, 0.1);
}

.form-success {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 3rem;
    border-radius: 50%;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.form-success p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: var(--space-2xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: rgba(29, 27, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.testimonial-author strong {
    color: var(--color-text);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    margin-top: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.footer-contact {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.footer-contact strong {
    color: var(--color-text);
}

.footer-contact a {
    color: var(--color-accent);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-accent-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--color-accent);
}

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

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: var(--space-md);
}

.footer-legal-links a {
    color: var(--color-text-muted);
    transition: var(--transition);
}

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

/* ============================================
   PAGE HEADER (for all internal pages)
   ============================================ */

.page-header {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: var(--space-2xl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-text h2 {
    margin-bottom: var(--space-lg);
}

.story-text p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: var(--space-2xl) 0;
    background: rgba(74, 44, 77, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.value-item {
    background: rgba(29, 27, 46, 0.6);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: var(--space-2xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.team-member {
    background: rgba(29, 27, 46, 0.6);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.member-role {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.team-member p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.stat-box {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(29, 27, 46, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
    padding: var(--space-2xl) 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.service-detail-card {
    background: rgba(29, 27, 46, 0.6);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
}

.service-icon-large img,
.service-icon-large svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.service-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-features li {
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.service-cta {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition);
}

.service-cta:hover {
    color: var(--color-accent-light);
}

/* ============================================
   PROCESS REMINDER
   ============================================ */

.process-reminder {
    padding: var(--space-2xl) 0;
    background: rgba(74, 44, 77, 0.2);
}

.process-steps-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.step-simple {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(29, 27, 46, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.step-simple h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.step-simple p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page-content {
    padding: var(--space-2xl) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

.contact-info-box,
.contact-form-box {
    background: rgba(29, 27, 46, 0.6);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.contact-info-box h2,
.contact-form-box h2 {
    margin-bottom: var(--space-md);
}

.contact-form-box p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.info-block {
    margin-bottom: var(--space-lg);
}

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.info-block p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.info-block a {
    color: var(--color-accent);
    transition: var(--transition);
}

.info-block a:hover {
    color: var(--color-accent-light);
}

.simple-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: var(--space-2xl) 0;
}

.map-placeholder {
    background: rgba(29, 27, 46, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.map-placeholder h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.map-placeholder p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--space-2xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.faq-item {
    background: rgba(29, 27, 46, 0.6);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

.faq-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 3.5rem;
    border-radius: 50%;
    font-weight: 700;
}

.thanks-content h1 {
    margin-bottom: var(--space-md);
}

.thanks-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.thanks-subtext {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.thanks-info-box {
    background: rgba(29, 27, 46, 0.6);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.thanks-info-box h3 {
    margin-bottom: var(--space-md);
    color: var(--color-accent);
}

.thanks-info-box ol {
    list-style-position: inside;
    color: var(--color-text-muted);
}

.thanks-info-box li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.thanks-contact {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.thanks-contact p {
    margin-bottom: var(--space-sm);
}

.thanks-contact a {
    color: var(--color-accent);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    min-height: 100vh;
}

.legal-page h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    color: var(--color-accent);
}

.legal-page h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--color-accent);
}

.legal-page h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.legal-page ul,
.legal-page ol {
    margin: var(--space-md) 0 var(--space-md) var(--space-lg);
    color: var(--color-text-muted);
}

.legal-page li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-page a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-page a:hover {
    color: var(--color-accent-light);
}

.legal-page strong {
    color: var(--color-text);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    background: rgba(29, 27, 46, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.cookie-table th,
.cookie-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.cookie-table thead {
    background: rgba(201, 169, 97, 0.1);
}

.cookie-table th {
    font-weight: 600;
    color: var(--color-accent);
}

.cookie-table td {
    color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-image-stack {
        height: 500px;
    }
    
    .portfolio-item,
    .portfolio-large,
    .portfolio-wide {
        grid-column: span 12;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: rgba(29, 27, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        transition: var(--transition);
        border-left: 1px solid rgba(201, 169, 97, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .field-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-simple {
        grid-template-columns: 1fr;
    }
    
    .cookie-table {
        font-size: 0.875rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
}
