/* =============================================================================
   Stay Vermont Blog — matches stayvermont.com brand
   Forest Green #1A3C34 · Gold #C8A97D · Cream #EEEDE6 · Charcoal #2D3238
   Playfair Display (headings) · Montserrat (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --forest-green: #1A3C34;
  --forest-green-dark: #12292356;
  --gold: #C8A97D;
  --gold-dark: #b5966a;
  --cream: #EEEDE6;
  --charcoal: #2D3238;
  --white: #FFFFFF;
  --muted: #E8E7E2;
  --border: #D4DCDA;
  --text-on-primary: #F6F6F2;
  --shadow-sm: 0 1px 3px rgba(26, 60, 52, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 60, 52, 0.1);
  --shadow-lg: 0 12px 36px rgba(26, 60, 52, 0.15);
  --radius: 0.25rem;
  --max-width: 1280px;
}

/* ---- Reset & base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.625;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: var(--forest-green); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

/* ---- Navbar (matches main site) ----------------------------------------- */
.sv-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1rem;
  background: rgba(26,60,52,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (min-width: 768px) { .sv-navbar { padding: 1.5rem 3rem; } }
@media (min-width: 1024px) { .sv-navbar { padding: 2rem 4rem; } }

.sv-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sv-navbar-logo { display: inline-flex; align-items: center; }
.sv-navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 1024px) { .sv-navbar-logo img { height: 64px; } }

.sv-navbar-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.sv-navbar-menu-btn:hover { background: rgba(255,255,255,0.14); }
@media (min-width: 768px) { .sv-navbar-menu-btn { width: 48px; height: 48px; } }
.sv-navbar-menu-btn .sv-icon-close { display: none; }
.sv-navbar-menu-btn.open .sv-icon-menu { display: none; }
.sv-navbar-menu-btn.open .sv-icon-close { display: block; }

/* Push page content below the fixed navbar */
body { padding-top: 80px; }
@media (min-width: 1024px) { body { padding-top: 128px; } }

/* Fullscreen menu overlay */
.sv-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #1A3C34;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 1.5rem 3rem;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (min-width: 768px) { .sv-menu-overlay { padding-top: 12rem; } }
.sv-menu-overlay.open { opacity: 1; visibility: visible; }

.sv-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .sv-menu-nav { gap: 2rem; } }

.sv-menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  line-height: 1;
  transition: color 0.3s ease;
}
@media (min-width: 768px) { .sv-menu-item { font-size: 4rem; } }
@media (min-width: 1024px) { .sv-menu-item { font-size: 4.5rem; } }
.sv-menu-item:hover { color: #C9A46A; }
.sv-menu-num {
  position: absolute;
  left: -2rem;
  top: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(201,164,106,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) { .sv-menu-num { left: -3rem; font-size: 0.8rem; } }
.sv-menu-item:hover .sv-menu-num { opacity: 1; }

.sv-menu-footer {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.sv-menu-cta {
  background: #C9A46A;
  color: #fff !important;
  padding: 0 2rem;
  height: 52px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sv-menu-cta:hover { background: #b8935a; }
.sv-menu-divider { width: 1px; height: 5rem; background: rgba(255,255,255,0.2); margin-top: 1.5rem; }
.sv-menu-tagline {
  color: transparent;
  background: linear-gradient(90deg, #bf953f, #fcf6ba, #bf953f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}
.sv-menu-tagline span { display: block; }

/* ---- Hero --------------------------------------------------------------- */
.blog-hero {
  background: var(--forest-green);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(200,169,125,0.15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(200,169,125,0.08), transparent 60%);
  pointer-events: none;
}
.blog-hero .label {
  color: var(--gold);
  margin-bottom: 1rem;
}
.blog-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 500;
  margin: 0;
  max-width: 900px;
}
.blog-hero p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
}

/* ---- Post list (Wander-style) ------------------------------------------- */
.posts-section { padding: 4rem 0 6rem; }

.post-list { display: flex; flex-direction: column; gap: 0; }

.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: transform 0.3s ease;
}
.post-card:first-child { border-top: 1px solid var(--border); }
.post-card:hover { transform: translateX(4px); }

.post-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.post-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,60,52,0.15));
}

.post-card-body { padding-top: 0.25rem; }
.post-card-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.post-card-meta .cat { color: var(--forest-green); font-weight: 500; }
.post-card-meta .sep { margin: 0 0.5rem; opacity: 0.4; }

.post-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  font-weight: 500;
}
.post-card h2 a { color: inherit; }
.post-card h2 a:hover { color: var(--forest-green); }

.post-card-excerpt {
  color: #4a5056;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest-green);
  letter-spacing: 0.02em;
}
.post-card-link::after { content: '→'; transition: transform 0.2s ease; }
.post-card-link:hover::after { transform: translateX(4px); }

.draft-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .post-card { grid-template-columns: 1fr; gap: 1.25rem; }
  .post-card-image { aspect-ratio: 16 / 9; }
}

/* ---- Single post -------------------------------------------------------- */
.post-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.post-hero .label { color: var(--forest-green); margin-bottom: 1rem; }
.post-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  max-width: 900px;
  margin: 0 auto 1rem;
  line-height: 1.1;
}
.post-hero .post-meta {
  font-size: 0.875rem;
  color: #6b7280;
  letter-spacing: 0.05em;
}

.post-cover {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  background-color: var(--muted);
}

.post-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #2d3238;
}
.post-body h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--forest-green);
}
.post-body h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.post-body p { margin: 0 0 1.5rem; }
.post-body ul, .post-body ol { margin: 0 0 1.5rem; padding-left: 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body img {
  margin: 2rem auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.post-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,169,125,0.08);
  font-style: italic;
  color: var(--forest-green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-body a { color: var(--forest-green); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.post-body code {
  background: var(--muted);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.92em;
}

/* ---- Related posts ------------------------------------------------------ */
.related {
  background: var(--white);
  padding: 4rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}
.related h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.related-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card-image {
  aspect-ratio: 16 / 10;
  background: var(--muted);
  background-size: cover;
  background-position: center;
}
.related-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.related-card h3 { font-size: 1.125rem; margin: 0.5rem 0 0; color: var(--charcoal); }
.related-card h3 a { color: inherit; }

/* ---- Newsletter CTA ----------------------------------------------------- */
.newsletter {
  background: var(--forest-green);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.newsletter h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; }
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  border-radius: var(--radius);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  font-family: inherit;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease;
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ---- Footer ------------------------------------------------------------- */
.footer {
  background: var(--forest-green);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer h4 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: var(--gold); }
.footer-brand-text { color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 360px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--forest-green); color: var(--white); }
.btn-primary:hover { background: #13302a; color: var(--white); }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-dark); color: var(--charcoal); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--charcoal); }
.btn-outline:hover { border-color: var(--forest-green); color: var(--forest-green); }
.btn-danger { background: transparent; border-color: #d97055; color: #c65540; }
.btn-danger:hover { background: #c65540; color: white; }

/* ---- Admin -------------------------------------------------------------- */
.admin-shell {
  min-height: 100vh;
  background: var(--cream);
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-topbar h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 0;
  color: var(--forest-green);
}
.admin-topbar form { margin: 0; }
.admin-actions { display: flex; gap: 0.75rem; align-items: center; }

.admin-main { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.admin-main h2 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--charcoal); }

.admin-post-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.admin-post-table th, .admin-post-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.admin-post-table th {
  background: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 600;
}
.admin-post-table tr:last-child td { border-bottom: none; }
.admin-post-table .title-cell { font-weight: 500; }
.admin-post-table .title-cell small { display: block; color: #6b7280; font-weight: 400; font-size: 0.8rem; margin-top: 0.15rem; }

.status-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-published { background: rgba(26,60,52,0.1); color: var(--forest-green); }
.status-draft { background: rgba(200,169,125,0.2); color: #8a6e3f; }
.status-scheduled { background: rgba(99,102,241,0.12); color: #4338ca; }
.scheduled-time { display: block; font-size: 0.78rem; color: #6b7280; margin-top: 0.2rem; }
.admin-section-heading { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin: 2rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid #e5e7eb; }
.admin-scheduled-table { border: 1.5px solid rgba(99,102,241,0.25); border-radius: 8px; overflow: hidden; margin-bottom: 2rem; }
.scheduled-row { background: rgba(99,102,241,0.03); }

.admin-preview-banner {
  background: #fef3c7;
  border-bottom: 2px solid #f59e0b;
  color: #78350f;
  padding: 0.85rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}
.admin-preview-banner a {
  color: #78350f;
  text-decoration: underline;
  margin-left: 0.75rem;
  font-weight: 600;
}

.row-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.row-actions form { display: inline; margin: 0; }
.row-actions .btn { padding: 0.35rem 0.75rem; font-size: 0.8rem; }

/* ---- Editor form -------------------------------------------------------- */
.editor-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.form-row input[type="text"],
.form-row input[type="url"],
.form-row input[type="datetime-local"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
}
.form-row textarea { min-height: 420px; font-family: 'SF Mono', ui-monospace, Menlo, monospace; font-size: 0.9rem; line-height: 1.7; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(26,60,52,0.1);
}
.form-help { color: #6b7280; font-size: 0.8rem; margin-top: 0.35rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-actions { display: flex; gap: 0.75rem; justify-content: flex-end; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ---- Login -------------------------------------------------------------- */
.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green);
  padding: 2rem;
}
.login-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
}
.login-card h1 {
  font-size: 1.75rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
  text-align: center;
}
.login-card p { text-align: center; color: #6b7280; margin-bottom: 2rem; font-size: 0.9rem; }
.login-error { background: #fef2f2; color: #991b1b; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.85rem; margin-bottom: 1rem; }

/* ---- Accessibility helpers --------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Breadcrumbs -------------------------------------------------------- */
.breadcrumbs {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 1.25rem;
}
.breadcrumbs a { color: var(--forest-green); }
.breadcrumbs a:hover { color: var(--gold); }

/* ---- Post cover figure -------------------------------------------------- */
.post-cover-figure { margin: 0 0 3rem; max-width: 1100px; margin-left: auto; margin-right: auto; }
.post-cover-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  background-color: var(--muted);
}

/* ---- Post list + cards image fallback ---------------------------------- */
.post-card-image img, .related-card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li { display: block; }

/* ---- Editor fieldsets --------------------------------------------------- */
.editor-form fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem 0.25rem;
  margin: 0 0 1.5rem;
  background: #fafaf7;
}
.editor-form .form-legend {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--forest-green);
  padding: 0 0.5rem;
}
.form-row label small { font-weight: 400; text-transform: none; letter-spacing: 0; color: #8b8b88; margin-left: 0.25rem; }

/* ---- 404 ---------------------------------------------------------------- */
.notfound { text-align: center; padding: 8rem 1.5rem; }
.notfound h1 { font-size: 6rem; color: var(--gold); margin: 0; }
.notfound p { font-size: 1.125rem; color: #6b7280; }
