/* ============================================
   Griswold & Sons Wrecker Service
   Bold Editorial · Emerald + Cream
   ============================================ */

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

:root {
    --emerald: #0f4c3a;
    --emerald-dark: #093528;
    --emerald-light: #1a6b4f;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --warm-gray: #6b6560;
    --warm-gray-light: #9a9490;
    --white: #ffffff;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--emerald);
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--emerald-dark);
    border-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 76, 58, 0.3);
}

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

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

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

.btn-light:hover {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
}

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 76, 58, 0.08);
    transition: all 0.4s var(--ease-smooth);
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

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

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

.logo-mark {
    display: flex;
    align-items: center;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    background: rgba(15, 76, 58, 0.08);
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
}

.phone-btn:hover {
    background: var(--emerald);
    color: var(--cream);
    transform: translateY(-1px);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

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

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

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

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

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 24px;
    transition: color 0.2s;
}

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

.mobile-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-phone,
.mobile-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--emerald);
    font-weight: 500;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(15, 76, 58, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 76, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--emerald);
    flex-shrink: 0;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 40px;
    max-width: 480px;
}

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

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

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

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

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.hero-img-accent {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(245, 240, 232, 0.3);
    pointer-events: none;
}

.hero-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--emerald);
    color: var(--cream);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(15, 76, 58, 0.3);
}

.hero-img-badge svg {
    flex-shrink: 0;
}

.hero-img-badge span {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

/* --- Services --- */
.services {
    padding: 120px 0;
    background: var(--cream-light);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-label {
    justify-content: center;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    border: 1px solid rgba(15, 76, 58, 0.06);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(15, 76, 58, 0.1);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 76, 58, 0.08);
    border-radius: 12px;
    color: var(--emerald);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--emerald);
    color: var(--cream);
}

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

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald);
    transition: gap 0.3s var(--ease-out);
}

.service-link:hover {
    gap: 10px;
}

.service-link svg {
    transition: transform 0.3s var(--ease-out);
}

.service-link:hover svg {
    transform: translateX(2px);
}

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

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

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

.about-img-main {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 5/6;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--cream);
    aspect-ratio: 4/3;
    width: 60%;
}

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

.about-exp-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 110px;
    height: 110px;
    background: var(--emerald);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    box-shadow: 0 12px 32px rgba(15, 76, 58, 0.3);
}

.about-exp-badge .exp-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-badge .exp-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.about-content-col {
    padding-left: 20px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    margin-bottom: 32px;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

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

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

.value-item svg {
    flex-shrink: 0;
}

/* --- CTA Band --- */
.cta-band {
    padding: 80px 0;
    background: var(--emerald);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-band-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 8px;
}

.cta-band-desc {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.7);
}

/* --- Service Area --- */
.area {
    padding: 120px 0;
    background: var(--cream-light);
}

.area-header {
    text-align: center;
    margin-bottom: 72px;
}

.area-header .section-label {
    justify-content: center;
}

.area-header .section-label::before {
    display: none;
}

.area-header .section-desc {
    margin: 0 auto;
}

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

.area-map {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(15, 76, 58, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.map-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.map-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.map-address {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.area-circles {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(15, 76, 58, 0.12);
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 30%;
    height: 30%;
    animation-delay: 0s;
}

.ring-2 {
    width: 55%;
    height: 55%;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 80%;
    height: 80%;
    animation-delay: 1s;
}

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

.area-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.area-group-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.area-items {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.area-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.area-items .dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

.contact-title {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 48px;
}

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

.contact-detail {
    display: flex;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 76, 58, 0.08);
    border-radius: 10px;
    color: var(--emerald);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 4px;
}

.detail-text a,
.detail-text span {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
    transition: color 0.2s;
}

.detail-text a:hover {
    color: var(--emerald);
}

/* --- Form --- */
.contact-form-col {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(15, 76, 58, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

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

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream-light);
    border: 1.5px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
    outline: none;
}

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

.form-input::placeholder {
    color: var(--warm-gray-light);
}

.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='%236b6560' 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 {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(15, 76, 58, 0.08);
    border-radius: 8px;
    color: var(--emerald);
    font-weight: 500;
    margin-top: 16px;
}

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

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-brand .logo-name {
    color: var(--cream);
}

.footer-brand .logo-tagline {
    color: rgba(245, 240, 232, 0.5);
}

.footer-tagline {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.5);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
}

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

.footer-nav li span {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.5);
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.2s;
}

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

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

.copyright {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer-note {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.3);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s 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; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

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

    .about-grid {
        gap: 60px;
    }

    .area-content {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }

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

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

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

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

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

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

    .hero-img-badge {
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
    }

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

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

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

    .about-exp-badge {
        top: -16px;
        right: -16px;
        width: 90px;
        height: 90px;
    }

    .about-content-col {
        padding-left: 0;
    }

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

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

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

    .area-map {
        max-width: 100%;
        margin: 0 auto;
    }

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

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

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

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

    .hero-scroll {
        display: none;
    }
}

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

    .hero {
        padding-top: 64px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

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

    .services,
    .about,
    .area,
    .contact {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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