:root {
    --cream: #fbf8f5;
    --paper: #fffdfb;
    --rose-50: #f4eae5;
    --rose-100: #ead8cf;
    --rose-500: #9a7564;
    --rose-700: #785447;
    --ink: #302927;
    --muted: #655b57;
    --line: #dfd1ca;
    --shadow: 0 18px 50px rgba(74, 48, 38, .1);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
    --header-height: 88px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #5c3b30;
    outline-offset: 4px;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    transform: translateY(-150%);
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--ink);
    color: white;
}

.skip-link:focus {
    transform: none;
}

.section {
    padding: 108px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--rose-700);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    line-height: 1.02;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(154, 117, 100, .16);
    background: rgba(251, 248, 245, .94);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 190px;
}

.brand img {
    width: 190px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: block;
    padding: 12px 0;
    color: var(--muted);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    background: var(--rose-700);
    transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--rose-700);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
    transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--rose-700);
    color: white;
}

.btn-primary:hover {
    background: #654238;
}

.btn-secondary {
    border-color: var(--rose-500);
    color: var(--rose-700);
}

.btn-secondary:hover {
    background: var(--rose-50);
}

.hero {
    position: relative;
    padding: 72px 0 92px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(234, 216, 207, .42);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .82fr;
    align-items: center;
    gap: clamp(52px, 7vw, 104px);
}

.hero-text h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3.5rem, 6.4vw, 5.7rem);
    font-weight: 600;
    letter-spacing: -.035em;
}

.hero-text h1 em {
    display: block;
    color: var(--rose-500);
    font-weight: 500;
}

.hero-description {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 46px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.4;
}

.hero-image {
    position: relative;
    padding: 0 20px 28px 0;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 48% 48% 18px 18px;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: min(720px, 72vh);
    object-fit: cover;
    object-position: 50% 45%;
}

.location-card {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 220px;
    margin: 0;
    padding: 17px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.location-card>span {
    grid-row: 1 / 3;
    color: var(--rose-700);
    font-size: 1.4rem;
}

.location-card strong,
.location-card small {
    line-height: 1.35;
}

.location-card small {
    color: var(--muted);
}

.services {
    background: var(--paper);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-header h2,
.about-text h2,
.cta h2 {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 5vw, 4.25rem);
    font-weight: 600;
    letter-spacing: -.025em;
}

.section-header>p:last-child {
    color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.service-card {
    grid-column: span 4;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--cream);
    transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 34px 30px 30px;
}

.service-content>.icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 50%;
    background-color: var(--rose-100);
    background-size: 30px;
}

.service-content h3 {
    min-height: 2.05em;
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.service-content p {
    flex: 1;
    color: var(--muted);
    font-size: .9rem;
}

.service-link {
    align-self: flex-start;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--rose-700);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
}

.service-link span {
    transition: transform .2s;
}

.service-link:hover span {
    transform: translateX(4px);
}

.results {
    background: var(--cream);
}

.results-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: -16px 0 36px;
}

.results-filter {
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--muted);
    font: 600 .78rem/1 var(--sans);
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}

.results-filter:hover {
    border-color: var(--rose-500);
    color: var(--rose-700);
}

.results-filter[aria-pressed="true"] {
    border-color: var(--rose-700);
    background: var(--rose-700);
    color: white;
}

.filter-count {
    margin-left: 5px;
    opacity: .72;
}

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

.result-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: 0 10px 32px rgba(74, 48, 38, .07);
}

.result-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
}

.result-content {
    padding: 24px;
}

.result-content h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.result-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .88rem;
}

.results-status {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: .78rem;
    text-align: center;
}

.about {
    background: var(--rose-50);
}

.about-layout {
    display: grid;
    grid-template-columns: .92fr 1fr;
    align-items: center;
    gap: clamp(48px, 8vw, 100px);
}

.about-image {
    position: relative;
    padding: 22px 0 0 22px;
}

.about-image::before {
    content: "";
    position: absolute;
    inset: 0 22px 22px 0;
    border: 1px solid var(--rose-500);
    border-radius: 180px 180px 18px 18px;
}

.about-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 180px 180px 18px 18px;
    object-fit: cover;
}

.about-text>p:not(.eyebrow) {
    color: var(--muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    margin: 30px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: .88rem;
    font-weight: 500;
}

.about-features span {
    color: var(--rose-700);
    font-family: var(--serif);
    font-size: 1.3rem;
}

.cta-section {
    background: var(--paper);
}

.cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    padding: clamp(40px, 7vw, 76px);
    border-radius: 24px;
    background: var(--rose-700);
    color: white;
}

.cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    bottom: -190px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, .04), 0 0 0 60px rgba(255, 255, 255, .04);
}

.cta>* {
    position: relative;
    z-index: 1;
}

.cta .eyebrow {
    color: #f2ddd4;
}

.cta h2 {
    max-width: 720px;
}

.cta p:last-child {
    max-width: 690px;
    margin-bottom: 0;
    color: #f2e9e5;
}

.btn-light {
    background: white;
    color: var(--rose-700);
    white-space: nowrap;
}

.site-footer {
    padding: 76px 0 26px;
    background: #2f2927;
    color: #f4ece8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 54px;
}

.footer-brand img {
    width: 220px;
    height: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-brand p {
    max-width: 330px;
    color: #cfc1bb;
    font-size: .9rem;
}

.site-footer h2 {
    margin: 8px 0 20px;
    font-family: var(--sans);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer a {
    color: #d8cbc5;
    font-size: .86rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-list a {
    display: flex;
    flex-direction: column;
}

.contact-list span {
    color: #ae9f99;
    font-size: .72rem;
    text-transform: uppercase;
}

.contact-list strong {
    color: #f4ece8;
    font-weight: 500;
}

address {
    color: #d8cbc5;
    font-size: .86rem;
    font-style: normal;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: #ae9f99;
    font-size: .75rem;
}

@media (max-width: 1024px) {
    :root {
        --header-height: 78px;
    }

    .navbar {
        min-height: var(--header-height);
    }

    .brand,
    .brand img {
        width: 172px;
        flex-basis: 172px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px;
        background: var(--paper);
        box-shadow: 0 14px 24px rgba(47, 41, 39, .08);
        visibility: hidden;
        opacity: 0;
        transition: max-height .25s, opacity .2s, visibility .2s;
    }

    .nav-links.open {
        max-height: calc(100vh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        padding-block: 12px 22px;
        visibility: visible;
        opacity: 1;
    }

    .nav-links a {
        min-height: 50px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1.08fr .8fr;
        gap: 44px;
    }

    .hero-text h1 {
        font-size: clamp(3.1rem, 7vw, 4.5rem);
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        grid-column: span 6;
    }

    .results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-grid>div:nth-child(2) {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: min(100% - 32px, 620px);
    }

    .section {
        padding: 64px 0;
    }

    .navbar {
        gap: 16px;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .nav-links {
        padding-inline: 16px;
    }

    .nav-links a {
        min-height: 56px;
    }

    .hero {
        padding: 38px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        margin-bottom: 20px;
        font-size: clamp(2.75rem, 13vw, 4.25rem);
    }

    .hero-description {
        font-size: .98rem;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 36px;
    }

    .hero-actions .btn {
        width: min(100%, 300px);
        min-height: 52px;
    }

    .hero-features {
        max-width: 360px;
        margin-inline: auto;
        text-align: left;
    }

    .hero-image {
        width: min(94%, 400px);
        margin: auto;
        padding-right: 12px;
    }

    .image-frame img {
        height: min(520px, 64vh);
        height: min(520px, 64svh);
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2,
    .about-text h2,
    .cta h2 {
        font-size: clamp(2.35rem, 10.5vw, 3.3rem);
    }

    .section-header>p:last-child {
        font-size: .93rem;
    }

    .services-grid {
        gap: 18px;
    }

    .service-card {
        grid-column: span 12;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .results-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        margin: -8px -16px 30px;
        padding-inline: 16px;
        padding-bottom: 6px;
        overflow-x: auto;
        scroll-padding-inline: 16px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .results-filter {
        flex: 0 0 auto;
        min-height: 46px;
        scroll-snap-align: start;
    }

    .result-content {
        padding: 22px;
    }

    .service-content h3 {
        min-height: 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        width: min(90%, 440px);
        margin: auto;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 24px;
        text-align: center;
    }

    .cta .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding-top: 60px;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        width: 100%;
    }

    .service-content {
        padding: 28px 24px;
    }

    .about-image {
        width: min(94%, 400px);
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .hero-image {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100% - 28px);
    }

    .brand,
    .brand img {
        width: 148px;
        flex-basis: 148px;
    }

    .hero-text h1 {
        font-size: clamp(2.55rem, 13vw, 3rem);
    }

    .location-card {
        right: -2px;
        min-width: 186px;
        padding: 12px 14px;
    }

    .cta {
        padding: 32px 20px;
    }

    .cta h2 {
        font-size: 2.3rem;
    }

    .site-footer {
        padding-top: 52px;
    }
}

@media (max-width: 350px) {
    .container {
        width: calc(100% - 24px);
    }

    .brand,
    .brand img {
        width: 132px;
        flex-basis: 132px;
    }

    .hero-text h1 {
        font-size: 2.35rem;
    }

    .section-header h2,
    .about-text h2,
    .cta h2 {
        font-size: 2.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
