:root {
    --linen: #f6f1e7;
    --linen-deep: #efe6d4;
    --ink: #2c2620;
    --ink-soft: #5b5247;
    --sage: #6f7b5f;
    --sage-deep: #54603f;
    --clay: #bd6a45;
    --clay-deep: #a4542f;
    --cream-card: #fbf8f1;
    --gold: #c89a4a;
    --shadow: rgba(60, 48, 32, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Newsreader', Georgia, serif;
    background: var(--linen);
    color: var(--ink);
    line-height: 1.65;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

/* ---------- top bar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(246, 241, 231, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 96, 80, 0.14);
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    /* padding-top: 10px;
    padding-bottom: 10px; */
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: clamp(138px, 24vw, 240px);
    height: auto;
}

.top-call {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    background: var(--sage-deep);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}

.top-call:hover {
    background: var(--sage);
    transform: translateY(-1px);
}

/* ---------- hero ---------- */
.hero {
    padding: 64px 0 72px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clay-deep);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1.5px;
    background: var(--clay);
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4rem);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--clay-deep);
}

.hero-lead {
    font-size: 1.24rem;
    color: var(--ink-soft);
    max-width: 30ch;
    margin-bottom: 34px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border-radius: 46px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--clay);
    color: #fff;
    box-shadow: 0 6px 22px rgba(189, 106, 69, 0.32);
}

.btn-primary:hover {
    background: var(--clay-deep);
    transform: translateY(-2px);
    box-shadow: 0 9px 26px rgba(189, 106, 69, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(80, 70, 56, 0.3);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: rgba(255, 255, 255, 0.4);
}

.hero-photo {
    position: relative;
}

.hero-photo .frame {
    position: relative;
    border-radius: 14px 14px 110px 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px var(--shadow);
    aspect-ratio: 1152/1320;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
}

.float-badge {
    position: absolute;
    left: -26px;
    bottom: 34px;
    background: var(--cream-card);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 14px 34px -8px var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 255px;
    border: 1px solid rgba(108, 96, 80, 0.1);
}

.float-badge .num {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--clay);
    line-height: 1;
}

.float-badge .txt {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--ink-soft);
    font-weight: 500;
}

/* ---------- trust strip ---------- */
.trust {
    background: var(--sage-deep);
    color: #f4f0e6;
}

.trust .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 38px;
    padding: 24px 28px;
    text-align: center;
}

.trust-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ---------- section base ---------- */
section.block {
    padding: 84px 0;
}

.section-head {
    max-width: 620px;
    margin-bottom: 52px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head .eyebrow {
    justify-content: flex-start;
}

.section-head.center .eyebrow {
    justify-content: center;
}

.section-head.center .eyebrow::before {
    display: none;
}

.section-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    margin-bottom: 16px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 1.12rem;
}

/* ---------- story ---------- */
.story {
    background: var(--linen-deep);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
    align-items: center;
}

.story-photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 22px 46px -18px var(--shadow);
    aspect-ratio: 4/5;
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.story-text .eyebrow {
    justify-content: flex-start;
}

.story-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    margin-bottom: 22px;
}

.story-text p {
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.story-text .signature {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--clay-deep);
    margin-top: 26px;
}

/* ---------- credentials ---------- */
.creds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cred-card {
    background: var(--cream-card);
    border-radius: 14px;
    padding: 34px 28px;
    border: 1px solid rgba(108, 96, 80, 0.1);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.cred-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clay);
}

.cred-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px -16px var(--shadow);
}

.cred-seal {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--linen-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--sage-deep);
}

.cred-card h3 {
    font-size: 1.32rem;
    margin-bottom: 10px;
}

.cred-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ---------- services ---------- */
.services {
    background: var(--linen-deep);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.svc-col {
    background: var(--cream-card);
    border-radius: 16px;
    padding: 36px 34px;
    border: 1px solid rgba(108, 96, 80, 0.1);
}

.svc-col h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--sage-deep);
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-col h3 .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--clay);
    flex-shrink: 0;
}

.svc-col .sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    margin-bottom: 20px;
    margin-left: 21px;
}

.svc-list {
    list-style: none;
}

.svc-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    padding: 9px 0 9px 30px;
    position: relative;
    border-bottom: 1px solid rgba(108, 96, 80, 0.1);
}

.svc-list li:last-child {
    border-bottom: none;
}

.svc-list li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sage);
    opacity: .55;
}

/* ---------- why ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 46px;
    max-width: 880px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(108, 96, 80, 0.14);
}

.why-item .check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sage-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.why-item h3 {
    font-size: 1.18rem;
    margin-bottom: 4px;
}

.why-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

/* ---------- gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.gallery figure {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 12px 28px -14px var(--shadow);
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery figure:hover img {
    transform: scale(1.06);
}

/* ---------- CTA / contact ---------- */
.contact {
    background: var(--ink);
    color: var(--linen);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 106, 69, 0.28), transparent 70%);
}

.contact .wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 90px 28px;
}

.contact .eyebrow {
    justify-content: center;
    color: var(--gold);
}

.contact .eyebrow::before {
    display: none;
}

.contact h2 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 18px;
    color: #fff;
}

.contact p {
    font-size: 1.18rem;
    color: rgba(246, 241, 231, 0.78);
    max-width: 48ch;
    margin: 0 auto 38px;
}

.contact-methods {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cm {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 17px 32px;
    border-radius: 48px;
    transition: all .2s;
}

.cm-phone {
    background: var(--clay);
    color: #fff;
    box-shadow: 0 8px 24px rgba(189, 106, 69, 0.4);
}

.cm-phone:hover {
    background: var(--clay-deep);
    transform: translateY(-2px);
}

.cm-email {
    background: transparent;
    color: var(--linen);
    border: 1.5px solid rgba(246, 241, 231, 0.32);
}

.cm-email:hover {
    border-color: var(--linen);
    background: rgba(246, 241, 231, 0.08);
}

.contact .closing-note {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 42px;
}

footer {
    background: #221d18;
    color: rgba(246, 241, 231, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    padding: 30px 28px;
}

footer .brand-f {
    font-family: 'Fraunces', serif;
    color: rgba(246, 241, 231, 0.85);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

/* ---------- reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ---------- responsive ---------- */
@media(max-width:880px) {

    .hero-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 44px 0 56px;
    }

    .hero-photo {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }

    .story-photo {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }

    .creds-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .float-badge {
        left: 0;
    }
}

@media(min-width:601px) and (max-width:880px) {
    .creds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creds-grid .cred-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 11px);
        justify-self: center;
        width: 100%;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        max-width: 520px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }
}

@media(max-width:520px) {
    body {
        font-size: 17px;
    }

    .topbar .wrap {
        gap: 12px;
    }

    .top-call {
        padding: 9px 14px;
        font-size: 0.82rem;
    }

    .brand-logo {
        width: clamp(160px, 50vw, 210px);
    }

    section.block {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }

    .gallery figure:hover img {
        transform: none;
    }
}


@media(min-width:1700px) and (max-width:2100px) {
    .wrap{
        max-width: 68% !important;
    }
}

/* ---------- home care contact form before contact ---------- */
.home-care-form-section {
    background: var(--linen);
    padding: 90px 0;
    color: var(--ink);
}

.home-care-form-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 72px;
    align-items: flex-start;
}

.home-care-form-content h2 {
    font-size: clamp(2.1rem, 3.7vw, 3rem);
    color: var(--ink);
    margin-bottom: 38px;
}

.home-care-form-content h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.34rem;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 40px;
    max-width: 430px;
}


.home-care-info {
    margin-bottom: 26px;
}

.home-care-info span {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.home-care-info a,
.home-care-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    color: var(--ink-soft);
    text-decoration: none;
    margin: 0;
}

.home-care-info a:hover {
    color: var(--clay);
}

.home-care-form {
    width: 100%;
}

.home-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.home-form-group {
    margin-bottom: 18px;
}

.home-form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 9px;
}

.home-form-group input,
.home-form-group textarea {
    width: 100%;
    border: 1px solid rgba(44, 38, 32, 0.34);
    background: rgba(255, 255, 255, 0.48);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    padding: 15px 18px;
    outline: none;
    border-radius: 0;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.home-form-group input {
    min-height: 48px;
    border-radius: 10px;
}

.home-form-group textarea {
    min-height: 128px;
    resize: vertical;
    border-radius: 10px;
}

.home-form-group input::placeholder,
.home-form-group textarea::placeholder {
    color: rgba(91, 82, 71, 0.72);
}

.home-form-group input:focus,
.home-form-group textarea:focus {
    border-color: var(--clay);
    background: var(--cream-card);
    box-shadow: 0 0 0 3px rgba(189, 106, 69, 0.12);
}

.home-form-submit {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--clay);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 17px 28px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home-form-submit:hover {
    background: var(--clay-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(189, 106, 69, 0.28);
}

/* responsive form */
@media(max-width: 880px) {
    .home-care-form-section {
        padding: 70px 0;
    }

    .home-care-form-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-care-form-content h2 {
        margin-bottom: 28px;
    }

    .home-care-form-content h3 {
        margin-bottom: 32px;
    }
}

@media(max-width: 600px) {
    .home-care-form-section {
        padding: 58px 0;
    }

    .wrap a svg{
        height: 50px;
    }

    .brand{
        height:65px;
    }

    .home-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-care-form-content h2 {
        font-size: 2.1rem;
    }

    .home-care-form-content h3 {
        font-size: 1.15rem;
    }

    .home-form-group label,
    .home-care-info span {
        letter-spacing: 0.24em;
        font-size: 0.68rem;
    }

    .home-form-group input,
    .home-form-group textarea {
        padding: 14px 15px;
    }

    .home-form-submit {
        padding: 16px 22px;
        font-size: 0.82rem;
    }
}
