/* ============================================
   OMNIA STUDIO — Design System & Styles
   Color palette extracted from logo:
   - Cream/Beige: #EDE3D7 (background)
   - Charcoal: #2D2926 (dark text)
   - Warm Gold/Tan: #B5956B (accent)
   - Sage Green: #8B9268 (secondary accent)
   - Soft Taupe: #C4B5A4 (muted)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --color-cream: #EDE3D7;
    --color-cream-light: #F5F0EA;
    --color-cream-dark: #E0D4C5;
    --color-charcoal: #2D2926;
    --color-charcoal-light: #4A4543;
    --color-gold: #B5956B;
    --color-gold-light: #C9AD89;
    --color-gold-dark: #9A7D58;
    --color-sage: #8B9268;
    --color-sage-light: #A3AA84;
    --color-taupe: #C4B5A4;
    --color-taupe-light: #D6CBC0;
    --color-white: #FAFAF8;
    --color-black: #1A1715;

    /* Semantic Colors */
    --bg-primary: var(--color-cream-light);
    --bg-secondary: var(--color-cream);
    --bg-dark: var(--color-charcoal);
    --text-primary: var(--color-charcoal);
    --text-secondary: var(--color-charcoal-light);
    --text-muted: var(--color-taupe);
    --text-on-dark: var(--color-cream-light);
    --accent: var(--color-gold);
    --accent-hover: var(--color-gold-dark);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Sizing */
    --container-max: 1280px;
    --container-narrow: 960px;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 24px rgba(45, 41, 38, 0.06);
    --shadow-medium: 0 8px 40px rgba(45, 41, 38, 0.1);
    --shadow-strong: 0 16px 64px rgba(45, 41, 38, 0.14);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-charcoal);
    color: var(--color-cream-light);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(181, 149, 107, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--color-taupe);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.2rem 2.8rem;
    font-size: 0.9rem;
}

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

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(245, 240, 234, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-soft);
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 0.4rem 0;
}

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

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

.nav-link--cta {
    background: var(--color-charcoal);
    color: var(--color-cream-light);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
}

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

.nav-link--cta:hover {
    background: var(--accent);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-charcoal);
    transition: all var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(237, 227, 215, 0.92) 0%,
        rgba(237, 227, 215, 0.85) 30%,
        rgba(237, 227, 215, 0.7) 60%,
        rgba(45, 41, 38, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
    padding-top: 6rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-sage);
    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.5); }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

.hero-title-accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.9s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.1s forwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-taupe);
    opacity: 0.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 1.3s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    writing-mode: vertical-rl;
}

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

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0.5); transform-origin: top; }
}

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

/* ---------- About Section ---------- */
.about {
    background: var(--bg-secondary);
}

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

.about-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.85;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.about-feature:hover {
    background: rgba(181, 149, 107, 0.06);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-light);
    border: 1px solid var(--color-taupe-light);
    border-radius: var(--radius-md);
    color: var(--accent);
}

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

/* ---------- Services Section ---------- */
.services {
    background: var(--bg-primary);
}

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

.service-card {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border: 1px solid rgba(196, 181, 164, 0.3);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    overflow: hidden;
}

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

.service-card-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-cream-dark);
    line-height: 1;
    margin-bottom: var(--space-lg);
    transition: color var(--transition-medium);
}

.service-card:hover .service-card-number {
    color: var(--accent);
}

.service-card-icon {
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.service-card-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--color-sage));
    transition: width var(--transition-medium);
}

.service-card:hover .service-card-line {
    width: 100%;
}

/* ---------- Comparison Slider Section ---------- */
.comparisons {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.comparisons .section-tag {
    color: var(--color-gold-light);
}

.comparisons .section-tag::before {
    background: var(--color-gold-light);
}

.comparisons .section-title {
    color: var(--text-on-dark);
}

.comparisons .section-description {
    color: var(--color-taupe);
}

.comparison-block {
    margin-bottom: var(--space-2xl);
}

.comparison-block:last-child {
    margin-bottom: 0;
}

.comparison-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-taupe);
    margin-bottom: var(--space-md);
    text-align: center;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-strong);
}

.comparison-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.comparison-image-wrapper--before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.comparison-handle-line {
    flex: 1;
    width: 2px;
    background: var(--color-white);
    opacity: 0.9;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.comparison-handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.comparison-slider:active .comparison-handle-circle {
    transform: scale(1.15);
}

.comparison-label-tag {
    position: absolute;
    bottom: 1.2rem;
    z-index: 5;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-label-tag--before {
    left: 1.2rem;
    background: rgba(45, 41, 38, 0.75);
    color: var(--color-cream-light);
}

.comparison-label-tag--after {
    right: 1.2rem;
    background: rgba(181, 149, 107, 0.85);
    color: var(--color-white);
}

/* ---------- Process Section ---------- */
.process {
    background: var(--bg-secondary);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-xl);
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--color-cream-light);
    border: 1px solid var(--color-taupe-light);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.process-step:hover .process-step-number {
    background: var(--accent);
    color: var(--color-white);
    border-color: var(--accent);
}

.process-step-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-step-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.process-step-line {
    position: absolute;
    left: 30px;
    top: 60px;
    width: 1px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, var(--color-taupe-light), transparent);
}

/* ---------- CTA Section ---------- */
.cta {
    background: var(--bg-primary);
    padding: var(--space-2xl) 0;
}

.cta-card {
    position: relative;
    background: var(--color-charcoal);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream-light);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1rem;
    color: var(--color-taupe);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

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

.cta-arch {
    width: 200px;
    height: 280px;
    border: 1px solid rgba(181, 149, 107, 0.3);
    border-radius: 100px 100px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
}

.cta-arch-inner {
    width: 120px;
    height: 180px;
    border: 1px solid rgba(181, 149, 107, 0.15);
    border-radius: 60px 60px 0 0;
}

/* ---------- Contact Section ---------- */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    color: var(--accent);
}

.contact-detail-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
}

a.contact-detail-value:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 0.8rem;
}

.contact-social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-taupe-light);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.contact-social:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(196, 181, 164, 0.2);
}

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

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

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--color-taupe-light);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181, 149, 107, 0.12);
}

.form-select {
    cursor: pointer;
    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='%23B5956B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

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

/* ---------- Footer ---------- */
.footer {
    background: var(--color-charcoal);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(196, 181, 164, 0.15);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(0.9);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--color-taupe);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-cream-light);
    margin-bottom: 0.4rem;
}

.footer-links-col a {
    font-size: 0.88rem;
    color: var(--color-taupe);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(196, 181, 164, 0.5);
    letter-spacing: 0.05em;
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-2xl);
    }

    .cta-decoration {
        margin-top: var(--space-lg);
    }

    .cta-arch {
        width: 140px;
        height: 200px;
    }

    .cta-arch-inner {
        width: 80px;
        height: 130px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-visual {
        order: -1;
    }

    .about-image-wrapper {
        aspect-ratio: 16/9;
    }

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

    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        background: var(--bg-primary);
        transition: right var(--transition-medium);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

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

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

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

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

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

    .comparison-slider {
        border-radius: var(--radius-md);
    }

    .comparison-label-tag {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
    }

    .footer-links {
        gap: var(--space-xl);
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

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

    .cta-card {
        padding: var(--space-xl) var(--space-md);
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}
