/* ============================================
   Preston Eklund — Rocklin Real Estate Agent
   Classic & Elegant Design System
   ============================================ */

/* ---- Custom Properties ---- */
:root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5F0EB;
    --sand-dark: #E8DFD5;
    --sand-light: #FAF8F5;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #8A7E76;
    --warm-gray-light: #B5AAA2;
    --cream: #FDFCFA;
    --white: #FFFFFF;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.06), 0 1px 2px rgba(44, 36, 32, 0.04);
    --shadow-md: 0 4px 16px rgba(44, 36, 32, 0.08), 0 2px 4px rgba(44, 36, 32, 0.04);
    --shadow-lg: 0 12px 40px rgba(44, 36, 32, 0.12), 0 4px 12px rgba(44, 36, 32, 0.06);
    --shadow-xl: 0 24px 60px rgba(44, 36, 32, 0.14);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

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

/* ---- Typography ---- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 560px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border: 1.5px solid var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--sand-dark);
}
.btn-ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn-light {
    background: var(--white);
    color: var(--charcoal);
    border: 1.5px solid var(--white);
}
.btn-light:hover {
    background: var(--sand);
    border-color: var(--sand);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 223, 213, 0.5);
    transition: all var(--transition);
}
.site-header.scrolled {
    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: 10px;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    transition: color var(--transition);
}
.logo:hover {
    color: var(--terracotta);
}
.logo .logo-mark {
    color: var(--terracotta);
}

.logo-light {
    color: var(--white);
}
.logo-light:hover {
    color: var(--sand);
}
.logo-light .logo-mark {
    color: var(--sand);
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color var(--transition);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width var(--transition);
}
.main-nav a:hover {
    color: var(--terracotta);
}
.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}
.nav-cta::after {
    display: none;
}
.nav-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover {
    background: var(--sand);
}
.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    transition: all var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}
.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 6px;
}

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

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

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
}

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

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

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* Hero Image */
.hero-image {
    position: relative;
}
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

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

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

.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-accent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--terracotta);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.about-content .section-eyebrow {
    margin-bottom: 12px;
}
.about-content .section-title {
    margin-bottom: 24px;
}
.about-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 16px;
}
.about-content > p:last-of-type {
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.5;
}
.about-features li svg {
    flex-shrink: 0;
    color: var(--terracotta);
    margin-top: 2px;
}

.about-content .btn {
    margin-top: 8px;
}

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

.section-header {
    margin-bottom: 64px;
}
.section-header .section-subtitle {
    margin-top: 16px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}
.service-card:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.service-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* ---- Areas ---- */
.areas {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}
.areas .section-eyebrow {
    color: var(--terracotta-light);
}
.areas .section-title {
    color: var(--white);
    margin-bottom: 20px;
}
.areas-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray-light);
    margin-bottom: 36px;
}

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

.areas-list {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.area-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--charcoal);
    transition: all var(--transition);
}
.area-item:hover {
    background: rgba(255, 255, 255, 0.06);
}
.area-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}
.area-desc {
    font-size: 13px;
    color: var(--warm-gray-light);
}
.area-item:hover .area-desc {
    color: var(--terracotta-light);
}

.areas-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Testimonials ---- */
.testimonials {
    padding: 120px 0;
    background: var(--sand);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--sand-dark);
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 1;
    color: var(--terracotta);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 24px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 50%;
    color: var(--terracotta);
    flex-shrink: 0;
}
.testimonial-name {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    display: block;
}
.testimonial-detail {
    font-size: 13px;
    color: var(--warm-gray);
}

/* ---- CTA ---- */
.cta {
    padding: 100px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}
.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    color: rgba(255, 255, 255, 0.7) !important;
}
.cta-title {
    color: var(--white);
    margin-bottom: 16px;
}
.cta-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cta-actions .btn-primary {
    background: var(--white);
    border-color: var(--white);
    color: var(--terracotta);
}
.cta-actions .btn-primary:hover {
    background: var(--sand);
    border-color: var(--sand);
}
.cta-actions .btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}
.cta-actions .btn-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

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

.contact-info .section-title {
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 36px;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: var(--radius-sm);
    color: var(--terracotta);
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 2px;
}
.contact-value {
    font-size: 15px;
    color: var(--charcoal);
    font-weight: 500;
}
.contact-value:hover {
    color: var(--terracotta);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.contact-form-wrap {
    position: relative;
}
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
}
.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--warm-gray);
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal-light);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--sand-light);
    border: 1.5px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7E76' 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 12px center;
    padding-right: 36px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--terracotta);
}
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 64px 0 0;
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray-light);
    margin-top: 12px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul {
    display: grid;
    gap: 10px;
}
.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: var(--warm-gray-light);
    transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--terracotta-light);
}
.footer-contact li:not(:last-child) {
    color: var(--warm-gray-light);
    font-size: 14px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--warm-gray);
}
.footer-disclaimer {
    font-size: 12px !important;
    color: var(--warm-gray) !important;
    max-width: 400px;
    text-align: right;
}

/* ---- Scroll Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    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,
    .about-grid,
    .areas-grid,
    .contact-grid {
        gap: 48px;
    }

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

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

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

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 24px;
        border-bottom: 1px solid var(--sand-dark);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .main-nav li {
        width: 100%;
    }
    .main-nav a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--sand-dark);
        font-size: 16px;
    }
    .main-nav a::after {
        display: none;
    }
    .main-nav .nav-cta {
        display: inline-block;
        margin-top: 16px;
        border-bottom: none;
        text-align: center;
    }

    /* Hero */
    .hero {
        padding-top: 76px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    .hero-image {
        order: -1;
    }
    .hero-img-wrap {
        border-radius: var(--radius-md);
    }
    .hero-accent {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 20px;
    }

    /* Sections */
    .about,
    .services,
    .areas,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .about-grid,
    .areas-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        order: -1;
    }

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

    /* CTA */
    .cta {
        padding: 80px 0;
    }
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
