/* ============================================
   XCLUSV PAINT & BODYWORK — STYLESHEET
   Vibrant Modern | Terracotta + Sand
   ============================================ */

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

:root {
    --terra: #C2704E;
    --terra-deep: #A85A3A;
    --terra-light: #D4916E;
    --sand: #F5E6D3;
    --sand-light: #FBF5ED;
    --sand-mid: #E8D5C0;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --cream: #FFFDF9;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    --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 30px rgba(26, 26, 26, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 112, 78, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 253, 249, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terra);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(0deg) scale(1.05);
}

.nav-logo-text {
    display: none;
}

@media (min-width: 768px) {
    .nav-logo-text {
        display: block;
    }
}

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

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

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

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--terra);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--terra-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(194, 112, 78, 0.3);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.mobile-menu-link {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--terra);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--terra);
    color: var(--white);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 16px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
    background: var(--sand-light);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--sand-mid);
    top: -200px;
    right: -150px;
    opacity: 0.5;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--terra);
    opacity: 0.06;
    bottom: 10%;
    left: 5%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-triangle--1 {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--terra);
    opacity: 0.08;
    top: 15%;
    left: 3%;
    transform: rotate(15deg);
}

.geo-rect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--terra);
    opacity: 0.05;
    border-radius: var(--radius-md);
    bottom: 20%;
    right: 8%;
    transform: rotate(30deg);
}

.geo-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--terra) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.2;
    top: 25%;
    right: 15%;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terra);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--terra);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.75rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.hero-headline-line {
    display: block;
}

.hero-accent {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--terra);
    position: relative;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--terra);
    opacity: 0.15;
    border-radius: 4px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.btn-primary {
    background: var(--terra);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(194, 112, 78, 0.3);
}

.btn-primary:hover {
    background: var(--terra-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 112, 78, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

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

.hero-image-stack {
    position: relative;
    padding-left: 40px;
}

@media (min-width: 1024px) {
    .hero-image-stack {
        padding-left: 0;
    }
}

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

.hero-img--main {
    width: 100%;
    aspect-ratio: 600/750;
    box-shadow: var(--shadow-lg);
}

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

.hero-img--accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 45%;
    aspect-ratio: 300/380;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.hero-img-accent-border {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--terra);
    border-radius: var(--radius-md);
    opacity: 0.3;
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--terra);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-badge {
        right: 20px;
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terra), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--sand);
    color: var(--terra);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 16px;
}

.section-title-accent {
    color: var(--terra);
}

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

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-header--light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light), var(--sand-mid), var(--terra));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(194, 112, 78, 0.08);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terra);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card--featured::before {
    background: var(--terra);
}

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

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

.service-card--featured .service-card-list li {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card--featured .service-card-list li::before {
    color: var(--terra);
}

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--terra);
    opacity: 0.06;
    border-radius: 50%;
}

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

.service-card--featured .service-card-icon {
    background: rgba(194, 112, 78, 0.2);
}

.service-card:hover .service-card-icon {
    background: var(--terra);
    color: var(--white);
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    border-color: rgba(194, 112, 78, 0.15);
}

.service-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--terra);
    font-weight: 700;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/640;
}

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

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about-exp-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--terra);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-exp-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-geo-accent {
    position: absolute;
    top: -20px;
    right: 40%;
    width: 80px;
    height: 80px;
    background: var(--terra);
    opacity: 0.08;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
}

.about-content {
    max-width: 520px;
}

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

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
}

.about-value strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.about-value-desc {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- Gallery Section --- */
.gallery {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.gallery-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-circle--3 {
    width: 400px;
    height: 400px;
    background: var(--terra);
    opacity: 0.04;
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.geo-triangle--2 {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--terra);
    opacity: 0.05;
    bottom: 10%;
    right: 5%;
    transform: rotate(-20deg);
}

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

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(2, 240px);
    }
}

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

.gallery-item--large {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .gallery-item--large {
        grid-column: span 7;
        grid-row: span 2;
    }
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .gallery-item--wide {
        grid-column: span 5;
    }
}

.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.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: var(--terra);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-banner-inner {
        flex-direction: row;
        text-align: left;
        gap: 48px;
    }
}

.cta-geo-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-circle--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
}

.cta-circle--2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 5%;
}

.cta-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    top: 20%;
    left: 15%;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.15;
}

.cta-accent {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--sand);
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 480px;
}

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

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.contact-info {
    max-width: 520px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
}

.contact-detail strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--terra);
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--terra-deep);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(194, 112, 78, 0.08);
}

.contact-form-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light), var(--sand-mid));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

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

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--sand-mid);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--sand-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terra);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}

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

.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='%235A5A5A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

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

.form-success-icon {
    width: 72px;
    height: 72px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
    }
}

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

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

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terra);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    transform: rotate(-5deg);
}

.footer-logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

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

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terra);
    margin-bottom: 4px;
}

.footer-col a,
.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
