:root {
    --gold: #b1976b;
    --gold-dark: #977f55;
    --ink: #1a1a1a;
    --text: #5a5a5a;
    --paper: #ffffff;
    --soft: #f5f5f5;
    --line: #dedbd5;
    --serif: "Source Serif Pro", Georgia, serif;
    --sans: "Roboto", Arial, sans-serif;
    --container: 1200px;
    --shadow: 0 20px 55px rgba(26, 26, 26, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .65em;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.17;
}
p { margin: 0 0 1.25em; }
h1 { font-size: clamp(2.65rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: 1.3rem; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 9px 14px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(177, 151, 107, .65); outline-offset: 3px; }

.eyebrow {
    margin-bottom: 17px;
    color: var(--gold-dark);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}
.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, border .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .55; cursor: wait; transform: none; }
.button-gold { color: var(--paper); background: var(--gold); }
.button-gold:hover { background: var(--gold-dark); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { background: var(--gold-dark); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover { color: var(--paper); background: var(--ink); }
.button-ghost { color: var(--ink); border-color: #c9c4bb; background: transparent; }
.button-ghost:hover { border-color: var(--ink); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.text-link span { color: var(--gold); font-size: 1.2rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Header */
.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 115px;
    background: transparent;
}
.site-header--solid { background: var(--ink); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 250px; max-height: 84px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 1.75vw, 31px); }
.primary-nav > a {
    position: relative;
    color: var(--paper);
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
}
.primary-nav > a:hover, .primary-nav > a.is-active { color: #d6bd8c; }
.nav-appointment { min-width: 196px; min-height: 47px; margin-left: 5px; font-size: .875rem; font-weight: 500; letter-spacing: .0125rem; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--paper); transition: transform .2s ease, opacity .2s ease; }
.flash-message { position: relative; z-index: 101; margin-top: 115px; padding: 12px 0; color: #205f38; background: #e9f7ee; font-weight: 500; }

/* Hero areas */
.home-hero {
    position: relative;
    min-height: 0;
    color: var(--paper);
    background: #292929 var(--home-hero-image, url('../images/hero-bg.jpg')) center center / cover no-repeat;
    isolation: isolate;
}
.home-hero-shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(26, 26, 26, .8);
}
.home-hero-inner { min-height: 0; display: flex; flex-direction: column; padding: 0; }
.home-hero-copy { width: 60%; margin-top: 16%; padding: 2%; }
.home-hero .eyebrow { margin-bottom: 20px; color: #c8a96f; font-size: 1rem; font-weight: 400; letter-spacing: 0; line-height: 1; text-transform: none; }
.home-hero h1 { max-width: none; margin: 0; color: var(--paper); font-size: 3rem; line-height: 1.4; text-wrap: wrap; }
.hero-contact-bar {
    position: relative;
    margin-top: 144px;
    background: transparent;
}
.hero-contact-list {
    display: grid;
    grid-template-columns: 66% 33%;
    color: var(--paper);
    border-top: 1px solid rgba(255, 255, 255, .17);
}
.hero-contact-list > div { min-width: 0; display: flex; flex-direction: column; justify-content: center; margin-bottom: 8px; padding: 20px; }
.hero-contact-list > div + div { padding-left: 20px; }
.hero-contact-label { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; color: #c8a96f; }
.hero-contact-label svg { width: 16px; height: 16px; fill: currentColor; }
.hero-contact-label span { color: inherit; font-size: 1rem; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.hero-contact-list strong, .hero-contact-list a { color: var(--paper); font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.3; overflow-wrap: anywhere; }
.page-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--ink) var(--page-hero-image, url('../images/law-image01-free-img.jpg')) center / cover no-repeat;
    isolation: isolate;
}
.page-hero::before { position: absolute; z-index: -1; inset: 0; background: rgba(15, 15, 15, .67); content: ""; }
.page-hero h1 { max-width: 850px; margin: 0; color: var(--paper); font-size: clamp(2.7rem, 5vw, 4.5rem); }
.page-hero .eyebrow { color: #d6bd8c; }

/* Home */
.home-intro { overflow: hidden; background: var(--paper); }
.home-intro.section-pad { padding: 96px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; gap: 0; }
.intro-copy { margin-right: 32px; padding: 20px; }
.home-intro .eyebrow { margin-bottom: 20px; font-size: 1rem; font-weight: 400; letter-spacing: 0; line-height: 1; text-transform: none; }
.intro-copy h2 { max-width: 550px; font-size: 2.5rem; line-height: 1.3; }
.managed-copy { font-size: 1.04rem; }
.managed-copy > :last-child { margin-bottom: 0; }
.intro-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 44px; padding-top: 38px; border-top: 1px solid #d7d3cc; }
.intro-points > div { display: grid; grid-template-columns: 42px 1fr; column-gap: 13px; }
.intro-points .line-icon { grid-row: span 2; }
.intro-points h3 { margin-bottom: 6px; font-size: 1.02rem; }
.intro-points p { margin: 0; font-size: .88rem; line-height: 1.5; }
.line-icon { color: var(--gold); font-family: var(--serif); font-size: 2.15rem; line-height: 1; }
.intro-image { min-height: 0; margin: 0; padding: 40px; background: linear-gradient(90deg, rgba(177, 151, 107, 0) 48%, rgba(177, 151, 107, .08) 48%); }
.intro-image::before { display: none; }
.intro-image img { width: 100%; height: 550px; object-fit: cover; }
.practice-section { background: var(--soft); }
.practice-section.section-pad { padding: 116px 0; }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.practice-section .section-heading { margin-bottom: 50px; }
.practice-section .section-heading .eyebrow { display: none; }
.practice-section .section-heading h2 { margin: 0; font-size: 2.5rem; line-height: 1.3; }
.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.practice-grid-home { border-color: #eaeaea; }
.practice-card { min-height: 280px; padding: 42px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background .25s ease, color .25s ease; }
.practice-grid-home .practice-card { min-height: 194px; padding: 30px; border-color: #eaeaea; background: transparent; }
.practice-card:hover { color: #d7d7d7; background: var(--ink); }
.practice-grid-home .practice-card:hover { position: relative; z-index: 1; color: var(--text); background: transparent; box-shadow: 0 0 10px rgba(0, 0, 0, .14); }
.practice-icon { display: block; margin-bottom: 30px; color: var(--gold); font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.practice-grid-home .practice-icon { margin-bottom: 15px; font-size: 2rem; }
.practice-icon-svg, .practice-icon-svg svg { width: 32px; height: 32px; }
.practice-card h3 { margin-bottom: 14px; font-size: 1.2rem; transition: color .25s ease; }
.practice-grid-home .practice-card h3 { margin-bottom: 8px; font-size: 1.2rem; line-height: 1.2; }
.practice-card:hover h3 { color: var(--paper); }
.practice-grid-home .practice-card:hover h3 { color: var(--ink); }
.practice-card p { margin: 0; font-size: .92rem; line-height: 1.65; }
.practice-grid-home .practice-card p { font-size: 1rem; line-height: 1.5; }
.practice-link-card { min-height: 194px; justify-content: flex-start; padding: 30px; border-right: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; font-size: 1rem; font-weight: 400; letter-spacing: 0; }
.practice-link-card svg { width: 15px; height: 15px; flex: 0 0 15px; fill: currentColor; transition: transform .2s ease; }
.practice-link-card:hover svg { transform: translateX(5px); }
.practice-link-card:hover { position: relative; z-index: 1; color: var(--gold-dark); background: transparent; box-shadow: 0 0 10px rgba(0, 0, 0, .14); }
.section-action { margin-top: 38px; text-align: center; }

.contact-cta { color: var(--paper); background: var(--gold); }
.contact-cta-grid { min-height: 285px; display: grid; grid-template-columns: 1fr 92px 1.15fr; align-items: center; gap: 35px; }
.contact-cta-grid > * { min-width: 0; }
.contact-cta .eyebrow { color: rgba(255, 255, 255, .72); }
.contact-cta-email { max-width: 100%; color: var(--paper); font-family: var(--serif); font-size: clamp(1.45rem, 2.5vw, 2.35rem); font-weight: 600; overflow-wrap: anywhere; }
.contact-cta-or { text-align: center; color: rgba(255, 255, 255, .72); font-family: var(--serif); font-style: italic; }
.contact-cta h2 { margin-bottom: 24px; color: var(--paper); font-size: clamp(1.7rem, 3vw, 2.7rem); }
.home-page .contact-cta { color: var(--ink); background: var(--paper); }
.home-page .contact-cta-grid { min-height: 0; display: flex; flex-direction: column; justify-content: flex-start; gap: 0; padding-top: 116px; padding-bottom: 116px; text-align: center; }
.home-page .contact-cta .eyebrow { margin-bottom: 15px; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.home-page .contact-cta-email { color: var(--ink); font-size: 2.5rem; line-height: 1.3; }
.home-page .contact-cta-or { display: block; margin: 30px 0 24px; color: #8a8a8a; text-align: center; }
.home-page .contact-cta-action h2 { margin-bottom: 22px; color: var(--ink); font-size: 2rem; line-height: 1.3; }
.home-page .contact-cta .button-light { color: var(--paper); background: var(--gold); }
.home-page .contact-cta .button-light:hover { background: var(--gold-dark); }

/* About and services */
.feature-strip { padding: 74px 0; color: #cfcfcf; background: var(--ink); }
.feature-strip-light { color: var(--text); background: var(--soft); }
.three-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.three-feature-grid article { padding: 12px 45px; }
.three-feature-grid article + article { border-left: 1px solid rgba(177, 151, 107, .32); }
.three-feature-grid .line-icon { display: block; margin-bottom: 18px; }
.three-feature-grid h2 { color: var(--paper); font-size: 1.38rem; }
.feature-strip-light h2 { color: var(--ink); }
.three-feature-grid p { margin: 0; font-size: .92rem; line-height: 1.7; }
.about-profile { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: .88fr 1fr; align-items: center; gap: 86px; }
.about-grid figure { margin: 0; position: relative; }
.about-grid figure::before { position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(177, 151, 107, .55); content: ""; }
.about-grid figure img { position: relative; z-index: 1; aspect-ratio: 4/4.35; object-fit: cover; }
.about-grid h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
.large-copy { margin-bottom: 34px; font-size: 1.05rem; }
.why-lawyer { background: var(--paper); }
.narrow-copy { max-width: 1030px; }
.narrow-copy h2 { max-width: 690px; }
.two-column-copy { columns: 2; column-gap: 70px; }
.two-column-copy p { break-inside: avoid; }
.all-practices { padding-top: 90px; background: var(--soft); }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 90px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; font-family: var(--sans); }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 25px 0; border: 0; color: var(--ink); background: transparent; font-weight: 600; text-align: left; cursor: pointer; }
.accordion-mark { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }
.accordion-mark::before, .accordion-mark::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 1px; background: var(--gold-dark); content: ""; transition: transform .2s ease; }
.accordion-mark::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] .accordion-mark::after { transform: rotate(0); }
.accordion-panel { padding: 0 48px 24px 0; }
.accordion-panel p { margin: 0; }

/* Forms and contact */
.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.contact-details h2 { margin-bottom: 45px; }
.contact-detail-block { padding: 26px 0; border-top: 1px solid #d7d3cc; }
.contact-detail-block h3 { font-size: 1.12rem; }
.contact-detail-block p { margin-bottom: 7px; }
.contact-detail-block a:hover { color: var(--gold-dark); }
.working-hours { margin: 0; }
.working-hours div { display: flex; justify-content: space-between; gap: 30px; }
.working-hours dt { color: var(--ink); }
.working-hours dd { margin: 0; }
.contact-form-card { padding: 52px; background: var(--paper); box-shadow: var(--shadow); }
.contact-form-card > h2 { margin-bottom: 32px; }
.site-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: grid; gap: 7px; }
.form-field label, .field-label { color: var(--ink); font-size: .83rem; font-weight: 600; }
.form-field label span { color: var(--gold-dark); }
.form-field input, .form-field textarea, .newsletter-form input {
    width: 100%;
    border: 1px solid #d2cec7;
    border-radius: 0;
    color: var(--ink);
    background: var(--paper);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}
.form-field input { height: 50px; padding: 10px 13px; }
.form-field textarea { resize: vertical; padding: 12px 13px; }
.form-field input:focus, .form-field textarea:focus, .newsletter-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(177, 151, 107, .12); }
.honeypot-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 22px; padding: 14px 17px; font-size: .9rem; }
.form-alert ul { margin: 7px 0 0; padding-left: 20px; }
.form-alert-error { color: #7d2424; border: 1px solid #e8b5b5; background: #fff3f3; }
.social-links { display: flex; gap: 9px; margin-top: 18px; }
.social-links a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; color: var(--paper); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.social-links a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.social-links-dark a { color: var(--ink); border-color: #cbc5bb; }

/* Blog */
.blog-section { background: var(--soft); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { display: flex; flex-direction: column; background: var(--paper); box-shadow: 0 10px 35px rgba(26, 26, 26, .07); }
.post-image { overflow: hidden; }
.post-image img { width: 100%; aspect-ratio: 1.5/1; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-image img { transform: scale(1.035); }
.post-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 30px; }
.post-meta { margin-bottom: 14px; color: var(--gold-dark); font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.post-card h2 { font-size: 1.48rem; }
.post-card h2 a:hover { color: var(--gold-dark); }
.post-card-body > p:not(.post-meta) { font-size: .91rem; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.post-card .text-link { margin-top: auto; }
.newsletter-section { padding: 60px 0; color: var(--paper); background: var(--ink); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.newsletter-inner h2 { margin: 0; color: var(--paper); }
.newsletter-inner .eyebrow { color: #d6bd8c; }
.newsletter-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.newsletter-form input { min-width: 0; flex: 1; height: 50px; padding: 10px 15px; border-color: #454545; color: var(--paper); background: #292929; }
.newsletter-form .cf-turnstile, .newsletter-errors { grid-column: 1 / -1; margin-top: 12px; }
.newsletter-errors { color: #ffd5d5; font-size: .86rem; }
.single-post { background: var(--paper); }
.post-header { min-height: 430px; display: flex; align-items: center; padding-top: 100px; color: #cfcfcf; background: var(--ink); }
.post-header-inner { max-width: 940px; padding-block: 76px; text-align: center; }
.post-header .eyebrow { color: #d6bd8c; }
.post-header h1 { color: var(--paper); font-size: clamp(2.5rem, 5vw, 4.4rem); }
.post-header p:last-child { margin: 0; font-size: .85rem; }
.post-featured-wrap { margin-top: -70px; position: relative; z-index: 2; }
.post-featured { width: 100%; max-height: 610px; object-fit: cover; box-shadow: var(--shadow); }
.article-container { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 80px; padding-top: 90px; padding-bottom: 110px; }
.article-content { color: #444; font-size: 1.04rem; line-height: 1.85; }
.article-content h2, .article-content h3, .article-content h4, .article-content h5 { margin-top: 1.55em; }
.article-content h3 { font-size: 1.72rem; }
.article-content h5 { font-size: 1.2rem; }
.article-content ul, .article-content ol { margin: 0 0 1.4em; padding-left: 24px; }
.article-content li { margin-bottom: .5em; }
.article-content blockquote { margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--gold); background: var(--soft); }
.article-content blockquote p { margin: 0; }
.article-content hr { height: 1px; margin: 38px 0; border: 0; background: var(--line); }
.article-sidebar { position: sticky; top: 35px; padding: 32px; border-top: 3px solid var(--gold); background: var(--soft); }
.article-sidebar h2 { font-size: 1.6rem; }
.article-sidebar .button { width: 100%; margin: 8px 0 25px; }

/* Appointment wizard */
.appointment-page { background: var(--soft); }
.appointment-page-card { max-width: 1040px; padding: 0; background: var(--paper); box-shadow: var(--shadow); }
.appointment-wizard { color: var(--text); background: var(--paper); }
.wizard-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-bottom: 1px solid var(--line); background: #faf9f7; }
.wizard-progress li { min-height: 82px; display: flex; align-items: center; justify-content: center; gap: 11px; color: #999; border-right: 1px solid var(--line); }
.wizard-progress li:last-child { border-right: 0; }
.wizard-progress span { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #bbb; border-radius: 50%; font-size: .78rem; }
.wizard-progress strong { font-size: .8rem; letter-spacing: .03em; }
.wizard-progress li.is-active, .wizard-progress li.is-complete { color: var(--ink); }
.wizard-progress li.is-active span { color: var(--paper); border-color: var(--gold); background: var(--gold); }
.wizard-progress li.is-complete span { color: var(--paper); border-color: var(--ink); background: var(--ink); }
.wizard-step { min-height: 500px; padding: 48px 54px 42px; }
.wizard-heading { max-width: 650px; margin-bottom: 32px; }
.wizard-heading h2 { margin-bottom: 10px; font-size: 2.2rem; }
.wizard-heading [data-wizard-step-heading]:focus { outline: 0; }
.wizard-heading > p:last-child { margin: 0; font-size: .92rem; }
.service-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-choice { position: relative; min-height: 205px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); cursor: pointer; transition: border .2s ease, background .2s ease, box-shadow .2s ease; }
.service-choice:hover { border-color: var(--gold); }
.service-choice:has(input:checked) { border-color: var(--gold); background: #fbf9f5; box-shadow: inset 0 0 0 1px var(--gold); }
.service-choice input { position: absolute; top: 18px; right: 18px; width: 18px; height: 18px; accent-color: var(--gold-dark); }
.service-choice-icon { margin-bottom: 17px; color: var(--gold); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.service-choice strong { margin-bottom: 7px; color: var(--ink); font-family: var(--serif); font-size: 1.22rem; }
.service-choice small { line-height: 1.55; }
.wizard-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.wizard-actions-end { justify-content: flex-end; }
.appointment-date-grid { display: grid; grid-template-columns: minmax(360px, 1.15fr) minmax(230px, .85fr); align-items: start; gap: 32px; }
.appointment-calendar-field { min-width: 0; }
.appointment-calendar {
    min-width: 0;
    padding: 18px;
    border: 1px solid #dedbd5;
    background: var(--paper);
}
.appointment-calendar-header { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 12px; }
.appointment-calendar-header h3 { margin: 0; font-family: var(--sans); font-size: 1.22rem; font-weight: 500; text-transform: capitalize; }
.appointment-calendar-nav { display: flex; gap: 3px; }
.appointment-calendar-nav button {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
}
.appointment-calendar-nav button:hover:not(:disabled) { color: var(--gold-dark); background: #f7f4ee; }
.appointment-calendar-nav button:disabled { color: #c7c5c1; cursor: not-allowed; }
.appointment-calendar-weekdays, .appointment-calendar-week { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.appointment-calendar-weekdays { margin-bottom: 5px; color: #858585; background: var(--soft); font-size: .72rem; font-weight: 500; text-align: center; }
.appointment-calendar-weekdays span { padding: 4px 1px; }
.appointment-calendar-cell { min-width: 0; padding: 1px; }
.appointment-calendar-cell.is-empty { min-height: 43px; }
.appointment-calendar-day {
    position: relative;
    width: 100%;
    min-height: 43px;
    padding: 5px 2px 11px;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: .88rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}
.appointment-calendar-capacity {
    position: absolute;
    right: 13%;
    bottom: 4px;
    left: 13%;
    height: 4px;
    background: #d4d4d4;
    overflow: hidden;
}
.appointment-calendar-capacity-fill { height: 100%; display: block; background: #d4d4d4; transition: width .18s ease; }
.appointment-calendar-day.is-available .appointment-calendar-capacity-fill { background: #72ca75; }
.appointment-calendar-day.is-limited .appointment-calendar-capacity-fill { background: #e4a13d; }
.appointment-calendar-day.is-critical .appointment-calendar-capacity-fill { background: #d65c58; }
.appointment-calendar-day.is-unavailable .appointment-calendar-capacity-fill { background: #d4d4d4; }
.appointment-calendar-day:hover:not(:disabled) { background: #f8f5ef; }
.appointment-calendar-day.is-selected { color: var(--ink); background: #fff4ca; box-shadow: inset 0 0 0 1px #e7cd86; }
.appointment-calendar-day:disabled { color: #aaa; cursor: not-allowed; }
.appointment-calendar[aria-busy="true"] .appointment-calendar-grid { opacity: .72; }
.appointment-calendar-loading, .appointment-calendar-error {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    color: #777;
    background: var(--soft);
    font-size: .82rem;
    text-align: center;
}
.appointment-calendar-error { flex-direction: column; gap: 11px; color: #7d2424; }
.appointment-calendar-error button { padding: 6px 10px; border: 1px solid #c8bda8; color: var(--ink); background: var(--paper); font-size: .75rem; cursor: pointer; }
.appointment-calendar-legend { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: 13px; color: #777; font-size: .67rem; }
.appointment-calendar-legend span { display: inline-flex; align-items: center; gap: 5px; }
.appointment-calendar-legend i { width: 17px; height: 4px; display: inline-block; background: #d4d4d4; }
.appointment-calendar-legend i.is-available { background: #72ca75; }
.appointment-calendar-legend i.is-limited { background: #e4a13d; }
.appointment-calendar-legend i.is-critical { background: #d65c58; }
.appointment-calendar-legend i.is-unavailable { background: #d4d4d4; }
.slot-picker-wrap { display: grid; gap: 8px; }
.slot-placeholder { min-height: 88px; display: flex; align-items: center; justify-content: center; padding: 15px; border: 1px dashed #ccc5ba; color: #888; background: var(--soft); font-size: .88rem; text-align: center; }
.slot-placeholder[hidden] { display: none; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.slot-option { position: relative; }
.slot-option input { position: absolute; opacity: 0; pointer-events: none; }
.slot-option span { display: block; padding: 10px; border: 1px solid #cbc5bb; color: var(--ink); background: var(--paper); font-size: .86rem; font-weight: 600; text-align: center; cursor: pointer; }
.slot-option input:checked + span { color: var(--paper); border-color: var(--gold); background: var(--gold); }
.slot-option input:focus-visible + span { outline: 3px solid rgba(177, 151, 107, .5); outline-offset: 2px; }
.check-field { display: flex; align-items: flex-start; gap: 11px; margin-top: 7px; color: var(--text); font-size: .83rem; cursor: pointer; }
.check-field input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 4px; accent-color: var(--gold-dark); }
.wizard-alert { margin: 22px 54px 0; padding: 12px 15px; color: #7d2424; border: 1px solid #e8b5b5; background: #fff3f3; font-size: .88rem; }
.appointment-modal[hidden] { display: none; }
.appointment-modal { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; padding: 20px; }
.appointment-modal-backdrop { position: absolute; inset: 0; background: rgba(16, 16, 16, .72); backdrop-filter: blur(3px); }
.appointment-dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: calc(100vh - 40px);
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 26px 90px rgba(0, 0, 0, .32);
}
.appointment-dialog-side {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 26px 27px;
    color: #5f6675;
    border-right: 1px solid #e3e6ec;
    background: #f4f5f7;
}
.appointment-dialog-side span { color: #8b93a3; font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.appointment-dialog-side h2 { margin: 7px 0 13px; color: #1f222b; font-family: var(--sans); font-size: 1.55rem; font-weight: 600; }
.appointment-dialog-side p { margin: 0; font-size: .8rem; line-height: 1.55; }
.appointment-dialog-help { display: grid; gap: 4px; }
.appointment-dialog-help a { color: #3f4654; font-size: .72rem; overflow-wrap: anywhere; }
.appointment-dialog-help a:hover { color: var(--gold-dark); }
.appointment-dialog-main { position: relative; min-width: 0; max-height: calc(100vh - 40px); overflow: auto; }
.appointment-dialog-main .appointment-wizard { min-height: 315px; }
.appointment-modal .wizard-progress {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.appointment-modal .wizard-step { min-height: 315px; padding: 28px 31px 24px; }
.appointment-modal .wizard-heading { margin-bottom: 17px; padding-right: 25px; }
.appointment-modal .wizard-heading h2 { margin: 0; color: #14161d; font-family: var(--sans); font-size: 1.22rem; font-weight: 600; }
.appointment-modal [data-wizard-step="1"] .wizard-heading > :not(h2) { display: none; }
.appointment-modal .service-choice-grid { grid-template-columns: 1fr; gap: 9px; }
.appointment-modal .service-choice {
    min-height: 72px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    padding: 12px 15px;
    border-color: #e1e4e9;
}
.appointment-modal .service-choice-icon { grid-row: 1 / 3; margin: 0; color: #778092; font-size: 1.55rem; text-align: center; }
.appointment-modal .service-choice strong { grid-column: 2; margin: 0; font-family: var(--sans); font-size: .9rem; }
.appointment-modal .service-choice small { grid-column: 2; color: #7c8493; font-size: .72rem; line-height: 1.35; }
.appointment-modal .service-choice input { top: 50%; right: 14px; width: 15px; height: 15px; transform: translateY(-50%); }
.appointment-modal .wizard-actions { margin-top: 16px; padding-top: 0; border: 0; }
.appointment-modal .wizard-actions .button { min-height: 39px; padding: 10px 17px; font-size: .67rem; }
.appointment-modal .wizard-alert { margin: 14px 31px 0; }
.appointment-modal .appointment-date-grid { grid-template-columns: minmax(320px, 1.2fr) minmax(190px, .8fr); gap: 22px; }
.appointment-modal .slot-grid { grid-template-columns: repeat(2, 1fr); }
.appointment-modal .form-field input { height: 45px; }
.modal-close { position: absolute; z-index: 3; top: 8px; right: 8px; width: 34px; height: 34px; padding: 0; border: 0; color: #697181; background: transparent; font-size: 1.6rem; font-weight: 300; line-height: 1; cursor: pointer; }
.modal-close:hover { color: #14161d; }
.thank-you-section { min-height: 690px; display: grid; place-items: center; padding: 190px 0 90px; background: var(--soft); }
.thank-you-card { max-width: 780px; padding: 64px; background: var(--paper); box-shadow: var(--shadow); text-align: center; }
.success-mark { width: 74px; height: 74px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 26px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); font-family: var(--serif); font-size: 2.4rem; }
.thank-you-card h1 { font-size: clamp(2.25rem, 4vw, 3.6rem); }
.appointment-summary { max-width: 570px; margin: 35px auto; border-top: 1px solid var(--line); }
.appointment-summary div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--line); text-align: left; }
.appointment-summary dt { color: #888; font-size: .82rem; }
.appointment-summary dd { margin: 0; color: var(--ink); font-weight: 500; overflow-wrap: anywhere; }
.info-note { padding: 15px; color: #6b552f; background: #fbf7ed; font-size: .9rem; }

/* Empty pages */
.empty-page { min-height: 300px; }

/* Footer */
.site-footer { color: #bdbdbd; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 80px; padding-top: 60px; padding-bottom: 65px; }
.footer-brand img { width: min(300px, 100%); opacity: 1; }
.footer-contact { width: min(100%, 320px); justify-self: end; }
.footer-contact a:hover { color: #d6bd8c; }
.footer-contact h2 { color: var(--paper); font-size: 1.4rem; }
.footer-contact p { margin-bottom: 7px; font-size: .86rem; }
.footer-bottom { min-height: 80px; display: flex; align-items: center; justify-content: center; padding: 20px 0; border-top: 1px solid #373737; text-align: center; }
.footer-bottom p { margin: 0; font-size: .78rem; }

@media (max-width: 1100px) {
    .brand img { width: 190px; }
    .primary-nav { gap: 13px; }
    .primary-nav > a { font-size: .88rem; }
    .nav-appointment { min-width: 170px; padding-inline: 18px; }
    .practice-grid { grid-template-columns: repeat(3, 1fr); }
    .intro-grid { gap: 52px; }
    .article-container { gap: 50px; }
}

@media (max-width: 922px) {
    .container { width: min(var(--container), calc(100% - 40px)); }
    .section-pad { padding: 78px 0; }
    .site-header { height: 88px; }
    .flash-message { margin-top: 88px; }
    .brand img { width: 190px; max-height: 66px; }
    .menu-toggle { display: block; position: relative; z-index: 2; }
    .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
    .primary-nav {
        position: absolute;
        top: 88px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 20px;
        border-top: 1px solid var(--line);
        background: var(--paper);
        box-shadow: 0 22px 35px rgba(0, 0, 0, .12);
    }
    .primary-nav.is-open { display: grid; }
    .primary-nav > a { padding: 9px 7px; color: var(--ink); }
    .primary-nav > a:hover, .primary-nav > a.is-active { color: var(--gold-dark); }
    .primary-nav > a::after { display: none; }
    .nav-appointment { margin: 10px 0 0; }
    .home-hero, .home-hero-inner { min-height: 0; }
    .home-hero-inner { justify-content: flex-start; padding: 0; }
    .home-hero-copy { width: 82%; margin-top: 150px; padding: 20px; }
    .home-hero h1 { font-size: 2.5rem; line-height: 1.4; }
    .hero-contact-bar { margin-top: 100px; }
    .hero-contact-list { grid-template-columns: 60% 40%; }
    .page-hero { min-height: 390px; padding-top: 88px; }
    .intro-grid, .about-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }
    .intro-grid { gap: 0; }
    .home-intro.section-pad, .practice-section.section-pad { padding: 78px 0; }
    .intro-copy { margin-right: 0; padding-top: 0; }
    .intro-copy h2 { font-size: 2rem; }
    .intro-image { display: none; }
    .about-grid, .contact-grid { gap: 60px; }
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .practice-section .section-heading { margin-bottom: 44px; }
    .practice-section .section-heading h2 { font-size: 2rem; }
    .contact-cta-grid { min-height: 330px; grid-template-columns: 1fr 40px 1fr; }
    .home-page .contact-cta-grid { min-height: 430px; padding-top: 70px; padding-bottom: 70px; }
    .home-page .contact-cta-email { font-size: 2rem; }
    .home-page .contact-cta-action h2 { font-size: 1.6rem; }
    .three-feature-grid { grid-template-columns: 1fr; }
    .three-feature-grid article { padding: 28px 0; }
    .three-feature-grid article + article { border-top: 1px solid rgba(177, 151, 107, .32); border-left: 0; }
    .two-column-copy { columns: 1; }
    .faq-layout { gap: 35px; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .article-container { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1.2fr .8fr; gap: 55px; }
    .appointment-dialog { width: min(780px, 100%); }
    .appointment-date-grid, .appointment-modal .appointment-date-grid { grid-template-columns: 1fr; }
    .appointment-modal .slot-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .container { width: min(var(--container), calc(100% - 30px)); }
    .section-pad { padding: 62px 0; }
    .site-header { height: 80px; }
    .flash-message { margin-top: 80px; }
    .primary-nav { top: 80px; }
    .brand img { width: 165px; }
    .home-hero, .home-hero-inner { min-height: 0; }
    .home-hero-inner { justify-content: flex-start; padding: 0; }
    .home-hero-copy { width: 100%; margin-top: 120px; padding: 15px; }
    .home-hero h1 { font-size: 2rem; line-height: 1.4; text-wrap: wrap; }
    .hero-contact-bar { margin-top: 80px; }
    .hero-contact-list { grid-template-columns: 1fr; }
    .hero-contact-list > div { min-height: auto; padding: 12px 0; }
    .hero-contact-list > div + div { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; }
    .page-hero { min-height: 330px; padding-top: 80px; }
    .page-hero h1 { font-size: 2.6rem; }
    .intro-copy h2 { font-size: 1.8125rem; }
    .practice-section .section-heading h2 { font-size: 1.8rem; }
    .intro-points, .practice-grid, .blog-grid, .newsletter-inner, .service-choice-grid, .form-row, .appointment-date-grid { grid-template-columns: 1fr; }
    .practice-card { min-height: 225px; padding: 32px 25px; }
    .contact-cta-grid { display: block; padding-top: 55px; padding-bottom: 55px; }
    .contact-cta-or { display: block; margin: 25px 0; text-align: left; }
    .home-page .contact-cta-grid { min-height: 0; display: flex; padding-top: 62px; padding-bottom: 62px; }
    .home-page .contact-cta-or { margin: 25px 0; text-align: center; }
    .home-page .contact-cta-email { font-size: 1.8125rem; overflow-wrap: anywhere; }
    .home-page .contact-cta-action h2 { font-size: 1.6rem; }
    .about-grid { gap: 48px; }
    .about-grid figure::before { inset: 15px -10px -15px 12px; }
    .contact-form-card { padding: 30px 22px; }
    .newsletter-inner { gap: 25px; }
    .newsletter-form { grid-template-columns: 1fr; gap: 10px; }
    .newsletter-form .cf-turnstile, .newsletter-errors { grid-column: 1; margin-top: 0; }
    .post-header { min-height: 380px; padding-top: 80px; }
    .post-featured-wrap { width: calc(100% - 30px); margin-top: -35px; }
    .article-container { padding-top: 55px; padding-bottom: 70px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 55px; padding-bottom: 55px; text-align: center; }
    .footer-brand img { width: min(420px, 100%); margin-inline: auto; }
    .footer-contact { justify-self: center; }
    .appointment-modal { padding: 0; align-items: end; }
    .appointment-dialog { width: 100%; max-height: 100vh; display: block; overflow: auto; }
    .appointment-dialog-side { min-height: 0; padding: 22px 48px 19px 22px; border-right: 0; border-bottom: 1px solid #e3e6ec; }
    .appointment-dialog-side h2 { margin: 4px 0 0; font-size: 1.25rem; }
    .appointment-dialog-side p { display: none; }
    .appointment-dialog-help { margin-top: 13px; }
    .appointment-dialog-main { max-height: none; overflow: visible; }
    .appointment-dialog-main .appointment-wizard { min-height: 0; }
    .wizard-progress li { min-height: 66px; flex-direction: column; gap: 2px; }
    .wizard-progress strong { font-size: .63rem; }
    .wizard-progress span { width: 24px; height: 24px; }
    .wizard-step { min-height: auto; padding: 32px 20px 26px; }
    .wizard-heading h2 { font-size: 1.8rem; }
    .wizard-alert { margin: 15px 20px 0; }
    .appointment-date-grid { gap: 24px; }
    .appointment-calendar { padding: 12px; }
    .appointment-calendar-header { margin-bottom: 8px; }
    .appointment-calendar-day { min-height: 41px; font-size: .84rem; }
    .appointment-calendar-cell.is-empty { min-height: 41px; }
    .appointment-calendar-legend { gap: 7px 10px; }
    .slot-grid { grid-template-columns: repeat(3, 1fr); }
    .wizard-actions { align-items: stretch; }
    .wizard-actions .button { flex: 1; padding-inline: 12px; }
    .appointment-modal .wizard-step { min-height: auto; padding: 25px 20px 22px; }
    .appointment-modal .wizard-heading { padding-right: 22px; }
    .appointment-modal .wizard-heading h2 { font-size: 1.12rem; }
    .appointment-modal .service-choice { grid-template-columns: 34px minmax(0, 1fr); padding: 11px 13px; }
    .appointment-modal .service-choice-icon { grid-row: 1 / 3; }
    .appointment-modal .wizard-alert { margin: 13px 20px 0; }
    .appointment-modal .appointment-date-grid { grid-template-columns: 1fr; }
    .thank-you-card { width: calc(100% - 30px); padding: 42px 22px; }
    .appointment-summary div { grid-template-columns: 100px 1fr; }
}

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