:root {
  --sf-bg: #f4f1ea; --sf-surface: #ffffff; --sf-ink: #0e1812; --sf-muted: #5a6960; --sf-accent: #3d6b4a; --sf-accent2: #a87f2e; --sf-rule: rgba(14,24,18,0.10);
  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.sf { font-family: var(--sans); color: var(--sf-ink); background: var(--sf-bg); line-height: 1.6; font-size: 16px; }
body.sf a { color: var(--sf-accent); text-decoration: none; }
body.sf a:hover { text-decoration: underline; }

.sf-head { background: var(--sf-bg); border-bottom: 1px solid var(--sf-rule); position: sticky; top: 0; z-index: 10; }
.sf-head-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.sf-logo { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--sf-ink); letter-spacing: -0.01em; }
.sf-nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.sf-nav a { color: var(--sf-ink); font-weight: 500; font-size: .92rem; }
.sf-nav li.active a, .sf-nav a:hover { color: var(--sf-accent); }

.sf-hero { padding: 5rem 1.5rem 4rem; text-align: center; background: linear-gradient(180deg, var(--sf-surface) 0%, var(--sf-bg) 100%); border-bottom: 1px solid var(--sf-rule); }
.sf-hero-inner { max-width: 720px; margin: 0 auto; }
.sf-hero-eyebrow { font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sf-accent2); margin: 0 0 1rem; }
.sf-hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700; line-height: 1; margin: 0 0 1rem; letter-spacing: -0.01em; }
.sf-hero-tag { font-size: 1.25rem; color: var(--sf-muted); margin: 0 0 2rem; }
.sf-hero-cta { margin: 0; display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.sf-btn { display: inline-block; background: var(--sf-accent); color: var(--sf-bg); padding: .75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .92rem; text-decoration: none; transition: background .15s, transform .08s; }
.sf-btn:hover { background: var(--sf-accent2); text-decoration: none; transform: translateY(-1px); color: var(--sf-bg); }
.sf-btn--ghost { background: transparent; color: var(--sf-ink); border: 1px solid var(--sf-rule); }
.sf-btn--ghost:hover { background: var(--sf-ink); color: var(--sf-bg); border-color: var(--sf-ink); }

.sf-main { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.sf-section { padding: 4rem 0; border-bottom: 1px solid var(--sf-rule); }
.sf-section:last-of-type { border-bottom: none; }
.sf-eyebrow { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sf-accent2); margin: 0 0 .75rem; font-weight: 600; }
.sf-section-title { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 2rem; letter-spacing: -0.01em; }

.sf-menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.sf-menu-card { background: var(--sf-surface); padding: 1.75rem 1.5rem; border-radius: 8px; border: 1px solid var(--sf-rule); }
.sf-menu-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; margin: 0 0 1rem; color: var(--sf-accent); }
.sf-menu-item { margin: 0 0 .65rem; color: var(--sf-ink); font-size: .95rem; line-height: 1.4; }
.sf-menu-item:last-child { margin-bottom: 0; }
.sf-menu-note { margin: 1.5rem 0 0; font-size: .82rem; color: var(--sf-muted); font-style: italic; }
.sf-menu-note code { background: var(--sf-surface); padding: 2px 6px; border-radius: 4px; font-size: .92em; }

.sf-visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 640px) { .sf-visit-grid { grid-template-columns: 1fr; gap: 2rem; } }
.sf-hours { margin: 0; }
.sf-hours dt { font-weight: 600; font-size: .92rem; color: var(--sf-ink); margin-top: .85rem; }
.sf-hours dt:first-child { margin-top: 0; }
.sf-hours dd { margin: .15rem 0 0; color: var(--sf-muted); font-size: .92rem; }
.sf-address { font-size: 1.05rem; line-height: 1.5; color: var(--sf-ink); margin: 0 0 1rem; }
.sf-contact { font-size: .95rem; color: var(--sf-muted); margin: 0; line-height: 1.6; }

.sf-story-lede { font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.4; color: var(--sf-ink); margin: 0 0 1.25rem; max-width: 640px; }
.sf-story-body { font-size: 1.05rem; line-height: 1.7; max-width: 640px; color: var(--sf-ink); margin: 0; }

.sf-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }
.sf-news-card { background: var(--sf-surface); border-radius: 8px; overflow: hidden; border: 1px solid var(--sf-rule); transition: transform .15s, box-shadow .15s; }
.sf-news-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--sf-ink) 10%, transparent); }
.sf-news-img { display: block; }
.sf-news-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.sf-news-title { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; line-height: 1.25; margin: 1rem 1.25rem .35rem; }
.sf-news-title a { color: var(--sf-ink); }
.sf-news-title a:hover { color: var(--sf-accent); text-decoration: none; }
.sf-news-date { font-size: .82rem; color: var(--sf-muted); margin: 0 1.25rem .35rem; }
.sf-news-excerpt { color: var(--sf-muted); font-size: .92rem; margin: 0 1.25rem 1.25rem; line-height: 1.5; }
.sf-empty { color: var(--sf-muted); font-style: italic; padding: 2rem 0; grid-column: 1 / -1; text-align: center; }

.sf-section-main { padding-top: 3rem; }
.sf-cat-head { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 2px solid var(--sf-accent); }
.sf-cat-head h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); margin: 0; letter-spacing: -0.01em; }
.sf-cat-desc { color: var(--sf-muted); margin: .75rem 0 0; }

.sf-crumbs { background: var(--sf-surface); border-bottom: 1px solid var(--sf-rule); }
.sf-crumbs ol { max-width: 1200px; margin: 0 auto; padding: .75rem 1.5rem; list-style: none; display: flex; gap: .5rem; flex-wrap: wrap; font-size: .85rem; color: var(--sf-muted); }
.sf-crumbs li + li::before { content: '›'; margin-right: .5rem; color: var(--sf-rule); }
.sf-crumbs a { color: var(--sf-muted); }
.sf-crumbs a:hover { color: var(--sf-accent); }
.sf-crumbs li[aria-current='page'] { color: var(--sf-ink); }

.sf-post-main { max-width: 720px; padding-top: 3rem; }
.sf-post-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--sf-accent2); font-weight: 700; margin: 0 0 .5rem; }
.sf-post-title { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; margin: 0 0 1rem; letter-spacing: -0.01em; }
.sf-post-deck { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.45; color: var(--sf-muted); margin: 0 0 1.5rem; }
.sf-post-byline { font-size: .85rem; color: var(--sf-muted); margin: 0 0 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--sf-rule); }
.sf-post-lead { margin: 0 0 2rem; }
.sf-post-lead img { width: 100%; height: auto; display: block; border-radius: 8px; }
.photo-credit { font-size: .75rem; color: var(--sf-muted); margin: .5rem 0 0; font-style: italic; }
.photo-credit a { color: inherit; text-decoration: underline; }
.sf-post-body { font-size: 1.08rem; line-height: 1.75; }
.sf-post-body p { margin: 0 0 1.2rem; }
.sf-post-body h2 { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; margin: 2.25rem 0 1rem; }
.sf-post-body h3 { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; margin: 1.85rem 0 .75rem; }
.sf-post-body a { color: var(--sf-accent); text-decoration: underline; }
.sf-post-body img { max-width: 100%; height: auto; border-radius: 6px; }
.sf-post-body blockquote { border-left: 3px solid var(--sf-accent); margin: 1.5rem 0; padding: .35rem 0 .35rem 1.25rem; font-style: italic; color: var(--sf-muted); }
.sf-post-body table { border-collapse: collapse; width: 100%; margin: 1.5rem 0; }
.sf-post-body th, .sf-post-body td { border-top: 1px solid var(--sf-rule); border-bottom: 1px solid var(--sf-rule); padding: .65rem .75rem; text-align: left; }

.sf-foot { background: var(--sf-surface); border-top: 1px solid var(--sf-rule); margin-top: 4rem; }
.sf-foot-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem; text-align: center; }
.sf-foot-brand { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; margin: 0 0 .35rem; color: var(--sf-ink); }
.sf-foot-meta { color: var(--sf-muted); margin: 0; font-size: .85rem; letter-spacing: .04em; }
@media (max-width: 560px) {
  .sf-hero { padding: 3.5rem 1rem 2.5rem; }
  .sf-main { padding: 0 1rem 3rem; }
  .sf-section { padding: 3rem 0; }
  .sf-crumbs ol { padding: .65rem 1rem; }
  .sf-foot-inner { padding: 2rem 1rem; }
}
.sf-nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.sf-nav-toggle-label { display: none; }

@media (max-width: 720px) {
  .sf-nav-toggle-label {
    display: flex; align-items: center; justify-content: flex-end;
    padding: .85rem 1.25rem; cursor: pointer; user-select: none;
    color: var(--sf-ink); background: var(--sf-bg);
    border-top: 1px solid var(--sf-rule); border-bottom: 1px solid var(--sf-rule);
    width: 100%; box-sizing: border-box;
  }
  .sf-nav-toggle-input:focus-visible + .sf-nav-toggle-label { outline: 2px solid var(--sf-accent); outline-offset: -2px; }
  .sf-nav-toggle-icon { position: relative; display: inline-block; width: 22px; height: 14px; flex: 0 0 22px; }
  .sf-nav-toggle-icon::before, .sf-nav-toggle-icon::after {
    content: ''; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
    transition: transform .18s ease, top .18s ease, bottom .18s ease, box-shadow .18s ease;
  }
  .sf-nav-toggle-icon::before { top: 0; box-shadow: 0 6px 0 currentColor; }
  .sf-nav-toggle-icon::after  { bottom: 0; }

  .sf-nav { width: 100%; }
  .sf-nav ul {
    display: none; flex-direction: column; gap: 0; padding: 0; margin: 0;
    list-style: none;
  }
  .sf-nav-toggle-input:checked ~ .sf-nav ul { display: flex; }
  .sf-nav ul li { border-bottom: 1px solid var(--sf-rule); padding: 0; }
  .sf-nav ul li:last-child { border-bottom: none; }
  .sf-nav ul li a {
    display: block; width: 100%; padding: .9rem 1.25rem; color: var(--sf-ink);
    border-bottom: none !important;
  }
  .sf-nav ul li.active a {
    color: var(--sf-accent); background: color-mix(in srgb, var(--sf-accent) 8%, transparent); border-bottom: none !important;
    box-shadow: inset 3px 0 0 var(--sf-accent);
  }

  .sf-nav-toggle-input:checked ~ .sf-nav-toggle-label .sf-nav-toggle-icon::before { top: 6px; box-shadow: none; transform: rotate(45deg); }
  .sf-nav-toggle-input:checked ~ .sf-nav-toggle-label .sf-nav-toggle-icon::after  { bottom: 6px; transform: rotate(-45deg); }
  .sf-head-inner { flex-direction: column; align-items: stretch; padding: 0; gap: 0; }
  .sf-logo { padding: 1rem 1.25rem; text-align: center; }
}
.author-byline { display: inline-flex; align-items: center; gap: .55rem; }
.author-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; display: block; }
.author-byline-text { display: inline-block; }
.author-name { font-weight: 600; }
.pn-chart { margin: 1.75rem 0; }
.pn-chart-title { font-size: .92rem; font-weight: 600; margin: 0 0 .55rem; line-height: 1.35; }
.pn-chart svg { width: 100%; height: auto; display: block; font: 14px/1.2 system-ui, -apple-system, 'Segoe UI', sans-serif; }
.pn-chart-label { fill: currentColor; opacity: .85; }
.pn-chart-value { fill: currentColor; font-weight: 600; }
.pn-chart-bar { fill: currentColor; opacity: .35; }
.pn-chart-source { font-size: .72rem; color: #999; margin: .55rem 0 0; font-style: italic; }
.legal-footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; justify-content: center; margin: 0 0 .85rem; }
.legal-footer-nav a { font-size: .82rem; color: inherit; text-decoration: none; opacity: .8; }
.legal-footer-nav a:hover { opacity: 1; text-decoration: underline; }
.legal-page-main { max-width: 720px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
.legal-article-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 1.5rem; line-height: 1.15; }
.legal-article-body { font-size: 1.02rem; line-height: 1.65; }
.legal-article-body h2 { font-size: 1.4rem; margin: 2rem 0 .65rem; line-height: 1.25; }
.legal-article-body h3 { font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.legal-article-body p, .legal-article-body ul, .legal-article-body ol { margin: 0 0 1rem; }
.legal-article-body ul, .legal-article-body ol { padding-left: 1.4rem; }
.legal-article-body a { color: inherit; }
.legal-article-body .contact-mailto { padding: .85rem 1rem; background: rgba(0,0,0,0.04); border-left: 3px solid currentColor; margin-bottom: 1.5rem; }
.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }
