/* ============================================
   Angelos & Rardin, CPA — Style System
   Palette: Plum (#6B3A6E) + Amber (#F2C977)
   ============================================ */

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

:root {
    --plum-deep: #4A2549;
    --plum: #6B3A6E;
    --plum-light: #8E5A94;
    --plum-pale: #F3EDF7;
    --plum-ghost: #FAF8FC;
    --amber: #F2C977;
    --amber-light: #F9E5A8;
    --amber-pale: #FFF8E8;
    --cream: #FDF9F3;
    --warm-white: #F8F5F2;
    --sand: #EDE8E0;
    --text-primary: #1E1525;
    --text-secondary: #4A3F52;
    --text-muted: #7A6E82;
    --text-light: #A89BB0;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(107, 58, 110, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 58, 110, 0.09);
    --shadow-lg: 0 16px 60px rgba(107, 58, 110, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    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;
}

ul { list-style: none; }

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}
.skip-link:focus {
    top: 16px;
}

/* Grain overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}
.btn--primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--sm {
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
}

.btn--lg {
    padding: 17px 34px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 17px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--light {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
}
.btn--light:hover {
    background: var(--amber-pale);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 58, 110, 0.07);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(253, 249, 243, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.primary-nav a:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

/* Nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: var(--radius-sm);
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
    left: 11px;
}
.hamburger { top: 21px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    background: linear-gradient(160deg, var(--cream) 0%, var(--plum-ghost) 50%, var(--amber-pale) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(242, 201, 119, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 58, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum);
    background: rgba(107, 58, 110, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: italic;
    color: var(--plum);
}

.hero-sub {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    box-shadow: var(--shadow-md);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand);
    flex-shrink: 0;
}

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

.hero-image-stack {
    position: relative;
    padding-right: 80px;
}

.hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img--main {
    width: 100%;
    aspect-ratio: 520/680;
}
.hero-img--accent {
    position: absolute;
    bottom: -30px;
    left: -60px;
    width: 280px;
    aspect-ratio: 280/200;
    border: 5px solid var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-badge {
    position: absolute;
    top: 40px;
    right: -10px;
    background: var(--white);
    color: var(--plum);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.hero-badge svg {
    color: var(--amber);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--warm-white);
}

.section-header {
    margin-bottom: 60px;
}
.section-header .section-desc {
    margin-top: 16px;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid rgba(107, 58, 110, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum) 0%, var(--amber) 100%);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--plum-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--plum);
    color: var(--white);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 560/420;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--cream);
    box-shadow: var(--shadow-md);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 320/240;
}

.about-content .section-title {
    margin-bottom: 24px;
}

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

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

.value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--amber-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 201, 119, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-inner {
    position: relative;
    z-index: 1;
}

.why-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.why-content .section-label { color: var(--amber); }
.why-content .section-label::before { background: var(--amber); }
.why-content .section-title { color: var(--white); }
.why-content .section-desc {
    color: rgba(255,255,255,0.75);
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.why-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.8;
}

.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--warm-white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid rgba(107, 58, 110, 0.06);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--amber);
    position: absolute;
    top: 20px;
    right: 28px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    margin-top: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--sand);
    padding-top: 20px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-author-info strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}
.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--amber) 0%, #E8B84A 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 58, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.02rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

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

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

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

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

.contact-detail strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--plum);
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.contact-detail a:hover {
    color: var(--plum);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 58, 110, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text-primary);
    background: var(--warm-white);
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 58, 110, 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: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: #E8F5E9;
    border-radius: var(--radius-sm);
    color: #2E7D32;
    font-size: 0.92rem;
}
.form-success svg {
    color: #4CAF50;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}

.logo--footer .logo-mark {
    background: rgba(255,255,255,0.12);
}
.logo--footer .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
}

.footer-nav strong,
.footer-services strong,
.footer-contact strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a,
.footer-services a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-nav a:hover,
.footer-services a:hover {
    color: var(--amber);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-legal {
    font-size: 0.78rem !important;
    max-width: 400px;
    text-align: right;
}

/* ============================================
   SCROLL 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);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual { order: -1; }
    .hero-image-stack { padding-right: 0; }
    .hero-img--accent { left: 20px; }
    .hero-stats { max-width: 500px; }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-float { right: 20px; }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(253, 249, 243, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(107, 58, 110, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .primary-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }
    .primary-nav a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
    }
    .primary-nav .btn--primary {
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }

    .hero { padding-top: 110px; }
    .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .hero-img--accent { display: none; }
    .hero-badge { display: none; }
    .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
    .stat-divider { display: none; }

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

    .about-img-float { display: none; }

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

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }

    .contact-form-wrapper { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero { padding-top: 100px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .services, .about, .why-us, .testimonials, .contact { padding: 72px 0; }
}
