/* ============================================
   REMEDY HANDYMAN SERVICES — CUSTOM STYLES
   Plum + Amber | Clean Minimalist
   ============================================ */

/* --- Custom Properties --- */
:root {
    --plum-900: #3D1F3D;
    --plum-800: #5A2D5A;
    --plum-700: #6B3A6B;
    --plum-600: #7D4F7D;
    --plum-500: #9B6B9B;
    --plum-100: #F3EBF3;
    --plum-50:  #FBF7FB;
    
    --amber-600: #A06A1A;
    --amber-500: #C8842A;
    --amber-400: #D49A4A;
    --amber-300: #E0B87A;
    --amber-100: #FDF3E0;
    --amber-50:  #FFFAF0;
    
    --stone-900: #1A1A1A;
    --stone-800: #2A2A2A;
    --stone-700: #3D3D3D;
    --stone-600: #555555;
    --stone-500: #6E6E6E;
    --stone-400: #8A8A8A;
    --stone-300: #A8A8A8;
    --stone-200: #D1D1D1;
    --stone-100: #EAEAEA;
    --stone-50:  #F7F7F7;
    --stone-25:  #FAFAFA;
    --white:     #FFFFFF;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s var(--ease-out);
}

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

/* --- Container --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--stone-100);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

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

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

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--plum-700);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.nav-logo:hover .nav-logo-mark {
    background: var(--plum-800);
}

.nav-logo-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--stone-800);
    letter-spacing: -0.01em;
}

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

.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--stone-600);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-500);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    background: var(--plum-700);
    padding: 10px 20px;
    border-radius: 6px;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, transform 0.2s var(--ease-out);
}

.nav-cta:hover {
    background: var(--plum-800);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle-line {
    width: 100%;
    height: 1.5px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

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

.mobile-menu-link {
    font-size: 24px;
    font-weight: 300;
    color: var(--stone-800);
    letter-spacing: -0.01em;
    padding: 12px 24px;
    transition: color 0.25s ease;
}

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

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: var(--stone-200);
    margin: 8px 0;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--amber-600);
    padding: 12px 24px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--plum-700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--plum-500);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--stone-900);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum-700);
}

.hero-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--stone-500);
    margin-bottom: 40px;
    max-width: 460px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 58, 107, 0.2);
}

.btn-primary:hover {
    background: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 58, 107, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--stone-700);
    border: 1px solid var(--stone-200);
}

.btn-ghost:hover {
    border-color: var(--plum-500);
    color: var(--plum-700);
}

.btn-light {
    background: var(--white);
    color: var(--plum-700);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

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

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: var(--stone-500);
}

.hero-trust-item svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 680/860;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

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

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--amber-300);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.5;
}

.hero-badge {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-badge-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    color: var(--plum-700);
    line-height: 1;
}

.hero-badge-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--stone-500);
    line-height: 1.4;
}

/* Hero Scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    animation: heroScrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-400);
}

.hero-scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--stone-400), transparent);
}

@keyframes heroScrollPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(4px); }
}

/* --- Section Shared --- */
.section-header {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-header--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--amber-600);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--stone-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--plum-700);
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: var(--stone-500);
}

/* --- Services Section --- */
.services {
    padding: 120px 0;
    background: var(--stone-25);
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--stone-100);
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-700), var(--amber-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

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

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--plum-50);
    color: var(--plum-700);
    margin-bottom: 24px;
    transition: background 0.25s ease, color 0.25s ease;
}

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

.service-card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--stone-500);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-image-group {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    aspect-ratio: 560/700;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--white);
    aspect-ratio: 400/300;
    max-width: 280px;
}

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

.about-experience-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: var(--plum-700);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(107, 58, 107, 0.3);
}

.about-exp-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--amber-400);
    line-height: 1;
}

.about-exp-text {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--amber-500);
    margin-bottom: 32px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone-500);
    margin-bottom: 20px;
}

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

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

.about-value-line {
    width: 32px;
    height: 1px;
    background: var(--plum-500);
    flex-shrink: 0;
}

.about-value span {
    font-size: 15px;
    font-weight: 400;
    color: var(--stone-700);
}

/* --- Process Section --- */
.process {
    padding: 120px 0;
    background: var(--stone-25);
}

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

.process-step {
    position: relative;
    padding: 32px 24px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--stone-200);
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--plum-100);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.process-step-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--stone-500);
}

/* --- Areas Section --- */
.areas {
    padding: 120px 0;
    background: var(--white);
}

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

.areas-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone-500);
    margin-bottom: 36px;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    font-size: 13px;
    font-weight: 400;
    color: var(--stone-600);
    padding: 8px 16px;
    border: 1px solid var(--stone-200);
    border-radius: 100px;
    transition: all 0.25s ease;
}

.area-tag:hover {
    border-color: var(--plum-500);
    color: var(--plum-700);
    background: var(--plum-50);
}

.areas-map {
    position: relative;
}

.areas-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    aspect-ratio: 520/420;
    position: relative;
}

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

.areas-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
}

.areas-map-pin {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.areas-map-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--stone-800);
    background: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* --- Quote Section --- */
.quote-section {
    padding: 100px 0;
    background: var(--plum-900);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.quote-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.quote-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-mark {
    margin-bottom: 32px;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.quote-attr {
    font-size: 13px;
    font-weight: 500;
    color: var(--amber-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(107, 58, 107, 0.3) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 440px;
}

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

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--stone-25);
}

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

.contact-divider {
    width: 48px;
    height: 1px;
    background: var(--amber-500);
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone-500);
    margin-bottom: 40px;
}

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

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

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

.contact-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--stone-400);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 15px;
    color: var(--stone-700);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--stone-700);
    transition: color 0.25s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
    max-width: 520px;
}

.contact-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--stone-100);
}

.contact-form-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--stone-900);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--stone-500);
    margin-bottom: 32px;
}

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

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--stone-700);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--stone-900);
    background: var(--stone-25);
    border: 1px solid var(--stone-200);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-input::placeholder {
    color: var(--stone-300);
}

.form-input:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(107, 58, 107, 0.08);
    background: var(--white);
}

.form-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='%238A8A8A' stroke-width='2' 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 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.form-success-icon {
    margin-bottom: 20px;
}

.form-success-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 15px;
    color: var(--stone-500);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--stone-900);
    padding: 80px 0 0;
}

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

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

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--plum-700);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-nav-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--amber-400);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.footer-contact-item:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-copyright,
.footer-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

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

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

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

    .process-step:not(:last-child)::after {
        display: none;
    }

    .about-layout,
    .areas-layout,
    .contact-layout {
        gap: 48px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 32px 24px 80px;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-badge {
        left: 16px;
        bottom: 16px;
    }

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

    .hero-trust {
        gap: 16px;
    }

    .services {
        padding: 80px 0;
    }

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

    .about {
        padding: 80px 0;
    }

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

    .about-image-group {
        max-width: 480px;
    }

    .about-image-secondary {
        right: -16px;
        bottom: -24px;
    }

    .about-experience-badge {
        top: -16px;
        right: -16px;
        width: 96px;
        height: 96px;
    }

    .about-exp-number {
        font-size: 28px;
    }

    .process {
        padding: 80px 0;
    }

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

    .process-step {
        padding: 28px 0;
        border-bottom: 1px solid var(--stone-100);
    }

    .process-step:first-child {
        padding-top: 0;
    }

    .areas {
        padding: 80px 0;
    }

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

    .areas-map {
        max-width: 480px;
    }

    .quote-section {
        padding: 80px 0;
    }

    .cta-banner {
        padding: 80px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .contact {
        padding: 80px 0;
    }

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

    .contact-form-wrapper {
        max-width: 100%;
    }

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

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

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

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

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

    .hero-headline {
        font-size: 28px;
    }

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

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

    .section-header {
        margin-bottom: 48px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .areas-tags {
        gap: 8px;
    }

    .area-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}
