/* General Styles */
html, body {
  height: 100%;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
  flex: 1;
}

/* Consistent Typography */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

p, .lead, label, span, a, li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

.card-title {
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
}

/* Form controls */
.form-control, .form-select, .btn, input, select, textarea, button {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Text muted consistency */
.text-muted {
    font-size: 1rem;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Active nav link styling */
.navbar-nav .nav-link.active {
    border-bottom: 2px solid #fff;
    font-weight: 500;
}
.nav-link {
    margin: 0 10px 0 0;
}
/* Sidebar active item styling */
.list-group-item.active-sidebar {
    background-color: #f8f9fa;
    border-left: 3px solid #0d6efd;
}

.list-group-item.active-sidebar a {
    font-weight: bold;
}

/* Smaller Coming Soon badge */
.list-group-item .badge {
    --bs-badge-font-size: 0.60em;
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #343a40;
    color: white;
    padding: 15px 0;
}

/* Main Content */
.container {
    max-width: 900px;
}

/* Catalogue Grid */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.catalogue-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background: #f8f9fa;
}

.catalogue-item img {
    max-width: 100%;
    border-radius: 5px;
}
form {
    /*max-width: 600px;
    margin: 0 auto;*/
}

/* LOGO */

/* Brand (sprite-based logo) */
.navbar .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.navbar .brand__icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  flex: 0 0 32px;
}

/* This is the key: scale the whole sprite by setting width/height (no transform) */
.navbar .brand__icon img {
    position: absolute;
    width: 131.072px;
    height: 84.36px;
    left: -70.272px;
    top: -42.544px;
}


.navbar .brand__text {
  line-height: 1;
  visibility: hidden;
}

/* Footer */
.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  text-decoration: underline;
  color: #f0f0f0;
}

/* Home style*/

/* Home intro paragraph with inline logo */
.intro {
  line-height: 1.6;
  position: relative;
}

/* Home intro paragraph with large inline logo */
/* Home intro paragraph with large logo */
.intro__logo {
  float: left;
  width: 120px;
  margin: 0.25rem 1rem 0.5rem 0;
}

.intro__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.intro + a {
  display: inline-block;
  margin-top: 0.5rem;
}
.intro + a:hover {
  text-decoration: underline;
}

/* Collection Slider (horizontal scrolling grid) */
.collection-slider-container {
  position: relative;
  overflow: hidden;
}

.collection-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
  scrollbar-width: none;  /* Hide scrollbar Firefox */
}

.collection-slider::-webkit-scrollbar {
  display: none;  /* Hide scrollbar Chrome/Safari */
}

.collection-card {
  flex: 0 0 200px;
  min-width: 200px;
}

.collection-card .card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: box-shadow 0.2s ease;
}

.collection-card .card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-card .card-title {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Scroll buttons */
#scrollLeft, #scrollRight {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart badge in navbar */
.cart-badge {
  font-size: 0.65rem;
  padding: 0.25em 0.5em;
  min-width: 18px;
}

/* Catalogue grid improvements */
.catalogue-item {
  display: flex;
  flex-direction: column;
}

.catalogue-item h5 {
  min-height: 2.5em;
}

/* Cart page styling */
.cart-item-image {
  max-height: 80px;
  object-fit: contain;
}

/* Trust Banner Section */
.trust-banner {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

.trust-banner-item {
    text-align: center;
    padding: 0.5rem;
}

.trust-banner-item svg {
    color: #198754;
    margin-bottom: 0.5rem;
}

.trust-banner-item p {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    color: #495057;
}

/* Trust Accordion */
.trust-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #212529;
    box-shadow: none;
}

.trust-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

/* Cart Trust Card */
.trust-card .list-unstyled li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
}

.trust-card .trust-check {
    color: #198754;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ── AI Chatbot (Floating Widget) ── */

.card-body .py-2 {
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
    margin-left: 0.5em !important;
}
/* NV run section headers sit inside accordion-body — give them bottom padding */
.card-body .accordion-body .py-2 {
    padding-bottom: 1rem !important;
}
/* NV social bodies sit inside accordion-body which already has top padding — cancel extra margin */
.card-body .accordion-body .pt-1 {
    margin-top: 0 !important;
}
.card-body .pt-1 {
    margin-left: 2.3em !important;
    margin-right: 2.3em !important;
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
}
.accordion-item .accordion-body .accordion-button, .accordion-item .accordion-header .accordion-button {
    padding-bottom: 1rem !important;
}


/* Fixed container — bottom-right, above footer */
.chatbot-container {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 1050;
}

/* Toggle wrapper — positions circle + arc text */
.chatbot-toggle-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Curved arc label SVG — overlays the circle */
.chatbot-arc-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.chatbot-arc-label text {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 14px;
    fill: #0d6efd;
    letter-spacing: 1.5px;
}

/* Toggle button — round circle (blue) */
.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}

.chatbot-toggle-wrapper:hover .chatbot-toggle {
    background: #0b5ed7;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}

/* Chat panel */
.chatbot-panel .card {
    width: 370px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    overflow: hidden;
}

/* Messages container */
.chatbot-messages {
    height: 340px;
    overflow-y: auto;
    background: #f8f9fa;
    padding: 1rem;
}

/* Message row */
.chatbot-msg {
    display: flex;
    margin-bottom: 0.75rem;
}

.chatbot-msg-user {
    justify-content: flex-end;
}

.chatbot-msg-assistant {
    justify-content: flex-start;
}

/* Bubble */
.chatbot-bubble {
    max-width: 80%;
    padding: 0.6rem 0.9rem;
    border-radius: 1rem;
    font-size: 0.88rem;
    line-height: 1.45;
    word-wrap: break-word;
}

.chatbot-msg-user .chatbot-bubble {
    background: #0d6efd;
    color: #fff;
    border-bottom-right-radius: 0.25rem;
}

.chatbot-msg-assistant .chatbot-bubble {
    background: #fff;
    color: #212529;
    border: 1px solid #dee2e6;
    border-bottom-left-radius: 0.25rem;
}

/* Typing indicator (three bouncing dots) */
.chatbot-typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.6rem 1rem !important;
}

.chatbot-typing span {
    width: 8px;
    height: 8px;
    background: #adb5bd;
    border-radius: 50%;
    display: inline-block;
    animation: chatbot-dot 1.2s ease-in-out infinite;
}

.chatbot-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes chatbot-dot {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Override global form max-width inside chatbot */
.chatbot-input-area form {
    max-width: none;
}

/* Input area styling */
.chatbot-input-area {
    background: #fff;
    border-top: 1px solid #dee2e6;
    padding: 0.75rem;
}

/* Scrollbar for chat messages */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

article .asl-controls{
    margin-left: 5px;
}
article #asl-pause-btn{
    margin-top: -2px;
}



/* Mobile responsive — full width on small screens */
@media (max-width: 576px) {
    .chatbot-container {
        bottom: 0;
        right: 0;
        left: 0;
    }

    .chatbot-panel .card {
        width: 100%;
        border-radius: 12px 12px 0 0;
        max-height: 80vh;
    }

    .chatbot-toggle-wrapper {
        position: fixed;
        bottom: 100px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .chatbot-toggle {
        width: 52px;
        height: 52px;
    }

    .chatbot-arc-label {
        display: none;
    }

    .chatbot-messages {
        height: 55vh;
    }
}

/* Tablet / medium screens */
@media (min-width: 577px) and (max-width: 768px) {
    .chatbot-panel .card {
        width: 340px;
    }

    .chatbot-container {
        right: 30px;
    }
}

/* =====================================================================
   Phase 1 — Classical typography, palette and ornaments
   ---------------------------------------------------------------------
   Scoped to `body.site-public` so the admin panel keeps its current
   Bootstrap defaults. Admin templates set `{% block body_class %}site-admin{% endblock %}`.
   ===================================================================== */
body.site-public {
    /* Warm "paper and ink" palette echoing classical stamp imagery */
    --bg-page:    #fbf8f1;   /* warm parchment */
    --bg-card:    #fffaf0;   /* cream */
    --text:       #3a342c;   /* warm charcoal */
    --text-muted: #8a7e6a;   /* warm taupe */
    --accent:     #7a1f2b;   /* deep burgundy */
    --accent-2:   #a98553;   /* antique gold */
    --rule:       #dbd2c1;   /* dusty taupe rule */

    background: var(--bg-page);
    color: var(--text);
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    /* Old-style numerals where the font supports them (Lora does) */
    font-feature-settings: "onum" 1, "kern" 1;
    font-size: 1.0625rem;     /* slight bump for serif legibility */
    line-height: 1.65;
}

body.site-public h1,
body.site-public h2,
body.site-public h3,
body.site-public h4,
body.site-public h5,
body.site-public h6,
body.site-public .h1,
body.site-public .h2,
body.site-public .h3,
body.site-public .h4,
body.site-public .h5,
body.site-public .h6 {
    font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.005em;
}

body.site-public h1, body.site-public .h1 { font-weight: 700; }

/* Lead text gets a little classical italic */
body.site-public .lead {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text-muted);
}

body.site-public .text-muted {
    color: var(--text-muted) !important;
}

/* Links — burgundy with a thin gold underline on hover */
body.site-public a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(169,133,83,0.35);
    text-underline-offset: 0.2em;
    transition: color .15s, text-decoration-color .15s;
}
body.site-public a:hover {
    color: var(--accent-2);
    text-decoration-color: var(--accent-2);
}
/* Nav links stay un-underlined */
body.site-public .nav-link,
body.site-public .navbar-brand,
body.site-public .btn { text-decoration: none; }

/* ---------------------------------------------------------------------
   Navbar / footer — warmer than #343a40, evokes walnut + brass
   --------------------------------------------------------------------- */
body.site-public .navbar.bg-dark {
    background-color: #2b1d14 !important;
    border-bottom: 2px solid var(--accent-2);
}
body.site-public .navbar .navbar-brand,
body.site-public .navbar .nav-link {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 0.02em;
}
body.site-public .navbar .nav-link {
    color: rgba(255,255,255,0.85);
}
body.site-public .navbar .nav-link:hover {
    color: #fff;
    border-bottom: 1px solid var(--accent-2);
}
body.site-public .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--accent-2);
}
body.site-public footer {
    background: #2b1d14;
    border-top: 2px solid var(--accent-2);
    color: #ece5d7;
    font-family: 'Lora', Georgia, serif;
}

/* ---------------------------------------------------------------------
   Cards — warm cream background, thin gold border, sepia shadow
   --------------------------------------------------------------------- */
body.site-public .card {
    background: var(--bg-card);
    border: 1px solid var(--rule);
    border-radius: 4px;       /* less rounded → more print-like */
    box-shadow: 0 1px 3px rgba(122, 31, 43, 0.06);
    transition: box-shadow .2s, border-color .2s;
}
body.site-public .card:hover {
    border-color: var(--accent-2);
    box-shadow: 0 4px 14px rgba(122, 31, 43, 0.12);
}
body.site-public .card-title,
body.site-public .card .card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--text);
}
body.site-public .card-text {
    color: var(--text);
}
/* Small-caps treatment for the article date / meta block at the bottom of cards */
body.site-public .card-footer,
body.site-public .article-meta {
    background: transparent;
    border-top: 1px solid var(--rule);
    font-family: 'Lora', Georgia, serif;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   Buttons — classical outlined treatment for primary actions
   --------------------------------------------------------------------- */
body.site-public .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.04em;
}
body.site-public .btn-primary:hover,
body.site-public .btn-primary:focus {
    background-color: #5e1620;
    border-color: #5e1620;
}
body.site-public .btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
}
body.site-public .btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
body.site-public .btn-secondary {
    background-color: var(--accent-2);
    border-color: var(--accent-2);
    color: #1f1a13;
}

/* ---------------------------------------------------------------------
   Decorative ornament  ❦  for section dividers between articles, etc.
   Use as:  <div class="ornament">❦</div>
   --------------------------------------------------------------------- */
body.site-public .ornament {
    text-align: center;
    color: var(--accent-2);
    font-size: 1.15rem;
    margin: 2.25rem 0;
    letter-spacing: 1rem;     /* spreads multiple glyphs apart */
    user-select: none;
}
body.site-public .ornament::before {
    content: "❦";
}
body.site-public .ornament-line {
    border: 0;
    height: 0;
    text-align: center;
    overflow: visible;
    margin: 2rem 0;
}
body.site-public .ornament-line::after {
    content: "❦";
    display: inline-block;
    padding: 0 0.8em;
    color: var(--accent-2);
    background: var(--bg-page);
    position: relative;
    top: -0.7em;
}
body.site-public .ornament-line {
    border-top: 1px solid var(--rule);
}

/* ---------------------------------------------------------------------
   Article reading view — drop cap + comfortable reading column.
   Targets the article body if it's inside .article-body; otherwise opt
   in by adding the class. We DON'T globally style every <article> to
   avoid surprising changes in unrelated pages.
   --------------------------------------------------------------------- */
body.site-public .article-body p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent);
    float: left;
    font-size: 3.5em;
    line-height: 0.85;
    padding: 0.1em 0.12em 0 0;
}
body.site-public .article-body {
    font-size: 1.125rem;
    line-height: 1.75;
}
body.site-public .article-body blockquote {
    border-left: 3px solid var(--accent-2);
    padding: 0.25em 0 0.25em 1.2em;
    font-style: italic;
    color: var(--text);
    margin: 1.5em 0;
}

/* ---------------------------------------------------------------------
   Form controls — softer warm tone (still Bootstrap-compatible)
   --------------------------------------------------------------------- */
body.site-public .form-control,
body.site-public .form-select {
    background-color: #fff;
    border-color: var(--rule);
    color: var(--text);
}
body.site-public .form-control:focus,
body.site-public .form-select:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 0.2rem rgba(169,133,83,0.15);
}

/* =====================================================================
   Phase 2 — Card frames, article header, hero treatment, listing
   dividers. All scoped to body.site-public.
   ===================================================================== */

/* Philatelic card: classical postage-stamp look — thin gold rule, a
   parchment "gap" inside, then a hairline burgundy inner frame. Hover
   lifts subtly with a warm sepia shadow. Use class="card-philatelic"
   on any .card. */
body.site-public .card-philatelic {
    background: var(--bg-card);
    border: 1px solid var(--accent-2);
    border-radius: 4px;
    /* Layered shadows: outer subtle lift + inner double-frame illusion */
    box-shadow:
        inset 0 0 0 4px var(--bg-card),
        inset 0 0 0 5px rgba(122, 31, 43, 0.18),
        0 1px 3px rgba(122, 31, 43, 0.08);
    padding: 6px;
    transition: box-shadow .2s ease, transform .2s ease;
    overflow: hidden;
}
body.site-public .card-philatelic:hover {
    box-shadow:
        inset 0 0 0 4px var(--bg-card),
        inset 0 0 0 5px rgba(122, 31, 43, 0.35),
        0 6px 18px rgba(122, 31, 43, 0.16);
    transform: translateY(-2px);
}
/* Reset the inner image so the perforation/frame sits OUTSIDE the picture */
body.site-public .card-philatelic .card-img-top {
    border-radius: 2px;
    border-bottom: 1px solid var(--rule);
}
body.site-public .card-philatelic .card-body { padding: 1rem 1rem 0.5rem; }
body.site-public .card-philatelic .card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
/* Title underline rule that mimics a vintage book chapter opener */
body.site-public .card-philatelic .card-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    margin-top: 0.6rem;
    background: var(--accent-2);
    opacity: 0.7;
}
body.site-public .card-philatelic .card-footer {
    background: transparent;
    border-top: 1px dashed var(--rule);
    padding: 0.5rem 1rem 0.75rem;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Ornament divider you can drop between rows of cards. Use:
   <hr class="ornament-rule"> */
body.site-public .ornament-rule {
    border: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent, var(--rule) 20%, var(--rule) 80%, transparent);
    position: relative;
    overflow: visible;
    margin: 1rem 0 2rem;
}
body.site-public .ornament-rule::after {
    content: "❦";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 0.7em;
    background: var(--bg-page);
    color: var(--accent-2);
    font-size: 1.1rem;
}

/* ---------------------------------------------------------------------
   Article reading view — classical "chapter opener" treatment
   --------------------------------------------------------------------- */
/* Hero image gets a thin warm frame so it sits like a tipped-in plate */
body.site-public .article-hero {
    border: 1px solid var(--accent-2);
    padding: 6px;
    background: var(--bg-card);
    box-shadow: 0 2px 8px rgba(122, 31, 43, 0.08);
    border-radius: 4px;
}
body.site-public .article-hero img {
    display: block;
    width: 100%;
    border-radius: 2px;
    border: 1px solid var(--rule);
}

/* Centred title block with ornament between title and body. Use:
   <div class="article-title-block">
     <h1>...</h1>
     <p class="article-subtitle">...</p>
     <p class="article-meta">...</p>
     <div class="ornament"></div>
   </div>
*/
body.site-public .article-title-block {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
}
body.site-public .article-title-block h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: var(--text);
}
body.site-public .article-title-block .article-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
body.site-public .article-title-block .article-meta {
    font-variant: small-caps;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Closing ornament after an article body */
body.site-public .article-end-ornament {
    text-align: center;
    color: var(--accent-2);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    margin: 2.5rem 0 1rem;
    user-select: none;
}
body.site-public .article-end-ornament::before { content: "✦ ❦ ✦"; }

/* ---------------------------------------------------------------------
   Page-level heading treatment — used on the /articles index, /about,
   /catalogue. Centres + adds a small gold rule underneath.
   --------------------------------------------------------------------- */
body.site-public .page-heading {
    text-align: center;
    margin: 1.5rem 0 0.5rem;
}
body.site-public .page-heading h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    margin-bottom: 0.4rem;
}
body.site-public .page-heading .page-heading-sub {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    color: var(--text-muted);
    max-width: 38em;
    margin: 0 auto 1rem;
}
body.site-public .page-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-2);
    margin: 1rem auto 1.5rem;
}