*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --line: var(--slate-200);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-700);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── Site Lines (background grid) ── */
.site-wrap {
    position: relative;
}

.site-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.site-lines line {
    stroke: var(--slate-200);
    stroke-width: 0.5;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--slate-800);
    letter-spacing: -0.01em;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--teal-600);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slate-500);
    transition: color 0.2s var(--ease);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal-600);
    transition: width 0.3s var(--ease);
}

.nav a:hover {
    color: var(--slate-800);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--teal-600) !important;
    border: 1px solid var(--teal-600);
    padding: 8px 18px;
    transition: background 0.2s var(--ease), color 0.2s var(--ease) !important;
}

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

.nav-cta:hover {
    background: var(--teal-600);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--slate-700);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-primary {
    background: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
}

.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

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

.btn-full {
    width: 100%;
}

/* ── Section Shared ── */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ── Hero ── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-500);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

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

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    overflow: hidden;
    border-radius: 2px;
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 820;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.hero-img-wrap:hover img {
    transform: scale(1.02);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

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

.stat-num {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--teal-600);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* ── About ── */
.about {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: var(--slate-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    overflow: hidden;
    border-radius: 2px;
}

.about-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 660;
    object-fit: cover;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--slate-500);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.about-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-signature span:first-child {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--slate-800);
}

.about-signature span:last-child {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* ── Services ── */
.services {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}

.services-header .section-title {
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--line);
    margin: -0.5px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

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

.service-card:hover {
    background: var(--teal-50);
    border-color: var(--teal-200);
}

.service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
    color: var(--teal-600);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--slate-800);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--slate-500);
}

/* ── Areas ── */
.areas {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: var(--slate-50);
}

.areas-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-content .section-title {
    margin-bottom: 1.2rem;
}

.areas-content p {
    color: var(--slate-500);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.neighborhood-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
    margin-bottom: 2.5rem;
}

.neighborhood-list li {
    font-size: 0.85rem;
    color: var(--slate-600);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    padding-left: 1rem;
}

.neighborhood-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--teal-400);
    border-radius: 50%;
}

.areas-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.areas-img-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.areas-img-grid img:first-child {
    aspect-ratio: 400 / 500;
}

.areas-img-grid img:last-child {
    aspect-ratio: 400 / 300;
}

/* ── Testimonials ── */
.testimonials {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.testimonials > .container {
    text-align: center;
    max-width: 900px;
}

.testimonials .section-title {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--slate-50);
    padding: 2rem;
    border-radius: 2px;
    text-align: left;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.quote-mark {
    width: 28px;
    height: 28px;
    color: var(--teal-200);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.05rem;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* ── Contact ── */
.contact {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background: var(--slate-900);
    color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact .section-title {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.contact-info > p {
    color: var(--slate-400);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--slate-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--teal-400);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item a {
    color: var(--slate-300);
    transition: color 0.2s var(--ease);
}

.contact-item a:hover {
    color: var(--teal-400);
}

/* ── Form ── */
.contact-form-wrap {
    background: var(--white);
    border-radius: 2px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 2px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-300);
}

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

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: var(--teal-500);
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--slate-500);
}

/* ── Footer ── */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
    background: var(--white);
}

.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-800);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--slate-400);
    font-style: italic;
    font-family: var(--font-serif);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--slate-400);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 480px;
    }

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

    .about-grid,
    .areas-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--line);
        padding: 1.5rem 5%;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .hero-inner {
        padding: 2rem 5%;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

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

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

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

    .neighborhood-list {
        grid-template-columns: 1fr;
    }

    .about,
    .services,
    .areas,
    .testimonials,
    .contact {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}
