:root {
    --terracotta: #C0593A;
    --terracotta-dark: #A0472E;
    --terracotta-light: #D4755A;
    --sand: #F5E6D3;
    --sand-light: #FBF5EE;
    --sand-dark: #E8D5BE;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --cream: #FFF9F4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #F5E6D3;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 26, 26, 0.1);
    --shadow-lg: 0 16px 64px rgba(26, 26, 26, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-dark);
    background: var(--sand-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* Geometric Background */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--terracotta);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--terracotta);
    bottom: 20%;
    left: -100px;
}

.geo-rect-1 {
    width: 300px;
    height: 300px;
    background: var(--sand-dark);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--terracotta);
    top: 60%;
    left: 5%;
    opacity: 0.03;
}

.geo-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--terracotta) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    top: 30%;
    left: 10%;
    opacity: 0.06;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 245, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 89, 58, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(251, 245, 238, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
    z-index: 1001;
}

.logo--footer {
    margin-bottom: 16px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--terracotta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: 'Instrument Serif', serif;
    font-size: 1.25rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--terracotta {
    background: var(--terracotta);
    color: var(--white);
}

.btn--terracotta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 89, 58, 0.3);
}

.btn--dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-2px);
}

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

.btn--outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--terracotta);
}

.btn--light:hover {
    background: var(--sand);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 245, 238, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.mobile-nav-link:hover {
    color: var(--terracotta);
}

.mobile-call-btn {
    margin-top: 16px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    background: var(--sand-light);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

.hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--terracotta);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 700px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-img--main {
    width: 75%;
    height: 80%;
    top: 5%;
    right: 0;
}

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

.hero-img--accent {
    width: 55%;
    height: 35%;
    bottom: 15%;
    left: 0;
    border: 6px solid var(--sand-light);
}

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

.hero-img--small {
    width: 45%;
    height: 28%;
    bottom: 0;
    right: 10%;
    border: 6px solid var(--sand-light);
}

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

.hero-badge {
    position: absolute;
    bottom: 38%;
    left: -10%;
    background: var(--terracotta);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-icon {
    display: block;
    margin-bottom: 6px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* Marquee */
.marquee-strip {
    background: var(--terracotta);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Styles */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.tag--light {
    color: var(--sand);
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-title em {
    color: var(--terracotta);
}

.section-header--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About */
.about {
    background: var(--sand);
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.floating-card-number {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-size: 2.5rem;
    color: var(--terracotta);
    line-height: 1;
}

.floating-card-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    opacity: 0.1;
    border-radius: 50%;
    top: -40px;
    left: -40px;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Services */
.services {
    background: var(--sand-light);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(192, 89, 58, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card--featured {
    background: var(--charcoal);
    color: var(--white);
    grid-column: span 1;
}

.service-card--featured .service-number {
    color: rgba(255, 255, 255, 0.2);
}

.service-card--featured .service-icon {
    color: var(--terracotta-light);
}

.service-card--featured h3 {
    color: var(--white);
}

.service-card--featured p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--sand);
    border-radius: 0 var(--radius-lg) 0 100%;
    opacity: 0.5;
}

.service-number {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    color: var(--sand-dark);
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    color: var(--terracotta);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card--featured .service-icon {
    background: rgba(192, 89, 58, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

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

.service-tag {
    display: inline-block;
    margin-top: 20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery */
.gallery {
    background: var(--sand);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.8));
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item--tall {
    grid-column: span 3;
    min-height: 500px;
}

.gallery-item--wide {
    grid-column: span 4;
    min-height: 280px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 3;
    min-height: 280px;
}

.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--sand-dark);
}

.gallery-cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Process */
.process {
    background: var(--charcoal);
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(192, 89, 58, 0.15), transparent 70%);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-visual {
    width: 120px;
    height: 120px;
    background: var(--charcoal-light);
    border: 2px solid rgba(192, 89, 58, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .step-visual {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.step-number {
    font-family: 'Instrument Serif', serif;
    font-size: 0.85rem;
    color: var(--terracotta-light);
    margin-bottom: 4px;
}

.step-icon-wrap {
    color: var(--terracotta-light);
}

.process-step:hover .step-number,
.process-step:hover .step-icon-wrap {
    color: var(--white);
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

/* Testimonials */
.testimonials {
    background: var(--sand-light);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(192, 89, 58, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card--accent {
    background: var(--terracotta);
    color: var(--white);
}

.testimonial-quote {
    color: var(--terracotta);
    margin-bottom: 20px;
}

.testimonial-card--accent .testimonial-quote {
    color: var(--sand);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.testimonial-card--accent .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.testimonial-card--accent .author-name {
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: var(--terracotta);
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-shapes {
    position: relative;
    height: 400px;
}

.cta-shape {
    position: absolute;
}

.cta-shape--circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-shape--rect {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    top: 10%;
    right: 0;
    transform: rotate(15deg);
}

.cta-shape--dots {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 16px 16px;
    bottom: 0;
    left: 10%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-title em {
    color: var(--sand);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Contact */
.contact {
    background: var(--charcoal);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.contact-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 89, 58, 0.2);
    color: var(--terracotta-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

.contact-value:hover {
    color: var(--terracotta-light);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    opacity: 0.85;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--charcoal-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.form-decoration {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    opacity: 0.08;
    border-radius: 50%;
}

.form-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}

.form-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    position: relative;
}

.contact-form {
    position: relative;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: rgba(192, 89, 58, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--white);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(192, 89, 58, 0.2);
    color: var(--terracotta-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.form-success h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: #111111;
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

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

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-visual {
        height: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        padding: 20px;
    }

    .step-connector {
        display: none;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-shapes {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav, .header .btn--small {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        order: -1;
    }

    .hero-img--main {
        width: 80%;
        height: 75%;
    }

    .hero-img--accent {
        width: 55%;
        height: 35%;
    }

    .hero-img--small {
        width: 50%;
        height: 30%;
    }

    .hero-badge {
        left: 0;
        padding: 16px 20px;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        order: -1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 220px;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: span 1;
        min-height: 220px;
    }

    .gallery-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        height: 320px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
