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

:root {
    --color-terracotta: #B8623C;
    --color-terracotta-dark: #9A4E2E;
    --color-terracotta-light: #D4896A;
    --color-sand: #E8D5C0;
    --color-sand-light: #F2E8DC;
    --color-sand-pale: #F7F0E8;
    --color-cream: #FBF8F4;
    --color-charcoal: #2C2420;
    --color-warm-gray: #6B5E56;
    --color-medium-gray: #9A8E86;
    --color-light-gray: #C4B8AE;
    --color-white: #FFFFFF;

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

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

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

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

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.6;
    -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 {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    border: 1.5px solid var(--color-terracotta);
}

.btn--primary:hover {
    background-color: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 98, 60, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-light-gray);
}

.btn--ghost:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
}

.btn--ghost-light {
    background-color: rgba(255,255,255,0.12);
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}

.btn--ghost-light:hover {
    background-color: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.6);
}

.btn--large {
    padding: 1.125rem 2.25rem;
    font-size: 0.9375rem;
}

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 184, 174, 0.3);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 24px rgba(44, 36, 32, 0.06);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-terracotta);
    letter-spacing: 0.05em;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-warm-gray);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-terracotta);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--color-terracotta);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--color-terracotta);
    border-radius: var(--radius-sm);
    color: var(--color-terracotta);
    transition: all var(--transition);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.nav__toggle {
    display: none;
    padding: 0.5rem;
    color: var(--color-charcoal);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    padding: 120px var(--space-lg) var(--space-3xl);
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(232, 213, 192, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.hero__subheadline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-sand);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.hero__stat-number .hero__stat-suffix {
    font-size: 1.125rem;
    color: var(--color-terracotta);
}

.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-medium-gray);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-sand);
}

.hero__visual {
    position: relative;
    height: 700px;
}

.hero__image-hero {
    width: 100%;
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(44, 36, 32, 0.12);
}

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

.hero__image-accent {
    position: absolute;
    bottom: 60px;
    left: -60px;
    width: 260px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--color-cream);
    box-shadow: 0 12px 32px rgba(44, 36, 32, 0.1);
}

.hero__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-small {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 180px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--color-cream);
    box-shadow: 0 8px 24px rgba(44, 36, 32, 0.08);
}

.hero__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-medium-gray);
}

.hero__scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── About ─── */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.about__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: var(--space-xl);
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 60%;
    height: 200px;
    background: var(--color-terracotta);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
}

.about__credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-sand);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.credential__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-sand-pale);
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.credential__text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

/* ─── Services ─── */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-sand-pale);
}

.services__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition);
    border: 1px solid transparent;
}

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

.service-card--featured {
    border: 1.5px solid var(--color-terracotta-light);
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-sand-pale) 100%);
}

.service-card__badge {
    position: absolute;
    top: -1px;
    right: var(--space-lg);
    background: var(--color-terracotta);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-sand);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-sand-pale);
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.service-card__body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-md);
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card__list li {
    font-size: 0.875rem;
    color: var(--color-warm-gray);
    padding-left: 1.25rem;
    position: relative;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--color-terracotta);
    border-radius: 50%;
}

/* ─── Areas ─── */
.areas {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.areas__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

.areas__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.area-item {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-sand-pale);
    transition: all var(--transition);
}

.area-item:hover {
    background: var(--color-sand);
    transform: translateY(-2px);
}

.area-item--wide {
    grid-column: span 4;
    text-align: center;
    background: var(--color-charcoal);
    color: var(--color-sand-light);
}

.area-item--wide:hover {
    background: var(--color-charcoal);
}

.area-item__name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.area-item--wide .area-item__name {
    color: var(--color-sand-light);
    font-size: 1.125rem;
}

.area-item__detail {
    font-size: 0.8125rem;
    color: var(--color-medium-gray);
}

.areas__map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.areas__map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.areas__map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.areas__map-overlay p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
}

/* ─── Testimonials ─── */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--color-charcoal);
}

.testimonials__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.testimonials__header .section-eyebrow {
    color: var(--color-terracotta-light);
}

.testimonials__header .section-title {
    color: var(--color-sand-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(184, 98, 60, 0.3);
    transform: translateY(-4px);
}

.testimonial-card__quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.testimonial-card__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-sand-light);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-card__meta {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card__name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-medium-gray);
    letter-spacing: 0.04em;
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    position: relative;
}

.cta-banner__eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-banner__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* ─── Contact ─── */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-sand-pale);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-terracotta);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(44, 36, 32, 0.06);
}

.contact__detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-medium-gray);
    margin-bottom: 0.25rem;
}

.contact__detail address {
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.contact__detail a {
    font-size: 0.9375rem;
    color: var(--color-terracotta);
    transition: color var(--transition);
}

.contact__detail a:hover {
    color: var(--color-terracotta-dark);
    text-decoration: underline;
}

.contact__form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(44, 36, 32, 0.06);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    background: var(--color-sand-pale);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(184, 98, 60, 0.1);
}

.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='%236B5E56' 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 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-privacy {
    font-size: 0.75rem;
    color: var(--color-medium-gray);
    text-align: center;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-md);
}

.form-success__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-sand-pale);
    color: var(--color-terracotta);
}

.form-success__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-success__body {
    font-size: 1rem;
    color: var(--color-warm-gray);
    line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--color-charcoal);
    color: var(--color-sand-light);
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-lg);
}

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

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-terracotta-light);
    letter-spacing: 0.05em;
}

.footer__name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-sand-light);
}

.footer__tagline {
    font-size: 0.75rem;
    color: var(--color-medium-gray);
    margin-left: var(--space-sm);
    padding-left: var(--space-sm);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--color-medium-gray);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-terracotta-light);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__copy {
    font-size: 0.8125rem;
    color: var(--color-medium-gray);
}

.footer__legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Mobile Menu ─── */
.nav__menu.open {
    display: flex;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__visual {
        height: 500px;
    }

    .hero__image-hero {
        height: 420px;
    }

    .hero__image-accent {
        left: -30px;
        width: 200px;
        height: 160px;
    }

    .hero__image-small {
        right: -20px;
        width: 150px;
        height: 100px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__image-wrap img {
        height: 500px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .areas__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .area-item--wide {
        grid-column: span 3;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

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

    .cta-banner__actions {
        flex-direction: row;
        justify-content: center;
    }

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

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .nav__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
        border-bottom: 1px solid var(--color-sand);
        box-shadow: 0 8px 24px rgba(44, 36, 32, 0.08);
    }

    .nav__menu.open {
        display: flex;
    }

    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__link--cta {
        display: block;
        text-align: center;
    }

    .hero {
        padding-top: 100px;
    }

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

    .hero__visual {
        display: none;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero__stat-divider {
        display: none;
    }

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

    .area-item--wide {
        grid-column: span 2;
    }

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

    .footer__top {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer__brand {
        flex-direction: column;
    }

    .footer__tagline {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: var(--space-sm);
        margin-top: var(--space-sm);
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__bottom {
        text-align: center;
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

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

    .area-item--wide {
        grid-column: span 1;
    }

    .cta-banner__actions {
        flex-direction: column;
    }
}

/* ─── Animations ─── */
.fade-in {
    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);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
