:root {
  --pine: #1e3b2f;
  --pine-2: #2b5242;
  --pine-3: #e6eee9;
  --sun: #f1a42a;
  --sun-dark: #c77e0c;
  --slate: #3b3b3b;
  --paper: #f8f5ee;
  --card: #ffffff;
  --ink: #1d2320;
  --muted: #5c655f;
  --line: #e6e0d3;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(30, 59, 47, .06), 0 8px 24px rgba(30, 59, 47, .07);
  --shadow-lg: 0 2px 4px rgba(30, 59, 47, .08), 0 18px 40px rgba(30, 59, 47, .14);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body { margin: 0; font: 16px/1.6 var(--sans); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine-2); text-underline-offset: 3px; }
a:hover { color: var(--sun-dark); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--pine); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.narrow { max-width: 640px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -48px; background: var(--pine); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; color: #fff; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.icon--sm { width: 1em; height: 1em; }
.eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sun-dark); margin-bottom: .6em; }
.eyebrow--light { color: var(--sun); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; padding: .75em 1.25em; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 1.5px solid transparent; transition: transform .15s, background .15s, color .15s, box-shadow .15s; line-height: 1.2; }
.btn:hover { transform: translateY(-1px); }
.btn--sun { background: var(--sun); color: #231a07; }
.btn--sun:hover { background: #f7b44a; color: #231a07; box-shadow: 0 8px 20px rgba(241, 164, 42, .35); }
.btn--pine { background: var(--pine); color: #fff; }
.btn--pine:hover { background: var(--pine-2); color: #fff; }
.btn--glass { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.btn--glass:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn--ghost-dark { color: var(--pine); border-color: var(--line); background: var(--card); }
.btn--ghost-dark:hover { border-color: var(--pine); color: var(--pine); }
.text-link { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; text-decoration: none; }

/* Header */
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: rgba(248, 245, 238, .88); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 104px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-family: var(--serif); font-size: 1.1rem; color: var(--pine); font-weight: 600; }
.brand__text small { font-size: .75rem; color: var(--muted); letter-spacing: .02em; }
.site-nav ul { display: flex; gap: 4px; }
.site-nav a { display: block; padding: 8px 14px; border-radius: 999px; text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; }
.site-nav a:hover { background: var(--pine-3); color: var(--pine); }
.site-nav a[aria-current="page"] { background: var(--pine); color: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--card); border-radius: 12px; cursor: pointer; position: relative; }
.nav-toggle span:first-child, .nav-toggle span:first-child::before, .nav-toggle span:first-child::after { position: absolute; left: 12px; width: 18px; height: 2px; background: var(--pine); border-radius: 2px; transition: transform .2s, background .2s; }
.nav-toggle span:first-child { top: 21px; }
.nav-toggle span:first-child::before, .nav-toggle span:first-child::after { content: ""; left: 0; }
.nav-toggle span:first-child::before { top: -6px; }
.nav-toggle span:first-child::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span:first-child { background: transparent; }
.nav-toggle[aria-expanded="true"] span:first-child::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:first-child::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; padding: 12px clamp(16px, 4vw, 32px) 16px; }
  .site-nav a { padding: 12px 16px; border-radius: 12px; }
}
@media (max-width: 420px) { .brand__text small { display: none; } .brand img { width: 84px; } }

/* Home hero */
.hero { position: relative; min-height: min(78vh, 640px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--pine); }
.hero__media { position: absolute; inset: 0; background: url("/wp-content/uploads/2021/07/the-lake-1.jpg") center 35% / cover no-repeat; transform: scale(1.03); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 30, 23, .15) 0%, rgba(14, 30, 23, .35) 45%, rgba(14, 30, 23, .85) 100%); }
.hero__content { position: relative; padding-block: 120px 72px; }
.hero h1 { color: #fff; max-width: 14ch; text-shadow: 0 2px 24px rgba(0, 0, 0, .25); }
.hero__lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 46ch; color: rgba(255, 255, 255, .9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Interior page hero */
.page-hero { position: relative; color: #fff; background: linear-gradient(100deg, rgba(20, 42, 33, .92) 0%, rgba(20, 42, 33, .7) 55%, rgba(20, 42, 33, .35) 100%), url("/wp-content/uploads/2021/07/the-lake-1.jpg") center 40% / cover; padding-block: clamp(56px, 9vw, 104px) clamp(40px, 6vw, 72px); }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero__lede { max-width: 58ch; color: rgba(255, 255, 255, .88); font-size: 1.1rem; margin: 0; }
.page-hero .eyebrow { color: var(--sun); }

/* Sections & layout */
.section { padding-block: clamp(48px, 7vw, 88px); }
.section--tint { background: var(--pine-3); }
.hero + .section { margin-top: -56px; padding-top: 0; position: relative; }
.stack > * + * { margin-top: 24px; }
.stack--lg > * + * { margin-top: 56px; }
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 48px; align-items: start; }
.layout-docs { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.layout-docs aside { position: sticky; top: 96px; }
@media (max-width: 860px) { .split, .layout-docs { grid-template-columns: 1fr; gap: 28px; } .layout-docs aside { position: static; } }

/* Cards */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card--link { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); transition: transform .2s, box-shadow .2s, border-color .2s; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d5ceb9; color: var(--ink); }
.card--link p { color: var(--muted); font-size: .95rem; flex: 1; }
.card__icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #fdf1dc; color: var(--sun-dark); margin-bottom: 18px; }
.card__icon .icon { width: 24px; height: 24px; }
.card__icon--light { background: rgba(255, 255, 255, .12); color: var(--sun); }
.card__more { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; font-size: .9rem; color: var(--pine-2); }
.card--link:hover .card__more { color: var(--sun-dark); }

.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow); }
.panel h2 { font-size: 1.35rem; margin-bottom: 16px; }
.panel--pine { background: var(--pine); color: rgba(255, 255, 255, .88); border-color: var(--pine); }
.panel--pine h2 { color: #fff; }

/* Document list */
.doc-list { display: grid; gap: 8px; }
.doc a, .doc--nofile { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: border-color .15s, background .15s, transform .15s; }
.panel .doc a { background: #fcfbf8; }
.doc a:hover { border-color: var(--pine-2); background: #fff; color: var(--pine); transform: translateX(2px); }
.doc__badge { font-size: .68rem; font-weight: 700; letter-spacing: .05em; padding: 5px 0; width: 46px; text-align: center; border-radius: 6px; background: var(--line); color: var(--slate); }
.doc__badge--pdf { background: #fbe4df; color: #a3321f; }
.doc__badge--word { background: #dfe9fb; color: #1f4fa3; }
.doc__badge--image { background: #e2f1e6; color: #22683a; }
.doc__label { font-weight: 500; line-height: 1.35; overflow-wrap: anywhere; }
.doc__meta { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.doc--nofile { color: var(--muted); background: transparent; border-style: dashed; }
.doc--nofile .doc__meta { white-space: normal; text-align: right; font-style: italic; }
.doc-list--cols { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
@media (max-width: 480px) { .doc a, .doc--nofile { grid-template-columns: auto 1fr; } .doc__meta { grid-column: 2; margin-top: -8px; } .doc--nofile .doc__meta { text-align: left; } }

/* Board */
.member__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.member h2 { font-size: 1.35rem; margin: 0; }
.avatar { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: 50%; background: linear-gradient(135deg, var(--pine-2), var(--pine)); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: .02em; box-shadow: inset 0 0 0 3px rgba(241, 164, 42, .6); }
.member__role { margin: 4px 0 0; font-size: .85rem; font-weight: 600; color: var(--sun-dark); }
.member__role--plain { color: var(--muted); font-weight: 500; }
.member__contact { display: grid; gap: 10px; border-top: 1px solid var(--line); padding-top: 18px; font-size: .95rem; }
.member__contact li { display: flex; align-items: flex-start; gap: 10px; }
.member__contact .icon { margin-top: .3em; color: var(--pine-2); }
.member__contact a { overflow-wrap: anywhere; }
.tag { display: inline-block; font-size: .7rem; font-weight: 600; padding: 1px 7px; border-radius: 999px; background: var(--pine-3); color: var(--pine); margin-left: 4px; vertical-align: 1px; }

/* Gallery */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 20px; }
.section-head h2 { margin: 0; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: 14px; }
.thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 12px; background: var(--line); box-shadow: var(--shadow); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s; }
.thumb:hover img { transform: scale(1.06); filter: saturate(1.1); }
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(10, 18, 14, .92); }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-width: min(92vw, 900px); max-height: 80vh; width: auto; min-width: min(80vw, 480px); object-fit: contain; border-radius: 10px; image-rendering: auto; }
.lightbox figcaption { color: rgba(255, 255, 255, .85); margin-top: 12px; font-size: .95rem; }
.lightbox button { position: fixed; background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .25); width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lightbox button:hover { background: rgba(255, 255, 255, .2); }
.lightbox__close { top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lightbox__prev, .lightbox__next { top: auto; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform: none; } }

/* Archives */
.layout-archives { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; align-items: start; }
.archive-tools { position: sticky; top: 96px; }
.search { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; color: var(--muted); box-shadow: var(--shadow); }
.search:focus-within { border-color: var(--pine-2); }
.search input { border: 0; outline: 0; background: transparent; font: inherit; padding: 12px 0; width: 100%; color: var(--ink); }
#archive-count { margin: 10px 2px 18px; min-height: 1.4em; }
.jump { display: grid; gap: 12px; }
.jump__group { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.jump__decade { width: 100%; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.jump a { font-size: .85rem; padding: 3px 9px; border-radius: 999px; text-decoration: none; background: var(--card); border: 1px solid var(--line); color: var(--ink); }
.jump a:hover { border-color: var(--pine); color: var(--pine); }
.year { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 28px); box-shadow: var(--shadow); }
.year__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.year__head h2 { margin: 0; font-size: 1.8rem; }
.year .doc a { background: #fcfbf8; }
.empty { text-align: center; padding: 48px; color: var(--muted); }
@media (max-width: 900px) {
  .layout-archives { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .layout-archives > * { min-width: 0; }
  .archive-tools { position: sticky; top: 72px; z-index: 5; background: var(--paper); padding-block: 12px; margin-block: -12px; }
  .jump { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
  .jump__group { flex-wrap: nowrap; }
  .jump__decade { display: none; }
  #archive-count { margin: 8px 2px; }
}

/* Home extras */
.panorama { margin: 0 0 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.panorama img { width: 100%; }
@media (max-width: 600px) { .panorama img { aspect-ratio: 16 / 9; object-fit: cover; object-position: 0% center; } }
.cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.cta h2 { margin-bottom: .25em; }
.cta p { margin: 0; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #15291f; color: rgba(255, 255, 255, .75); padding-top: 56px; font-size: .95rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 32px; align-items: start; }
.site-footer__logo { width: 120px; background: rgba(255, 255, 255, .92); border-radius: 12px; padding: 8px 12px; box-sizing: content-box; margin-bottom: 14px; }
.site-footer .muted { color: rgba(255, 255, 255, .55); }
.site-footer nav ul { display: grid; grid-template-columns: repeat(2, max-content); gap: 8px 32px; }
.site-footer nav a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.site-footer nav a:hover { color: var(--sun); }
.site-footer__base { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-block: 20px calc(20px + env(safe-area-inset-bottom, 0px)); font-size: .85rem; color: rgba(255, 255, 255, .5); }
@media (max-width: 760px) { .site-footer__inner { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
@media print {
  .site-header, .site-footer, .archive-tools, .hero__actions { display: none; }
  .page-hero { background: none; color: #000; padding: 0; }
  .page-hero h1 { color: #000; }
}

/* Footer archive link */
.site-footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer__base a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .6); text-decoration: none; }
.site-footer__base a:hover { color: var(--sun); }

/* Board Archive */
.icon--xs { width: .85em; height: .85em; }
.btn--sm { padding: .5em .9em; font-size: .85rem; }
.notice { display: flex; gap: 16px; align-items: flex-start; background: #fff7e8; border: 1px solid #f1d7a6; border-radius: var(--radius); padding: 18px 20px; margin-bottom: 28px; }
.notice p { margin: 4px 0 0; color: #5a4a2c; font-size: .95rem; }
.notice strong { color: #6b4a0e; }
.notice__icon { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: #fde6bb; color: var(--sun-dark); }
.toolbar { position: sticky; top: 72px; z-index: 5; background: var(--paper); padding-block: 14px 6px; margin-bottom: 12px; display: grid; gap: 12px; }
.toolbar__row { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; }
.toolbar #members-count { margin: 0; min-height: 1.4em; }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.chip { flex: none; font: inherit; font-size: .88rem; font-weight: 500; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; white-space: nowrap; }
.chip span { color: var(--muted); font-size: .8rem; margin-left: 2px; }
.chip:hover { border-color: var(--pine-2); }
.chip.is-active { background: var(--pine); border-color: var(--pine); color: #fff; }
.chip.is-active span { color: rgba(255, 255, 255, .7); }
.switch { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; cursor: pointer; }
.switch input { width: 18px; height: 18px; accent-color: #b3541e; }
.select { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--muted); }
.select select { font: inherit; color: var(--ink); padding: 6px 10px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); }
.rec-list { display: grid; gap: 12px; }
.rec { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; align-items: start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); }
.rec[data-sensitive="true"] { border-left: 4px solid #d9822b; }
.rec .doc__badge { margin-top: 4px; }
.rec__icon { width: 46px; height: 32px; display: grid; place-items: center; border-radius: 6px; background: var(--pine-3); color: var(--pine); margin-top: 2px; }
.rec__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.rec__meta .tag { margin: 0; }
.tag--plain { background: var(--line); color: var(--slate); }
.tag--warn { background: #fde3cf; color: #9a3d0c; display: inline-flex; align-items: center; gap: 3px; }
.rec h3 { font-size: 1.12rem; margin: 0 0 4px; }
.rec h3 a { color: var(--pine); text-decoration: none; }
.rec h3 a:hover { text-decoration: underline; }
.rec__body p { margin: 0 0 4px; color: var(--muted); font-size: .93rem; }
.rec__body .rec__source { font-size: .78rem; color: #8a918c; margin-top: 6px; }
.rec__actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.rec__actions .btn { justify-content: center; white-space: nowrap; }
.rec details { margin: 10px 0 4px; }
.rec summary { cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--pine-2); }
.snapshot { white-space: pre-wrap; font-size: .9rem; line-height: 1.55; background: #fcfbf8; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; margin-top: 10px; max-height: 420px; overflow: auto; color: var(--ink); }
.members-photos { margin-top: 48px; }
.gallery--captions p { margin: 8px 2px 0; font-size: .85rem; color: var(--muted); line-height: 1.35; }
@media (max-width: 700px) {
  .rec { grid-template-columns: auto minmax(0, 1fr); padding: 16px; }
  .rec__actions { grid-column: 1 / -1; flex-direction: row; }
  .rec__actions .btn { flex: 1; }
  .toolbar { position: static; padding-top: 0; }
  .notice { padding: 14px 16px; }
}

/* Sign-in */
.notice__signout { order: 3; margin-left: auto; flex: none; }
@media (max-width: 700px) { .notice { flex-wrap: wrap; } .notice__signout { order: 3; margin-left: 56px; } }
.section--login { min-height: calc(100vh - 320px); display: grid; align-items: center; background: linear-gradient(180deg, var(--pine-3), var(--paper) 60%); }
.login-card { max-width: 420px; margin-inline: auto; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 5vw, 40px); box-shadow: var(--shadow-lg); }
.login-card h1 { font-size: 2rem; margin-bottom: .2em; }
.login-form { display: grid; gap: 6px; margin-top: 20px; }
.login-form label { font-weight: 600; font-size: .9rem; margin-top: 10px; }
.login-form input { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fcfbf8; color: var(--ink); width: 100%; }
.login-form input:focus { outline: none; border-color: var(--pine-2); box-shadow: 0 0 0 3px rgba(43, 82, 66, .15); background: #fff; }
.login-form .btn { justify-content: center; margin-top: 18px; padding-block: .9em; font-size: 1rem; }
.login-msg { margin: 16px 0 0; padding: 10px 14px; border-radius: 10px; font-size: .92rem; }
.login-msg--error { background: #fde3cf; color: #8a3509; }
.login-msg--ok { background: var(--pine-3); color: var(--pine); }
.login-foot { margin: 18px 0 0; }
