/* ===================================
   SCOTTSBORO INK THERAPY - STYLES
   Premium Dark Luxury Theme
   Emerald Green + Cream Palette
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-bg-darkest: #060d0a;
    --color-bg-dark: #0a120e;
    --color-bg-card: #0d1a13;
    --color-bg-elevated: #111f17;
    --color-emerald-deep: #047857;
    --color-emerald: #059669;
    --color-emerald-light: #10b981;
    --color-emerald-glow: #34d399;
    --color-cream: #f5f0e8;
    --color-cream-soft: #e8e0d0;
    --color-cream-dim: #c4b89a;
    --color-gold: #d4a853;
    --color-gold-light: #e8c47c;
    --color-text-primary: #f5f0e8;
    --color-text-secondary: #a89f8f;
    --color-text-muted: #6b6358;
    --color-border: rgba(16, 185, 129, 0.12);
    --color-border-hover: rgba(16, 185, 129, 0.3);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --container-max: 1200px;
    --section-padding: clamp(60px, 10vw, 120px);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-darkest);
    color: var(--color-text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

.text-emerald {
    color: var(--color-emerald-light);
}

.text-cream {
    color: var(--color-cream);
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-emerald-light);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--color-emerald-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-cream);
    margin-bottom: 20px;
    font-weight: 300;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-cream);
    border: 1px solid var(--color-emerald);
}

.btn-primary:hover {
    background: var(--color-emerald-light);
    border-color: var(--color-emerald-light);
    color: var(--color-bg-darkest);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-emerald-light);
    color: var(--color-emerald-light);
    transform: translateY(-2px);
}

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

/* ===================================
   HEADER
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 13, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.4s var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(6, 13, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    color: var(--color-emerald-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    transition: color 0.3s var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-emerald-light);
    transition: width 0.3s var(--transition-smooth);
}

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

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

.nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--color-emerald);
    color: var(--color-emerald-light) !important;
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

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

.nav-cta:hover {
    background: var(--color-emerald);
    color: var(--color-bg-darkest) !important;
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-cream);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 13, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
}

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

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    transition: color 0.3s var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--color-emerald-light);
}

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald-light) !important;
    border: 1px solid var(--color-emerald);
    padding: 14px 36px;
}

/* ===================================
   HERO
   =================================== */
.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-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 13, 10, 0.92) 0%,
        rgba(10, 18, 14, 0.85) 40%,
        rgba(6, 13, 10, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-emerald-light);
    margin-bottom: 32px;
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-emerald-light);
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 300;
    color: var(--color-cream);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-title .text-emerald {
    color: var(--color-emerald-light);
    font-style: italic;
}

.hero-title .text-cream {
    color: var(--color-cream);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--color-emerald-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ===================================
   SERVICES
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: clamp(28px, 3vw, 40px);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-emerald-deep), var(--color-emerald-light));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    color: var(--color-emerald-light);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--color-cream);
    margin-bottom: 14px;
    font-weight: 500;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* ===================================
   ABOUT
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-bg-darkest);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

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

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    z-index: -1;
}

.about-content {
    padding: clamp(16px, 2vw, 40px) 0;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-cream-soft);
    font-weight: 400;
}

.value-icon {
    color: var(--color-emerald-light);
    flex-shrink: 0;
}

/* ===================================
   GALLERY
   =================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

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

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(2) img { height: 100%; min-height: 192px; }
.gallery-item:nth-child(3) img { height: 100%; min-height: 192px; }
.gallery-item:nth-child(4) img { height: 100%; min-height: 192px; }
.gallery-item:nth-child(5) { grid-row: span 2; }
.gallery-item:nth-child(5) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(6) img { height: 100%; min-height: 192px; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 13, 10, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-cream);
    font-style: italic;
}

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

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

.gallery-cta {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ===================================
   PROCESS
   =================================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--color-bg-darkest);
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-emerald-deep), var(--color-emerald-light), var(--color-emerald-deep));
    opacity: 0.3;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-emerald-light);
    opacity: 0.6;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--color-cream);
    margin-bottom: 10px;
    font-weight: 500;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

/* ===================================
   TESTIMONIAL BAND
   =================================== */
.testimonial-band {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--color-bg-card);
    position: relative;
    overflow: hidden;
}

.testimonial-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
}

.testimonial-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    color: var(--color-emerald-light);
    margin-bottom: 24px;
    opacity: 0.5;
}

.testimonial-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-cream-soft);
    line-height: 1.7;
    margin-bottom: 32px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-emerald-light);
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ===================================
   FAQ
   =================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg-dark);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-cream);
    transition: color 0.3s var(--transition-smooth);
    gap: 16px;
}

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

.faq-toggle {
    color: var(--color-emerald-light);
    flex-shrink: 0;
    transition: transform 0.3s var(--transition-smooth);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-weight: 300;
    padding-right: 48px;
}

/* ===================================
   CONTACT
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-bg-darkest);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-info {
    padding: clamp(16px, 2vw, 40px) 0;
}

.contact-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-icon {
    color: var(--color-emerald-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--color-cream-soft);
    font-weight: 400;
    line-height: 1.6;
}

.contact-value a {
    transition: color 0.3s var(--transition-smooth);
}

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

.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: clamp(28px, 3vw, 40px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-bg-darkest);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-cream);
    transition: border-color 0.3s var(--transition-smooth);
    outline: none;
    width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-emerald-light);
}

.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 12 12' fill='none'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--color-bg-dark);
    color: var(--color-cream);
}

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

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

.success-icon {
    color: var(--color-emerald-light);
}

.form-success h3 {
    font-size: 1.6rem;
    color: var(--color-cream);
    font-weight: 500;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ===================================
   MAP
   =================================== */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    filter: grayscale(0.8) brightness(0.7) contrast(1.1);
    transition: filter 0.4s var(--transition-smooth);
}

.map-container:hover {
    filter: grayscale(0.4) brightness(0.8) contrast(1.05);
}

.map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-bg-darkest), transparent 10%, transparent 90%, var(--color-bg-darkest));
    pointer-events: none;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: clamp(60px, 8vw, 80px) 0 0;
    background: var(--color-bg-darkest);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(40px, 5vw, 60px);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-weight: 300;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cream);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    transition: color 0.3s var(--transition-smooth);
}

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

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

.footer-contact p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.footer-contact a {
    transition: color 0.3s var(--transition-smooth);
}

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

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

.footer-hours p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.hours-note {
    font-size: 0.78rem !important;
    color: var(--color-text-muted) !important;
    font-style: italic;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.footer-bottom a {
    transition: color 0.3s var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--color-emerald-light);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-wrapper img {
        height: 400px;
    }

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

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

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

    .mobile-toggle {
        display: flex;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        grid-row: span 1;
    }

    .gallery-item img {
        min-height: 200px !important;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-steps::before {
        display: none;
    }

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

    .about-accent {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .hero-stats {
        gap: 16px;
    }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
