/* =============================================================
   Red Unicorn Marketing — Website
   v3 — 8 May 2026
   Typography: Satoshi (Fontshare)
   Palette: Monarch + Geraldine as primary, Serenade base
   Logo: Wordmark in header/footer, Mark in hero/closing CTA/favicon
   ============================================================= */

/* -------------------------------------------------------------
   Tokens
   ------------------------------------------------------------- */
:root {
  /* Brand palette */
  --rum-monarch: #93080F;
  --rum-geraldine: #FC9494;
  --rum-orange: #FC6E34;
  --rum-serenade: #FFF2E6;
  --rum-burgundy: #580804;
  --rum-black: #000000;

  /* Type — single family, hierarchy via weight (mirrors logo Obviously Black + Regular) */
  --font: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
  --section-padding-y: 6.5rem;
  --section-padding-y-mobile: 3.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--rum-black);
  background: var(--rum-serenade);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--rum-burgundy);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--rum-orange);
}

strong {
  font-weight: 700;
}

/* -------------------------------------------------------------
   Typography — Satoshi single family, weight-led hierarchy
   ------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--rum-black);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
}

h2 {
  font-size: clamp(1.875rem, 3.75vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0 0 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-wrap: balance;
}

/* Highlight treatment for key words in headings.
   Default: Monarch text with Geraldine underline (for Serenade and Orange sections).
   Pink sections override the underline to Orange since Geraldine has no contrast on Pink. */
.hl {
  color: var(--rum-monarch);
  text-decoration: underline;
  text-decoration-color: var(--rum-geraldine);
  text-decoration-thickness: 0.18em;
  text-underline-offset: 0.12em;
}

.differentiator .hl,
.contact .hl {
  text-decoration-color: var(--rum-orange);
}

.contact .hl,
.who .hl {
  color: var(--rum-burgundy);
}

/* -------------------------------------------------------------
   Layout containers
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  position: relative;
  padding: var(--section-padding-y) 0;
}

/* Sections with a wave at the bottom need extra padding so content
   doesn't sit too close to the curved edge. */
.section:has(.section-wave.wave-bottom) {
  padding-bottom: calc(var(--section-padding-y) + 3rem);
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-y-mobile) 0;
  }
  .section:has(.section-wave.wave-bottom) {
    padding-bottom: calc(var(--section-padding-y-mobile) + 2rem);
  }
  .section-wave.wave-bottom {
    height: 50px;
  }
}

/* -------------------------------------------------------------
   Buttons & links
   ------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--rum-burgundy);
  color: var(--rum-serenade);
}

.btn-primary:hover {
  background: var(--rum-orange);
  color: var(--rum-serenade);
}

.btn-pink {
  background: var(--rum-geraldine);
  color: var(--rum-burgundy);
}

.btn-pink:hover {
  background: var(--rum-serenade);
  color: var(--rum-burgundy);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 1rem 1.875rem;
}

.link-arrow {
  display: inline-block;
  font-weight: 700;
  color: var(--rum-burgundy);
  text-decoration: none;
  border-bottom: 2px solid var(--rum-burgundy);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-arrow:hover {
  color: var(--rum-orange);
  border-bottom-color: var(--rum-orange);
}

/* -------------------------------------------------------------
   Header — Orange bg, Monarch landscape wordmark, straight edge
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rum-orange);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 24px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a:not(.btn) {
  color: var(--rum-serenade);
  font-weight: 500;
  font-size: 0.9375rem;
}

.primary-nav a:not(.btn):hover {
  color: var(--rum-geraldine);
}

/* Contact button override — sits on orange header */
.site-header .btn-primary {
  background: var(--rum-burgundy);
  color: var(--rum-serenade);
}

.site-header .btn-primary:hover {
  background: var(--rum-black);
  color: var(--rum-serenade);
}

@media (max-width: 600px) {
  .primary-nav {
    gap: 1.25rem;
  }
  .primary-nav a:not(.btn) {
    font-size: 0.875rem;
  }
  .logo-img {
    height: 20px;
  }
  .btn {
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
  }
}

/* -------------------------------------------------------------
   Hero — text in front, mark layered behind on the right
   ------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 7rem 0 7rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--rum-orange);
}

.hero .lead {
  max-width: 42ch;
  margin-bottom: 2.75rem;
  color: var(--rum-orange);
}

.section-wave {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 3;
}

.section-wave.wave-bottom {
  bottom: 0;
  height: 90px;
}

.hero-mark {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  z-index: 1;
  width: 720px;
  pointer-events: none;
}

.hero-mark-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .hero-mark {
    right: -15%;
    width: 620px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 4.5rem 0 3rem;
  }
  .hero-inner {
    min-height: 460px;
  }
  .hero-mark {
    right: -25%;
    width: 480px;
    opacity: 0.7;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 4rem 0 2.5rem;
  }
  .hero-inner {
    min-height: 380px;
  }
  .hero-mark {
    right: -35%;
    width: 360px;
    opacity: 0.55;
  }
}

/* -------------------------------------------------------------
   Section: Who we work with (Orange bg, white text)
   ------------------------------------------------------------- */
.who {
  background: var(--rum-orange);
  color: var(--rum-serenade);
}

.who h2 {
  max-width: 26ch;
  margin-bottom: 3.5rem;
  color: var(--rum-serenade);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Gap matches container left/right padding so spacing reads as uniform
     across the row (edge → card 1 → card 2 → ... → edge). */
  gap: 1.5rem;
}

.card h3 {
  margin-bottom: 0.875rem;
  color: var(--rum-burgundy);
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--rum-burgundy);
}

@media (max-width: 1000px) {
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Section: Differentiator (Geraldine pink — primary brand surface)
   ------------------------------------------------------------- */
.differentiator {
  background: var(--rum-geraldine);
}

.differentiator h2 {
  margin-bottom: 1.75rem;
  max-width: 22ch;
  color: var(--rum-burgundy);
}

.differentiator p {
  font-size: 1.0625rem;
  color: var(--rum-burgundy);
}

.differentiator strong {
  color: var(--rum-burgundy);
}

.capability-tags {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.capability-tags li {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rum-burgundy);
  background: var(--rum-serenade);
  padding: 0.625rem 1.125rem;
  border-radius: 100px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid rgba(88, 8, 4, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.capability-tags li:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(88, 8, 4, 0.12);
}

.differentiator .link-arrow {
  color: var(--rum-burgundy);
  border-bottom-color: var(--rum-burgundy);
}

.differentiator .link-arrow:hover {
  color: var(--rum-black);
  border-bottom-color: var(--rum-black);
}

/* -------------------------------------------------------------
   Section: How we work (Serenade bg, orange text — matches hero)
   ------------------------------------------------------------- */
.how h2 {
  margin-bottom: 1.5rem;
  color: var(--rum-orange);
}

.how p {
  color: var(--rum-orange);
}

/* -------------------------------------------------------------
   Section: Testimonials (Serenade bg, Burgundy text)
   ------------------------------------------------------------- */
.testimonials {
  background: var(--rum-serenade);
  color: var(--rum-burgundy);
  padding-top: 3rem;
  padding-bottom: 6.5rem;
}

.quote {
  margin: 0 0 4.5rem;
  padding-top: 2rem;
  position: relative;
}

.quote:last-child {
  margin-bottom: 0;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: var(--font);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--rum-burgundy);
}

.quote p {
  font-family: var(--font);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--rum-burgundy);
  margin: 0 0 1.5rem;
  max-width: 32ch;
}

.quote p strong {
  color: var(--rum-burgundy);
  font-weight: 700;
}

.quote footer {
  font-size: 0.9375rem;
  font-weight: 400;
}

.quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--rum-burgundy);
  margin-bottom: 0.125rem;
}

.quote footer span {
  color: var(--rum-burgundy);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .quote {
    padding-top: 1.5rem;
  }
  .quote::before {
    font-size: 4rem;
    top: -1rem;
  }
}

/* -------------------------------------------------------------
   Section: Contact form (Pink)
   ------------------------------------------------------------- */
.contact {
  background: var(--rum-geraldine);
  color: var(--rum-black);
  text-align: center;
  scroll-margin-top: 80px;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact h2 {
  color: var(--rum-burgundy);
  max-width: 22ch;
  margin: 0 auto 1.25rem;
}

.contact .lead {
  color: var(--rum-burgundy);
  opacity: 0.9;
  max-width: 38ch;
  margin: 0 auto 2.5rem;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 520px;
  text-align: left;
  margin: 0 auto;
}

.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--rum-black);
}

.form-row label .optional {
  font-weight: 400;
  opacity: 0.65;
  font-size: 0.875rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(88, 8, 4, 0.18);
  border-radius: 8px;
  background: var(--rum-serenade);
  color: var(--rum-black);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rum-burgundy);
  box-shadow: 0 0 0 3px rgba(88, 8, 4, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.75rem;
}

/* -------------------------------------------------------------
   Section: Portfolio (Serenade bg, Burgundy cards)
   Pairs with Testimonials below as one "proof zone" — tightened
   bottom padding so the two sections read as a single block.
   ------------------------------------------------------------- */
.portfolio {
  background: var(--rum-serenade);
  color: var(--rum-burgundy);
  padding-bottom: 2rem;
}

.portfolio h2 {
  margin-bottom: 2.5rem;
  max-width: 22ch;
  color: var(--rum-burgundy);
}

/* Wrap allows the scroll container to extend full-bleed beyond the .container */
.portfolio-scroll-wrap {
  position: relative;
  margin-top: 0;
}

.portfolio-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.5rem 2rem;
  justify-content: safe center;
  scrollbar-width: thin;
  scrollbar-color: var(--rum-burgundy) rgba(88, 8, 4, 0.15);
}

/* Styled scrollbar (webkit browsers) */
.portfolio-scroll::-webkit-scrollbar {
  height: 8px;
}

.portfolio-scroll::-webkit-scrollbar-track {
  background: rgba(88, 8, 4, 0.12);
  border-radius: 4px;
}

.portfolio-scroll::-webkit-scrollbar-thumb {
  background: var(--rum-burgundy);
  border-radius: 4px;
}

.portfolio-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--rum-black);
}

/* Card */
.portfolio-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background: var(--rum-serenade);
  border: 1px solid var(--rum-burgundy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(88, 8, 4, 0.06);
  display: flex;
  flex-direction: column;
}

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: rgba(88, 8, 4, 0.08);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-body h3 {
  margin: 0 0 0.625rem;
  font-size: 1.25rem;
  color: var(--rum-burgundy);
  letter-spacing: -0.02em;
}

.portfolio-card-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--rum-burgundy);
  opacity: 0.9;
}

@media (max-width: 600px) {
  .portfolio-card {
    flex: 0 0 280px;
  }
  .portfolio-scroll {
    gap: 1rem;
    padding: 1rem 1.25rem 1.5rem;
  }
}

/* -------------------------------------------------------------
   About page hero — text left, illustrated portrait right
   ------------------------------------------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero-text {
  max-width: 560px;
}

.about-hero-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 50%;
  display: block;
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-hero-portrait {
    order: -1;
  }
  .portrait-img {
    max-width: 220px;
  }
}

/* -------------------------------------------------------------
   Page hero (used on inner pages — narrower, less dramatic than home hero)
   ------------------------------------------------------------- */
.hero-page {
  padding: 5rem 0 5rem;
  min-height: auto;
}

.hero-page h1 {
  margin-bottom: 1.5rem;
  color: var(--rum-orange);
}

.hero-page .lead {
  color: var(--rum-orange);
  max-width: 56ch;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   Body prose lists (use inside .prose-list class)
   ------------------------------------------------------------- */
.prose-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.prose-list li {
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
  line-height: 1.6;
}

.prose-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rum-monarch);
  font-weight: 700;
}

/* List text colour on pink (differentiator) sections — match body text */
.differentiator .prose-list li {
  color: var(--rum-burgundy);
}

/* -------------------------------------------------------------
   Sub-headings within a section
   ------------------------------------------------------------- */
.sub-heading {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--rum-monarch);
  margin: 2rem 0 0.75rem;
}

/* -------------------------------------------------------------
   Do / Don't lists (How I work — what I do / what I don't)
   ------------------------------------------------------------- */
.do-list,
.dont-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.75rem;
}

.do-list li,
.dont-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  line-height: 1.5;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.do-list li:first-child,
.dont-list li:first-child {
  border-top: 0;
}

.do-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--rum-orange);
  font-weight: 900;
}

.dont-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--rum-monarch);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
}

/* -------------------------------------------------------------
   Engagement tiers (How I work — engagement options section)
   ------------------------------------------------------------- */
.engagement-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2.5rem;
}

.engagement-tier {
  background: var(--rum-serenade);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  box-shadow: 0 6px 20px rgba(88, 8, 4, 0.08);
}

.engagement-tier h3 {
  color: var(--rum-burgundy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.tier-detail {
  font-size: 0.9375rem;
  color: var(--rum-monarch);
  margin: 0 0 1rem;
  font-weight: 600;
}

.tier-summary {
  font-size: 0.9375rem;
  color: var(--rum-burgundy);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.engagement-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement-tier ul li {
  font-size: 0.9375rem;
  color: var(--rum-burgundy);
  padding: 0.5rem 0;
  border-top: 1px solid rgba(88, 8, 4, 0.1);
}

.engagement-tier ul li:first-child {
  border-top: 0;
}

@media (max-width: 900px) {
  .engagement-tiers {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Blog index (list of posts)
   ------------------------------------------------------------- */
.blog-list {
  padding-top: 2rem;
}

.blog-card {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(88, 8, 4, 0.12);
}

.blog-card:last-child {
  border-bottom: 0;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--rum-burgundy);
  opacity: 0.7;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-card-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 0.875rem;
}

.blog-card-title a {
  color: var(--rum-black);
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-card-title a:hover {
  color: var(--rum-orange);
}

.blog-card-excerpt {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--rum-black);
  margin: 0 0 1.25rem;
  max-width: 60ch;
}

/* -------------------------------------------------------------
   Blog post (article page)
   ------------------------------------------------------------- */
.blog-post-header {
  padding: 4rem 0 2rem;
}

.blog-post-meta {
  font-size: 0.875rem;
  color: var(--rum-burgundy);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.blog-post-meta a {
  color: var(--rum-burgundy);
  text-decoration: none;
}

.blog-post-meta a:hover {
  color: var(--rum-orange);
}

.blog-post-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--rum-black);
  margin: 0;
  max-width: 22ch;
}

.blog-post-body {
  padding: 1.5rem 0 5rem;
}

.blog-lead {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--rum-burgundy);
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.blog-post-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rum-black);
  margin: 0 0 1.25rem;
}

.blog-post-body h2 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--rum-burgundy);
  margin: 2.75rem 0 1rem;
}

.blog-post-body a {
  color: var(--rum-monarch);
  text-decoration: underline;
  text-decoration-color: var(--rum-geraldine);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.blog-post-body a:hover {
  color: var(--rum-burgundy);
  text-decoration-color: var(--rum-orange);
}

.blog-divider {
  border: 0;
  border-top: 1px solid rgba(88, 8, 4, 0.18);
  margin: 2.5rem 0;
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
  background: var(--rum-burgundy);
  color: var(--rum-serenade);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logo-img-footer {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0;
  color: var(--rum-serenade);
  opacity: 0.9;
  max-width: 32ch;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
}

.footer-contact a {
  color: var(--rum-serenade);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-contact a:hover {
  color: var(--rum-geraldine);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 242, 230, 0.15);
  font-size: 0.875rem;
}

.footer-meta a {
  color: var(--rum-serenade);
  opacity: 0.75;
  text-decoration: none;
}

.footer-meta a:hover {
  opacity: 1;
  color: var(--rum-geraldine);
}

.footer-meta span {
  color: var(--rum-serenade);
  opacity: 0.5;
  margin-left: auto;
}

@media (max-width: 600px) {
  .footer-meta span {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* -------------------------------------------------------------
   Focus states (accessibility)
   ------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--rum-orange);
  outline-offset: 3px;
}
