    /* ── Hero ─────────────────────────────────────── */
    .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--green-400);
    }

    .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    }

    .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(53, 64, 36, 0.08) 0%,
        rgba(44, 33, 16, 0.55) 60%,
        rgba(44, 33, 16, 0.82) 100%
    );
    }

    .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px) clamp(60px, 8vw, 100px);
    width: 100%;
    }

    .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-100);
    margin-bottom: 20px;
    }

    .hero-eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green-100);
    }

    .hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.05;
    max-width: 720px;
    margin-bottom: 28px;
    }

    .hero-sub {
    font-family: "Jost", sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 300;
    color: rgba(245, 235, 227, 0.82);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 40px;
    }

    .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    }

    .hero-scroll {
    position: absolute;
    bottom: clamp(24px, 4vw, 48px);
    right: clamp(24px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(245, 235, 227, 0.5);
    font-family: "Jost", sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    }

    .hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        rgba(245, 235, 227, 0.5),
        transparent
    );
    animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.1);
    }
    }

    /* ── Meet Marci ───────────────────────────────── */
    .meet-section {
    padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 60px);
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    }

    .meet-image-wrap {
    position: relative;
    }

    .meet-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 120px 120px 24px 24px;
    overflow: hidden;
    position: relative;
    }

    .meet-photo img,
    .meet-photo .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .meet-photo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--cream-100);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 28px rgba(53, 64, 36, 0.14);
    border: 4px solid var(--cream-50);
    }

    .meet-photo-badge .badge-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--green-300);
    line-height: 1;
    }

    .meet-photo-badge .badge-label {
    font-family: "Jost", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-50);
    margin-top: 2px;
    }

    .meet-text .section-label {
    color: var(--green-200);
    }

    .meet-text h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.1;
    }

    .meet-text h2 em {
    font-style: italic;
    color: var(--green-300);
    }

    .meet-text p {
    margin-bottom: 18px;
    }

    .meet-text p:last-of-type {
    margin-bottom: 36px;
    }

    /* ── Services ─────────────────────────────────── */
    .services-section {
    background-color: var(--green-400);
    padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 60px);
    }

    .services-inner {
    max-width: 1160px;
    margin: 0 auto;
    }

    .services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    }

    .services-header h2 {
    color: var(--cream-100);
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 300;
    max-width: 400px;
    }

    .services-header h2 em {
    font-style: italic;
    color: var(--green-100);
    }

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

    .service-card {
    background: rgba(245, 235, 227, 0.05);
    border: 1px solid rgba(245, 235, 227, 0.12);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.35s var(--ease-smooth, ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    }

    .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(214, 230, 176, 0.06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    }

    .service-card:hover {
    background: rgba(245, 235, 227, 0.09);
    transform: translateY(-4px);
    border-color: rgba(245, 235, 227, 0.22);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }

    .service-card:hover::before {
    opacity: 1;
    }

    .service-icon {
    width: 52px;
    height: 52px;
    background: rgba(214, 230, 176, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
    }

    .service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--cream-100);
    margin-bottom: 12px;
    }

    .service-card p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(229, 215, 196, 0.7);
    line-height: 1.75;
    margin-bottom: 28px;
    }

    .service-link {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-100);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
    }

    .service-link:hover {
    gap: 10px;
    }

    .service-link::after {
    content: "→";
    }

    /* ── Quote Band ───────────────────────────────── */
    .quote-band {
    padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 60px);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    }

    .quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 80px;
    line-height: 0.5;
    color: var(--green-100);
    display: block;
    margin-bottom: 24px;
    }

    .quote-band blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 300;
    font-style: italic;
    color: var(--brown-100);
    line-height: 1.4;
    margin-bottom: 24px;
    }

    .quote-author {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-200);
    }

    /* ── Contact Strip ────────────────────────────── */
    .contact-strip {
    background-color: var(--cream-100);
    padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
    }

    .contact-strip-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    }

    .contact-strip h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 300;
    margin-bottom: 12px;
    }

    .contact-strip h2 em {
    font-style: italic;
    color: var(--green-300);
    }

    .contact-strip-sub {
    color: var(--brown-50);
    font-size: 16px;
    margin-bottom: 36px;
    }

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

    .contact-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    }

    .contact-strip-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--cream-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .contact-strip-text {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--brown-50);
    line-height: 1.6;
    }

    .contact-strip-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    }

    .contact-strip-text a:hover {
    color: var(--green-300);
    }

    /* Responsive */
    @media (max-width: 768px) {
    .meet-section {
        grid-template-columns: 1fr;
    }
    .meet-photo {
        aspect-ratio: 3/4;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-strip-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }
    }