:root {
    --c-text: #3a3a3a;
    --c-muted: #6b6b6b;
    --c-bg: #ffffff;
    --c-bg-soft: #fafafa;
    --c-bg-accent: #f6f1eb;
    --c-accent: #ff3a6f;
    --c-accent-dark: #d12c5a;
    --c-secondary: #85acc0;
    --c-border: #eeeeee;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --radius: 8px;
    --max-w: 1140px;
    --max-w-narrow: 760px;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-dark); text-decoration: underline; }
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.2;
    margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.container.narrow { max-width: var(--max-w-narrow); }
.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85em 2em;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}
.btn-primary {
    background: var(--c-accent);
    color: #fff !important;
}
.btn-primary:hover {
    background: var(--c-accent-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--c-border);
    z-index: 50;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 1rem;
}
.brand img { height: 48px; width: auto; }

.primary-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav a {
    color: var(--c-text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4em 0;
    border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--c-accent); border-bottom-color: var(--c-accent); }

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px; background: var(--c-text); margin: 5px 0;
    transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--c-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }
    .primary-nav.open { max-height: 600px; }
    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 12px 4%;
    }
    .primary-nav li { border-bottom: 1px solid var(--c-border); }
    .primary-nav li:last-child { border-bottom: 0; }
    .primary-nav a { display: block; padding: 12px 0; }
}

/* Hero */
.hero {
    background: linear-gradient(180deg, #fafafa 0%, var(--c-bg-accent) 100%);
    padding: clamp(2rem, 6vw, 4.5rem) 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}
.hero-copy h1 { margin-bottom: 1rem; }
.hero-copy .lead {
    color: var(--c-muted);
    font-size: 1.15rem;
    margin: 0 0 1.6rem;
    max-width: 36ch;
}
.hero-photo img {
    width: 100%;
    max-width: 460px;
    height: auto;
    margin-left: auto;
    margin-right: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
@media (max-width: 760px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .hero-photo img { margin: 0 auto; max-width: 360px; }
}

.divider-img {
    display: block;
    margin: 0 auto 1rem;
    width: 120px;
    height: auto;
    opacity: 0.95;
}

/* Page hero band (subpages) */
.page-hero {
    background: linear-gradient(180deg, #fafafa 0%, var(--c-bg-accent) 100%);
    padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero .lead {
    color: var(--c-muted);
    font-size: 1.1rem;
    max-width: 56ch;
    margin: 0 auto;
}

/* Prose styling for subpage content */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose ul, .prose ol { margin: 0 0 1rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose dl { margin: 0 0 1rem; }
.prose dt { font-family: var(--font-head); font-size: 1.1rem; margin-top: 1.2rem; }
.prose dd { margin: 0.3rem 0 1rem; color: var(--c-muted); }
.prose a { color: var(--c-accent); }

.contact-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.6rem 1.8rem;
    box-shadow: var(--shadow-sm);
    margin: 1.5rem 0;
}
.contact-card strong { font-family: var(--font-head); }
.contact-card a { display: inline-block; margin-right: 1rem; }

/* Sections */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-light { background: var(--c-bg); }
.section-accent { background: var(--c-bg-accent); }
.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-head .lead {
    max-width: 56ch;
    margin: 0.6rem auto 0;
    color: var(--c-muted);
}

/* Offerings */
.offerings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 880px) { .offerings { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .offerings { grid-template-columns: 1fr; } }
.card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 0.8rem;
    display: block;
}
.card h3 { margin: 0 0 0.5rem; }
.card p { color: var(--c-muted); margin: 0; font-size: 0.96rem; }

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
    margin: 0;
    background: #fff;
    border-left: 3px solid var(--c-accent);
    padding: 1.6rem 1.6rem 1.4rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
    margin: 0 0 1rem;
    font-style: italic;
    color: var(--c-text);
}
.testimonial figcaption strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
}
.testimonial figcaption span {
    color: var(--c-muted);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #1d1d23;
    color: #c8c8d1;
    padding: 4rem 0 2rem;
    margin-top: 0;
}
.site-footer a { color: #e9e9ef; }
.site-footer a:hover { color: var(--c-accent); }
.footer-heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 2.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0;
    line-height: 2;
}
.footer-grid strong { color: #fff; font-family: var(--font-head); font-size: 1.1rem; }
.footer-contact { font-style: normal; }
.copyright {
    text-align: center;
    margin: 0;
    padding-top: 2rem;
    border-top: 1px solid #33333d;
    color: #888892;
    font-size: 0.9rem;
}
