/* ===================================
   Gayle Greenberger LPC — Styles
   Charcoal + Coral · Vibrant Modern
==================================== */

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

:root {
    --charcoal: #1a1a2e;
    --charcoal-light: #2d2d44;
    --charcoal-mid: #3a3a55;
    --coral: #E8655B;
    --coral-light: #f08078;
    --coral-dark: #d45248;
    --coral-pale: #fef0ee;
    --cream: #faf8f6;
    --cream-dark: #f0ece6;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #7a7a9a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(26,26,46,0.08);
    --shadow-md: 0 4px 20px rgba(26,26,46,0.1);
    --shadow-lg: 0 8px 40px rgba(26,26,46,0.12);
    --shadow-xl: 0 16px 60px rgba(26,26,46,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Typography ---------- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,101,91,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,248,246,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,26,46,0.06);
    transition: var(--transition);
}
.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.02em;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--charcoal);
}
.nav-logo-sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--coral);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--coral);
}
.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232,101,91,0.3);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .nav-toggle-bar: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;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0.5rem;
}
.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: var(--transition);
}
.mobile-menu-link:hover {
    color: var(--coral);
}
.mobile-menu-cta {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--coral);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--coral);
    top: -200px;
    right: -100px;
}
.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--charcoal);
    bottom: 10%;
    left: -80px;
    opacity: 0.05;
}
.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--coral);
    top: 40%;
    left: 35%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.1;
}
.hero-shape-4 {
    width: 80px;
    height: 80px;
    background: var(--charcoal);
    top: 25%;
    right: 30%;
    border-radius: var(--radius-sm);
    transform: rotate(30deg);
    opacity: 0.06;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}
.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: italic;
    color: var(--coral);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-credentials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-cred {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
}
.hero-cred svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 680px;
}
.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}
.hero-img-accent {
    width: 260px;
    height: 320px;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 6px solid var(--cream);
}

.hero-float-card {
    position: absolute;
    bottom: 120px;
    right: -20px;
    z-index: 4;
    background: var(--charcoal);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-float-card-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.hero-float-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--coral);
    line-height: 1;
}
.hero-float-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ---------- Divider ---------- */
.section-divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(26,26,46,0.1);
}
.divider-dot {
    width: 10px;
    height: 10px;
    background: var(--coral);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- About ---------- */
.about {
    padding: 7rem 0;
    background: var(--white);
}
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}
.about-accent-block {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--coral);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
}
.about-accent-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.accent-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.accent-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.about-content {
    padding-top: 2rem;
}
.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.value-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.value-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
}
.value-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* ---------- Services ---------- */
.services {
    padding: 7rem 0;
    background: var(--cream);
}
.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.services-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.services-sub {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(26,26,46,0.04);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-accent {
    transform: scaleX(1);
}
.service-card-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26,26,46,0.05);
    line-height: 1;
    margin-bottom: 1rem;
}
.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--coral);
    color: var(--white);
}
.service-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}
.service-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ---------- Approach ---------- */
.approach {
    padding: 7rem 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.approach-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.approach-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.05;
    top: -200px;
    right: -100px;
}
.approach-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--coral);
    border-radius: var(--radius-xl);
    opacity: 0.04;
    bottom: -100px;
    left: -50px;
    transform: rotate(30deg);
}

.approach-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.approach-inner {
    max-width: 900px;
    margin: 0 auto;
}
.approach-label-wrap .section-label {
    color: var(--coral-light);
}
.approach-title {
    color: var(--white);
    margin-bottom: 4rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.approach-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.approach-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(232,101,91,0.3);
    transform: translateY(-4px);
}
.approach-item-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.approach-item-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.approach-item-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.approach-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.methods-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.methods-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.method-tag {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.method-tag:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 7rem 0;
    background: var(--cream);
}
.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(26,26,46,0.04);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--coral);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--charcoal);
}
.testimonial-detail {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 6rem 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}
.cta-banner-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-shape-1 { width: 400px; height: 400px; top: -150px; left: -100px; }
.cta-shape-2 { width: 250px; height: 250px; bottom: -80px; right: 10%; border-radius: var(--radius-xl); transform: rotate(30deg); }
.cta-shape-3 { width: 120px; height: 120px; top: 20%; right: 25%; }

.cta-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.cta-banner-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
    padding: 7rem 0;
    background: var(--white);
}
.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.125rem;
}
.contact-detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}
.contact-detail-value:hover {
    color: var(--coral);
}

.contact-form-wrap {
    position: sticky;
    top: 100px;
}
.contact-form-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.contact-form-sub {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(26,26,46,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,101,91,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}
.form-success.show {
    display: block;
}
.form-success .success-icon {
    width: 64px;
    height: 64px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin: 0 auto 1rem;
}
.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.success-text {
    font-size: 0.9375rem;
    color: var(--text-mid);
}

/* ---------- Map ---------- */
.map-section {
    border-top: 1px solid rgba(26,26,46,0.06);
}
.map-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.map-container iframe {
    border-radius: 0;
    width: 100%;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 0;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}
.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    display: block;
    margin-top: 0.75rem;
}
.footer-logo-sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--coral-light);
}
.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-nav a:hover {
    color: var(--coral-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-phone, .footer-email {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-phone:hover, .footer-email:hover {
    color: var(--coral-light);
}
.footer-address {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}
.footer-creds {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-right {
        display: none;
    }
    .hero-left {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-credentials { justify-content: center; }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-wrap img { height: 500px; }
    .about-accent-block {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-wrap {
        position: static;
        max-width: 560px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

    .hero { padding: 5rem 0 3rem; min-height: auto; }
    .hero-headline { font-size: clamp(1.875rem, 6vw, 2.75rem); }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.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; }
