:root {
  --bg: #f8f3ea;
  --paper: #fffdfa;
  --ink: #18202b;
  --muted: #5e6470;
  --accent: #dc5c45;
  --accent-2: #0e7f80;
  --line: rgba(24, 32, 43, 0.1);
  --radius: 18px;
  --shadow: 0 12px 32px rgba(24, 32, 43, 0.06), 0 2px 6px rgba(24, 32, 43, 0.04);
  --shadow-hover: 0 20px 44px rgba(24, 32, 43, 0.12), 0 4px 12px rgba(24, 32, 43, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(220, 92, 69, 0.18), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(14, 127, 128, 0.16), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

img,
svg,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(248, 243, 234, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.brand-logo {
  height: 220px;
  width: auto;
  display: block;
  background: transparent;
  margin: -75px -50px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: flex-end;
}

.primary-nav a {
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 0.72rem;
  border-radius: 10px;
  font-size: 0.96rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-nav a:hover {
  color: var(--ink);
  background: rgba(24, 32, 43, 0.05);
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent), #c44a35) !important;
  margin-left: 0.25rem;
  padding: 0.42rem 0.85rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(220, 92, 69, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #c44a35, var(--accent)) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220, 92, 69, 0.35);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle[aria-expanded='true'] {
  background: var(--ink);
  color: #fff;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.primary-nav.is-open {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.75rem;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--accent), #b8402c);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220, 92, 69, 0.32), 0 1px 3px rgba(220, 92, 69, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 92, 69, 0.4), 0 2px 6px rgba(220, 92, 69, 0.2);
  background: linear-gradient(135deg, #b8402c, var(--accent));
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(220, 92, 69, 0.25);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(24, 32, 43, 0.16);
  box-shadow: none;
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(24, 32, 43, 0.35);
  box-shadow: 0 4px 14px rgba(24, 32, 43, 0.1);
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1,
.section h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
}

.lead {
  max-width: 52ch;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-panel {
  background: linear-gradient(160deg, rgba(255, 253, 250, 0.97), rgba(255, 246, 233, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
  backdrop-filter: blur(6px);
}

.hero-panel h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  font-family: "Manrope", sans-serif;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-panel span {
  font-weight: 800;
}

.hero-panel p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}

.hero-bg-shape-1 {
  width: 260px;
  height: 260px;
  background: rgba(220, 92, 69, 0.24);
  left: -80px;
  top: 60px;
}

.hero-bg-shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(14, 127, 128, 0.2);
  right: -120px;
  top: 20px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-size: 0.74rem;
  background: rgba(14, 127, 128, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 127, 128, 0.15);
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-head p {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.65;
}

.stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stats article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-2);
  border-radius: 14px;
  text-align: center;
  padding: 1.35rem 1rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.stats article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.stats h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--accent-2);
}

.stats p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.card-grid,
.insight-grid,
.quote-grid {
  display: grid;
  gap: 1.15rem;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.command-card {
  background: linear-gradient(170deg, rgba(255, 253, 250, 0.98), rgba(255, 247, 235, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.command-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.command-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.metric-value {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.1;
}

.metric-sub {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.command-footer {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.api-status {
  margin: 0;
}

.recommendation-list {
  margin: 0;
  padding: 1rem 1rem 1rem 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.recommendation-list li {
  color: var(--muted);
  margin-bottom: 0.45rem;
}

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

.talent-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.talent-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.talent-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.talent-card p {
  margin: 0.2rem 0;
  color: var(--muted);
}

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

.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.about-card h3 {
  margin-top: 0;
  color: var(--accent-2);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.job-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.job-header h3 {
  margin: 0;
  flex: 1;
}

.job-type {
  display: inline-block;
  background: var(--accent-2);
  color: white;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.job-company {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.job-location {
  margin: 0;
  color: var(--muted);
}

.job-description {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.job-meta span {
  display: flex;
  align-items: center;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.skill-tag {
  display: inline-block;
  background: rgba(220, 92, 69, 0.08);
  color: var(--accent);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 180ms ease;
}

.skill-tag:hover {
  background: rgba(220, 92, 69, 0.16);
}

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

.benefit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
  margin-top: 0;
  color: var(--accent-2);
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.insight-card,
blockquote,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.service-card:hover,
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-card {
  border-left: 3px solid var(--accent);
}

.insight-card {
  border-left: 3px solid var(--accent-2);
}

.service-card h3,
.insight-card h3 {
  margin-top: 0;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.split-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.55), rgba(255, 253, 250, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  display: grid;
  gap: 1rem;
}

.timeline li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  position: relative;
  padding-left: 3.2rem;
}

.timeline li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.timeline h3 {
  margin: 0 0 0.3rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.insight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonials {
  padding: 3.5rem 0;
}

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

blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  position: relative;
  border-left: 3px solid var(--accent);
}

blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.2rem;
  left: 0.5rem;
  font-size: 3rem;
  font-family: "Fraunces", serif;
  color: rgba(220, 92, 69, 0.18);
  line-height: 1;
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.contact-section {
  background: linear-gradient(170deg, #18202b, #1d2836);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-section .eyebrow {
  color: var(--accent);
  background: rgba(220, 92, 69, 0.15);
  border-color: rgba(220, 92, 69, 0.2);
}

.contact-section h2 {
  color: #fff;
}

.contact-section p,
.contact-section li {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section .contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section label {
  color: rgba(255, 255, 255, 0.85);
}

.contact-section input,
.contact-section select,
.contact-section textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 92, 69, 0.2);
}

.contact-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.75rem;
}

.contact-status {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.contact-status.is-success {
  color: #3dd68c;
}

.contact-status.is-error {
  color: #ff6b6b;
}

label {
  display: grid;
  gap: 0.32rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.72rem;
  font: inherit;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(14, 127, 128, 0.12);
}

.site-footer {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.5), rgba(255, 253, 250, 0.85));
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.scroll-top-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(24, 32, 43, 0.14);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.34s ease, transform 0.34s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .talent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .jobs-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .brand-logo {
    width: 300px;
    height: auto;
    display: block;
    background: transparent;
    margin: -50px -30px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 75px;
    right: 4%;
    left: 4%;
    width: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: grid;
    gap: 0.45rem;
    opacity: 0;
    transform: scale(0.98) translateY(-4px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .primary-nav a {
    padding: 0.58rem 0.66rem;
    border-radius: 10px;
    font-size: 0.96rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .section,
  .testimonials {
    padding: 2.8rem 0;
  }

  .card-grid,
  .command-grid,
  .about-grid,
  .benefits-grid,
  .jobs-grid,
  .insight-grid,
  .talent-grid,
  .quote-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================
   Blog & Article styles
   ===================== */

.blog-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 253, 250, 0.6), rgba(248, 243, 234, 0.9));
}

.blog-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.blog-post-list {
  display: grid;
  gap: 1.5rem;
  max-width: 780px;
}

.post-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-category {
  display: inline-block;
  background: rgba(14, 127, 128, 0.1);
  color: var(--accent-2);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-date,
.post-read-time {
  font-size: 0.86rem;
  color: var(--muted);
}

.post-date::before,
.post-read-time::before {
  content: "·";
  margin-right: 0.5rem;
}

.post-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.post-title a {
  color: var(--ink);
  transition: color 150ms ease;
}

.post-title a:hover {
  color: var(--accent-2);
}

.post-excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Individual article page */

.article-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 253, 250, 0.5), rgba(248, 243, 234, 0.85));
}

.article-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  max-width: 700px;
}

.breadcrumb {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 150ms ease;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.article-prose {
  max-width: 720px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.article-prose h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.015em;
}

.article-prose h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 1.75rem 0 0.6rem;
}

.article-prose p {
  margin: 0 0 1.25rem;
  color: var(--ink);
  line-height: 1.78;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
  line-height: 1.78;
}

.article-prose li {
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.prose-quote {
  background: linear-gradient(160deg, rgba(14, 127, 128, 0.07), rgba(14, 127, 128, 0.03));
  border: none;
  border-left: 4px solid var(--accent-2);
  border-radius: 0 10px 10px 0;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}

.prose-cta {
  background: linear-gradient(160deg, rgba(220, 92, 69, 0.07), rgba(220, 92, 69, 0.03));
  border: 1px solid rgba(220, 92, 69, 0.22);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.prose-cta p {
  margin: 0;
  font-weight: 600;
  font-size: 1.04rem;
  flex: 1;
}

.article-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.article-footer-inner {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Blog preview on homepage */

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-preview-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 760px) {
  .blog-hero {
    padding: 2.5rem 0 2rem;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .prose-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
