:root {
    --ink: #2d332e;
    --muted: #69736c;
    --green: #4d6655;
    --green-dark: #344b3c;
    --sage: #e9efe9;
    --cream: #f7f4ed;
    --white: #ffffff;
    --line: #dce3dc;
    --shadow: 0 18px 45px rgba(36, 54, 42, 0.12);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.72;
}

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

a {
    color: var(--green-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.wrap {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--green-dark);
    line-height: 1;
}

.brand-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 29px;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--green);
}

.hero {
    padding: 78px 0 88px;
    background: linear-gradient(135deg, var(--cream), var(--sage));
}

.hero-grid,
.two-col,
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--green-dark);
    line-height: 1.12;
    font-weight: 500;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(44px, 6vw, 72px);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(34px, 4.4vw, 50px);
}

h3 {
    font-size: 26px;
}

.lead {
    max-width: 650px;
    color: #4f5951;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.button {
    display: inline-block;
    padding: 13px 23px;
    border-radius: 999px;
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.button:hover {
    background: var(--green);
}

.text-link {
    font-weight: 700;
}

.hero-image-card {
    padding: 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 26px;
    box-shadow: var(--shadow);
    /*transform: rotate(1.5deg); */
}

.hero-image-card img {
    width: 100%;
    max-height: 570px;
    object-fit: cover;
    border-radius: 18px;
}

.section {
    padding: 92px 0;
}

.section-tint {
    background: var(--sage);
}

.narrow {
    max-width: 850px;
    text-align: center;
}

.narrow p {
    max-width: 760px;
    margin-inline: auto;
}

.content-top {
    align-items: start;
}

.info-box,
.qualifications {
    margin-top: 32px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
}

.info-box p:last-child,
.qualifications ul:last-child {
    margin-bottom: 0;
}

.price {
    margin-top: 30px !important;
    font-size: 19px;
}

.price strong {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--green-dark);
    font-size: 34px;
    font-weight: 500;
}

.photo-stack {
    position: relative;
    min-height: 610px;
}

.photo-stack .portrait {
    width: min(410px, 85%);
    margin-left: auto;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.photo-stack .room {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(330px, 70%);
    border: 10px solid var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.qualifications {
    margin-top: 0;
    background: var(--sage);
}

.qualifications ul {
    margin: 0;
    padding-left: 22px;
}

.contact-section {
    background: var(--cream);
}

.contact-grid {
    align-items: start;
}

.contact-details {
    margin-top: 32px;
}

.contact-details p {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 14px;
    padding: 13px 0;
    margin: 0;
    border-bottom: 1px solid #d8d5cc;
}

.contact-details span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.map-card img {
    width: 100%;
    height: auto;
}

.site-footer {
    padding: 28px 0;
    background: var(--green-dark);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    color: var(--white);
}

@media (max-width: 820px) {
    .header-inner {
        min-height: auto;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .hero {
        padding: 58px 0 68px;
    }

    .hero-grid,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-image-card {
        max-width: 500px;
        margin-inline: auto;
        transform: none;
    }

    .section {
        padding: 68px 0;
    }

    .photo-stack {
        min-height: 530px;
        max-width: 530px;
        margin-inline: auto;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .wrap {
        width: min(100% - 28px, 1120px);
    }

    .brand-title {
        font-size: 25px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .lead {
        font-size: 18px;
    }

    .photo-stack {
        min-height: 440px;
    }

    .photo-stack .portrait {
        width: 88%;
    }

    .photo-stack .room {
        width: 68%;
        border-width: 7px;
    }

    .contact-details p {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .footer-inner {
        flex-direction: column;
    }
}
