:root {
    --ink: #171714;
    --ink-soft: #4b4b45;
    --paper: #f7f4ee;
    --paper-2: #ece8df;
    --white: #ffffff;
    --accent: #d8b36a;
    --accent-deep: #9d7a39;
    --line: rgba(23, 23, 20, .14);
    --shadow: 0 22px 60px rgba(22, 20, 15, .12);
    --radius: 18px;
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Lato', system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 400;
    line-height: 1.08;
    margin: 0 0 .65em;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.35rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.15em; }

.eyebrow {
    margin: 0 0 16px;
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, .text-link:focus-visible, .service-card:focus-visible, .primary-nav a:focus-visible, .brand:focus-visible {
    outline: 3px solid #f4c86e;
    outline-offset: 4px;
}
.btn-primary { background: var(--accent); color: #171714; }
.btn-primary:hover { background: #e3c179; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2d2d29; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: #f3efe7; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(0,0,0,.12); }
.btn-ghost:hover { background: rgba(0,0,0,.28); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}
.light-link { color: var(--white); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 244, 238, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.45rem;
}
.brand-copy { display: grid; line-height: 1.18; }
.brand-copy strong { font-family: 'Marcellus', Georgia, serif; font-size: 1.15rem; font-weight: 400; }
.brand-copy small { font-size: .68rem; color: var(--ink-soft); }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.primary-nav a {
    text-decoration: none;
    font-size: .92rem;
    font-weight: 700;
    position: relative;
}
.primary-nav a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: var(--accent-deep);
}
.primary-nav .nav-book {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
}
.primary-nav .nav-book::after { display: none; }
.menu-toggle { display: none; }

.hero {
    min-height: min(820px, calc(100vh - 82px));
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #282824;
    color: var(--white);
}
.hero-media, .hero-media img, .hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-media img { object-fit: cover; object-position: center center; }
.hero-shade {
    background: linear-gradient(90deg, rgba(8,8,7,.78) 0%, rgba(8,8,7,.52) 44%, rgba(8,8,7,.08) 78%), linear-gradient(0deg, rgba(8,8,7,.48), transparent 45%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 110px 140px;
}
.hero .eyebrow { color: #f2d79f; }
.hero h1 { max-width: 850px; font-size: clamp(3.1rem, 7vw, 4.35rem); }
.hero-lead { max-width: 620px; font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-info {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    display: flex;
    gap: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,.82);
}

.section { padding: 110px 0; }
.section-muted { background: var(--paper-2); }
.section-intro { background: var(--white); }
.split-heading, .two-column-copy {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}
.split-heading h2, .two-column-copy h2 { max-width: 720px; }
.prose { color: var(--ink-soft); font-size: 1.08rem; }
.prose-large { color: var(--ink-soft); font-size: 1.08rem; }
.prose-large h2 { color: var(--ink); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 38px;
}
.section-head h2 { max-width: 780px; margin-bottom: 0; }

.section-services { background: var(--paper); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.service-card {
    min-height: 330px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: background-color .18s ease, transform .18s ease;
}
.service-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 { font-size: 1.6rem; margin-top: 34px; }
.service-card p { color: var(--ink-soft); }
.service-card strong { margin-top: auto; font-size: 1.35rem; }
.service-number { font-size: .75rem; font-weight: 900; color: var(--accent-deep); }

.feature-band { background: #caa45b; }
.feature-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.feature-stat {
    border-right: 1px solid rgba(23,23,20,.3);
    padding-right: 60px;
}
.feature-stat span { display: block; font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.feature-stat strong { display: block; font-family: 'Marcellus', Georgia, serif; font-size: clamp(4rem, 10vw, 7rem); line-height: 1; font-weight: 400; margin: 12px 0 22px; }
.feature-stat p { max-width: 360px; }
.feature-copy h2 { max-width: 700px; }
.feature-copy .eyebrow { color: #4f3a14; }

.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card {
    min-height: 190px;
    border: 1px solid var(--line);
    padding: 24px;
    background: var(--paper);
}
.team-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-family: 'Marcellus', Georgia, serif;
    margin-bottom: 28px;
}
.team-card h3 { margin-bottom: 6px; font-size: 1.5rem; }
.team-card p { margin: 0; color: var(--ink-soft); }

.contact-strip { background: #22221f; color: var(--white); }
.contact-strip .eyebrow { color: #f2d79f; }
.contact-strip-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.contact-strip h2 { max-width: 700px; margin-bottom: 0; }
.contact-strip-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.page-hero {
    background: #20201d;
    color: var(--white);
    padding: 120px 0 90px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    right: -90px;
    top: -180px;
}
.page-hero .eyebrow { color: #f2d79f; }
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .55fr;
    gap: 70px;
    align-items: end;
    position: relative;
    z-index: 2;
}
.page-lead { max-width: 760px; font-size: 1.18rem; color: rgba(255,255,255,.8); }
.page-hero-note {
    border-left: 1px solid rgba(255,255,255,.28);
    padding-left: 26px;
    display: grid;
    gap: 10px;
    color: rgba(255,255,255,.78);
}
.page-hero-note strong { color: var(--white); font-family: 'Marcellus', Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.page-hero-note .btn { margin-top: 8px; justify-self: start; }

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; border-radius: 2px; box-shadow: var(--shadow); }
.image-caption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255,255,255,.92);
    padding: 9px 13px;
    font-size: .78rem;
    font-weight: 900;
}

.pricing-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.pricing-intro { position: sticky; top: 120px; }
.pricing-intro h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.price-panel, .price-group { background: var(--white); border: 1px solid var(--line); }
.price-row {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row span { color: #34342f; }
.price-row strong { white-space: nowrap; }
.price-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.price-group h3 { font-size: 1.35rem; padding: 22px; margin: 0; background: #262622; color: var(--white); }
.pricing-head { margin-bottom: 32px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-main h2 { max-width: 580px; }
.contact-main > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; max-width: 600px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-card { min-height: 190px; padding: 26px; border: 1px solid var(--line); background: var(--white); }
.contact-card span { display: block; font-size: .75rem; text-transform: uppercase; font-weight: 900; color: var(--accent-deep); margin-bottom: 28px; }
.contact-card h3 { font-size: 1.25rem; line-height: 1.3; margin: 0; overflow-wrap: anywhere; }
.contact-card h3 a { text-underline-offset: 4px; }
.not-found-hero { min-height: 520px; display: flex; align-items: center; }
.compact-page-hero { position: relative; z-index: 2; }
.compact-page-hero .btn { margin-top: 16px; }

.site-footer { background: #11110f; color: rgba(255,255,255,.78); padding: 90px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr .8fr; gap: 52px; }
.footer-grid h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 3rem); max-width: 700px; }
.footer-grid h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.footer-grid a { color: var(--white); text-underline-offset: 4px; }
.footer-eyebrow { color: #e7c886; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 70px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.78); }

@media (max-width: 980px) {
    .menu-toggle {
        width: 46px;
        height: 46px;
        border: 0;
        background: transparent;
        display: grid;
        place-content: center;
        gap: 5px;
        cursor: pointer;
    }
    .menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); display: block; }
    .primary-nav {
        position: fixed;
        inset: 82px 0 auto 0;
        padding: 26px 20px 34px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 20px 38px rgba(0,0,0,.12);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
    .primary-nav a[aria-current="page"]::after { display: none; }
    .primary-nav .nav-book { margin-top: 14px; text-align: center; border: 0; }
    .hero-info { left: 20px; right: 20px; justify-content: space-between; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .about-grid, .pricing-layout, .contact-grid { grid-template-columns: 1fr; }
    .feature-stat { border-right: 0; border-bottom: 1px solid rgba(23,23,20,.3); padding: 0 0 42px; }
    .pricing-intro { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 72px; }
    .primary-nav { inset: 72px 0 auto 0; }
    .brand-copy small { display: none; }
    .hero { min-height: 700px; }
    .hero-content { padding-block: 95px 145px; }
    .hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; }
    .hero-info { flex-direction: column; gap: 4px; bottom: 20px; font-size: .76rem; }
    .section { padding: 76px 0; }
    .split-heading, .two-column-copy, .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .service-grid { grid-template-columns: 1fr; border-left: 0; }
    .service-card { min-height: 250px; border-left: 1px solid var(--line); }
    .feature-grid { gap: 44px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-strip-inner { align-items: flex-start; flex-direction: column; }
    .page-hero { padding: 90px 0 65px; }
    .page-hero h1 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
    .page-hero-note { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding: 20px 0 0; }
    .price-groups { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
    .brand-copy strong { font-size: 1rem; }
    .brand-mark { width: 38px; height: 38px; }
    .hero h1, .page-hero h1 { overflow-wrap: anywhere; }
    .team-grid { grid-template-columns: 1fr; }
    .price-row { padding: 16px; gap: 16px; }
    .price-row span { min-width: 0; overflow-wrap: anywhere; }
    .price-row strong { font-size: .95rem; }
    .btn { width: 100%; }
    .contact-strip-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
