:root {
    --ink: #182a2b;
    --clay: #526867;
    --clay-light: #879594;
    --line: #dce5e1;
    --paper: #f7f8f4;
    --panel: #e9f0eb;
    --accent: #c86f42;
    --accent-dark: #994a2d;
    --gold: #e8b35d;
    --radius: 4px;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

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

.container {
    width: min(1140px, calc(100% - 3rem));
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin: 0 0 0.6rem;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    letter-spacing: -0.04em;
    max-width: 700px;
}

h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

p {
    margin: 0 0 1rem;
    color: var(--clay);
}

.lead {
    font-size: 1.08rem;
    max-width: 540px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(247, 248, 244, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.logo-cross,
.cross-mark,
.caption-cross {
    color: var(--accent);
    font-family: Georgia, serif;
}

.logo-cross {
    font-size: 1.55rem;
    line-height: 1;
}

.logo.small .logo-text {
    font-size: 1rem;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clay);
}

.primary-nav a:hover {
    color: var(--ink);
}

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

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn span,
.text-link span {
    margin-left: 0.6rem;
    transition: transform 0.15s ease;
}

.btn:hover span,
.text-link:hover span {
    transform: translateX(3px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 0.2rem;
}

.text-link.dark {
    color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn.ghost {
    border-color: var(--line);
    color: var(--ink);
    background: transparent;
}

.btn.ghost:hover {
    border-color: var(--clay-light);
}

/* Hero */
.hero {
    padding: 5rem 0 6rem;
    background: radial-gradient(circle at 80% 0%, #f4dfbd 0, transparent 34%), var(--panel);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-visual {
    position: relative;
    min-height: 530px;
    margin-right: 1.5rem;
    border-radius: 140px 140px 4px 4px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(24, 42, 43, 0.1);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 530px;
    object-fit: cover;
    object-position: center;
}

.hero-caption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    background: rgba(247, 248, 244, 0.92);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* About */
.about {
    padding: 7rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.image-note {
    position: absolute;
    right: -2rem;
    bottom: 2rem;
    padding: 1rem 1.1rem;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
}

.about-copy p:not(.eyebrow) {
    max-width: 520px;
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--panel);
}

.section-heading {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    border-top: 3px solid var(--accent);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--ink);
    color: #e6d9d1;
}

.contact .eyebrow {
    color: #d98a6f;
}

.contact h2 {
    color: #fff;
}

.contact-grid {
    max-width: 620px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    font: inherit;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form .btn.primary {
    align-self: flex-start;
}

/* Footer */
.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-flex p {
    margin: 0.3rem 0 0;
    font-size: 0.82rem;
    color: var(--clay-light);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clay);
}

/* Responsive */
@media (max-width: 860px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 3.5rem 0 4.5rem;
    }

    .hero-visual {
        min-height: 390px;
        margin: 0 0.75rem;
    }

    .hero-visual img {
        min-height: 390px;
    }

    .about-grid {
        gap: 3rem;
    }

    .image-note {
        right: 1rem;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease;
    }

    .primary-nav.open {
        max-height: 320px;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    .primary-nav li {
        padding: 0.75rem var(--container-pad, 1.5rem);
    }
}
