/* ==========================================================================
   Monthly News Bulletin
   Editorial layout: serif headlines, sans-serif text, paper background.
   The header is sticky (it stays fixed to the top once you scroll).
   ========================================================================== */

:root {
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --paper: #f3eee6;
  --paper-raised: #fbf8f3;
  --paper-deep: #e7e0d4;
  --rule: #d6cfc3;
  --red: #9f1239;
  --gold: #e6c07b;
  --white: #fffcf8;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1120px;
  --header-offset: 10.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(28, 25, 23, 0.035) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

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

h1, h2, h3, p {
  margin-top: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

::selection {
  background: #f3c7d3;
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 0.9rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

[id] {
  scroll-margin-top: var(--header-offset);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper-raised);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
}

.nav-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-meta {
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-bar-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 0 0.8rem;
  border-top: 1px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  text-align: left;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-kicker,
.section-kicker,
.kicker,
.slide-kicker,
.rail-title,
.team-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-kicker {
  display: block;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.brand-title {
  display: block;
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0.85rem 0;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 0.2rem 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle-input:focus-visible ~ .header-bar .nav-toggle {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Hero carousel
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: min(72vh, 44rem);
  min-height: 32rem;
  background: #14110e;
  color: #f6f1e8;
  overflow: hidden;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide:not(.is-active) {
  pointer-events: none;
}

.slide:not(.is-active) a {
  visibility: hidden;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 14, 12, 0.9) 0%, rgba(17, 14, 12, 0.62) 46%, rgba(17, 14, 12, 0.18) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}

.slide-kicker {
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.slide-title {
  max-width: 11em;
  margin-bottom: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.slide-caption {
  max-width: 36rem;
  margin-bottom: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(246, 241, 232, 0.88);
}

.slide-link {
  display: inline-block;
  margin-top: 1.35rem;
  color: #f6f1e8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: -1.375rem;
  border: 1px solid rgba(246, 241, 232, 0.55);
  border-radius: 50%;
  background: rgba(20, 17, 14, 0.35);
  color: #f6f1e8;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.slider-btn:hover {
  background: rgba(20, 17, 14, 0.7);
}

.slider-btn-prev { left: 1rem; }
.slider-btn-next { right: 1rem; }

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}

.slider-dot {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.45);
  transform: translate(-50%, -50%);
}

.slider-dot.is-active::before {
  width: 1.6rem;
  background: #f6f1e8;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--rule);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-kicker {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.section-kicker span {
  margin-right: 0.45rem;
  color: var(--red);
}

.section-head h2,
.subhead,
.lead h3,
.brief h3,
.archive-body h3,
.editors-pick h3,
.team-card h3,
.contact-panel h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section-head h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.section-dek {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.kicker {
  margin-bottom: 0.4rem;
  color: var(--red);
}

.edition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.8fr);
  gap: 2.5rem;
  align-items: start;
}

.lead-figure {
  margin: 0 0 1.1rem;
}

.lead-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #16324f;
}

.lead-figure figcaption {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.lead h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.deck {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.byline {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-copy {
  margin-bottom: 0.9rem;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.12rem 0.45rem 0 0;
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 0.8;
  color: var(--red);
}

.edition-rail {
  display: grid;
  gap: 1.25rem;
}

.rail-block,
.editors-pick,
.team-card,
.archive-card,
.about-facts,
.contact-form,
.contact-panel {
  background: var(--paper-raised);
  border: 1px solid var(--rule);
}

.rail-block,
.editors-pick {
  padding: 1.2rem 1.2rem 1.3rem;
}

.rail-title {
  margin-bottom: 0.8rem;
}

.issue-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.issue-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--rule);
}

.issue-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(28, 25, 23, 0.1);
}

.issue-list a {
  flex: 1;
  text-decoration: none;
}

.issue-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.editors-pick {
  border-top: 3px solid var(--red);
}

.editors-pick h3 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.editors-pick blockquote {
  margin: 0 0 1rem;
}

.editors-pick blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
}

.editors-pick .byline {
  margin-bottom: 0;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.brief {
  padding-top: 0.9rem;
  border-top: 1px solid var(--ink);
}

.brief h3 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.brief p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Archive
   -------------------------------------------------------------------------- */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.archive-card {
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  border-color: #c4b8a8;
}

.archive-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 9rem;
  padding: 1rem;
  color: #f6f1e8;
}

.tone-1 { background: #1e3a5f; }
.tone-2 { background: #7f1d1d; }
.tone-3 { background: #3f3f46; }
.tone-4 { background: #1f4d3a; }
.tone-5 { background: #7c4a1e; }
.tone-6 { background: #312e81; }

.archive-month {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.archive-year {
  margin: 0.25rem 0 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.22rem 0.45rem;
  background: var(--paper-raised);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-body {
  padding: 1rem 1rem 1.15rem;
}

.archive-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.archive-body p {
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}

.archive-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.archive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-btn svg {
  flex: 0 0 auto;
}

.archive-btn-read {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 14px rgba(28, 25, 23, 0.12);
}

.archive-btn-read:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 16px rgba(159, 18, 57, 0.22);
}

.archive-btn-download {
  background: transparent;
  border: 1px solid #c4b8a8;
  color: var(--ink);
}

.archive-btn-download:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.mission {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-facts {
  padding: 1.2rem 1.25rem;
}

.about-facts dl,
.contact-details {
  margin: 0;
}

.about-facts div + div,
.contact-details div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

.about-facts dt,
.contact-details dt {
  margin-bottom: 0.2rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts dd,
.contact-details dd {
  margin: 0;
}

.subhead {
  margin: 2.75rem 0 1rem;
  font-size: 1.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  padding: 1.25rem;
}

.team-initials {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 0 0.9rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
}

.team-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.4rem;
}

.team-role {
  margin-bottom: 0.55rem;
  color: var(--red);
}

.team-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.section-contact {
  background: var(--paper-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 1.35rem;
}

.contact-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.contact-details a {
  text-underline-offset: 0.15em;
}

.fine-print {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-alert {
  margin: 0 0 1rem;
  padding: 0.8rem 0.9rem;
  border-left: 3px solid;
}

.form-alert-success {
  background: #e7f2ea;
  border-color: #166534;
  color: #14532d;
}

.form-alert-error {
  background: #f8e8ea;
  border-color: var(--red);
  color: #881337;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form > .field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.req {
  color: var(--red);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 9rem;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
  border-color: var(--ink);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  margin: 0.35rem 0 0;
  color: var(--red);
  font-size: 0.92rem;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.btn {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 1.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover {
  background: var(--red);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: #e7e0d4;
  padding: 2.75rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-title {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #fbf8f3;
}

.site-footer p {
  margin-bottom: 0.35rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.site-footer a {
  text-underline-offset: 0.15em;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 2rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(231, 224, 212, 0.2);
  color: #a8a29e;
  font-size: 0.88rem;
}

.footer-base p {
  margin: 0;
}

.footer-brand {
  font-weight: 900;
}

.footer-credit {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

.footer-credit strong {
  color: #fbf8f3;
  font-weight: 700;
}

.footer-credit sup {
  font-size: 0.65em;
  line-height: 0;
}

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media (min-width: 801px) {
  .nav-toggle-input {
    display: none;
  }
}

@media (max-width: 900px) {
  .edition-layout,
  .about-layout,
  .contact-grid,
  .brief-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  :root {
    --header-offset: 6.25rem;
  }

  .header-meta {
    display: none;
  }

  .header-bar-inner {
    justify-content: flex-start;
    padding-right: 3.4rem;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: -1.375rem;
    border: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
  }

  .nav-toggle-box span {
    display: block;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle-input:checked ~ .header-bar .nav-toggle-box span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle-input:checked ~ .header-bar .nav-toggle-box span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked ~ .header-bar .nav-toggle-box span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: var(--paper-raised);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 16px 30px rgba(28, 25, 23, 0.08);
  }

  .nav-toggle-input:checked ~ .site-nav {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.95rem 1.25rem;
    border-top: 1px solid var(--rule);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a[aria-current="page"] {
    color: var(--red);
  }

  .slide-shade {
    background: linear-gradient(180deg, rgba(17, 14, 12, 0.2) 0%, rgba(17, 14, 12, 0.88) 72%);
  }

  .slide-content {
    align-items: flex-end;
    padding-bottom: 4.25rem;
  }

  .hero {
    min-height: 28rem;
    height: 78vh;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.25rem 0;
  }

  .archive-grid,
  .team-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .meta-extra {
    display: none;
  }

  .form-actions .btn {
    width: 100%;
  }

  .slider-btn-prev { left: 0.5rem; }
  .slider-btn-next { right: 0.5rem; }

  .brand img {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide,
  .archive-card,
  .archive-btn,
  .site-nav a::after,
  .nav-toggle-box span {
    transition: none;
  }

  .archive-card:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .hero,
  .site-footer,
  .contact-form,
  .nav-toggle {
    display: none;
  }

  body {
    background: #fff;
  }

  .section {
    border: 0;
    padding: 1rem 0;
  }

  a {
    text-decoration: none;
  }
}
