/* ============================================================
   DLT Appliance Repair — Homepage styles
   Deep navy #1B2A4A · safety orange #F26522 · warm white
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --navy-deep: #131F38;
  --navy-soft: #2A3C63;
  --orange: #F26522;
  --orange-dark: #D9550F;
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --ink: #1B2A4A;
  --muted: #5C6779;
  --line: #E8E5DF;
  --card-radius: 16px;
  --hero-overlay: 0.78;
  --shadow-soft: 0 2px 6px rgba(27, 42, 74, 0.06), 0 12px 32px rgba(27, 42, 74, 0.10);
  --shadow-lift: 0 4px 10px rgba(27, 42, 74, 0.08), 0 20px 44px rgba(27, 42, 74, 0.14);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; text-wrap: balance; margin: 0; }

p { text-wrap: pretty; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-sub {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  padding: 17px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.35);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); border-color: #FFFFFF; }

.btn-white {
  background: #FFFFFF;
  color: var(--orange-dark);
  box-shadow: 0 6px 18px rgba(19, 31, 56, 0.22);
}
.btn-white:hover { background: #FFF4ED; transform: translateY(-1px); }

/* ---------- Sticky header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--navy);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-bottom: 3px solid var(--orange);
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-tag {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  padding: 9px 14px;
  border-radius: 9px;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { background: #F1EFE9; color: var(--navy); }

.header-call {
  padding: 13px 22px;
  font-size: 15.5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

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

.hero {
  position: relative;
  background-image:
    linear-gradient(96deg,
      rgba(19, 31, 56, calc(var(--hero-overlay) + 0.14)) 0%,
      rgba(19, 31, 56, var(--hero-overlay)) 38%,
      rgba(27, 42, 74, calc(var(--hero-overlay) - 0.42)) 100%),
    url("images/hero-samsung-washer.jpeg");
  background-size: cover;
  background-position: center 38%;
  color: #FFFFFF;
}

.hero-inner {
  padding: 120px 0 150px;
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFC9A8;
  background: rgba(242, 101, 34, 0.18);
  border: 1px solid rgba(242, 101, 34, 0.45);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-sub {
  margin: 20px 0 32px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- Trust strip ---------- */

.trust-strip { position: relative; z-index: 5; margin-top: -64px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.trust-cell {
  background: var(--surface);
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FDEFE6;
  color: var(--orange-dark);
  display: grid;
  place-items: center;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ---------- What We Fix ---------- */

.fix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.fix-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.fix-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.fix-media {
  aspect-ratio: 3 / 2;
  background: #EDEBE5;
}
.fix-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Styled placeholder for cards without a client photo */
.media-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(120% 120% at 30% 20%, var(--navy-soft) 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.85);
}
.media-ph svg { opacity: 0.9; }
.media-ph .ph-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFB489;
}

.fix-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.fix-title-row { display: flex; align-items: center; gap: 12px; }

.fix-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--navy);
  color: #FFFFFF;
  display: grid;
  place-items: center;
}

.fix-card h3 { font-size: 20px; font-weight: 750; }

.fix-card p { margin: 2px 0 10px; color: var(--muted); font-size: 15.5px; }

.fix-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--orange-dark);
}
.fix-link:hover { text-decoration: underline; }

/* ---------- Inside the Job ---------- */

.inside { background: var(--navy); color: #FFFFFF; }
.inside .kicker { color: #FFB489; }
.inside .section-sub { color: rgba(255, 255, 255, 0.78); }

.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.job-card {
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.job-photo { height: 300px; }
.job-photo img { width: 100%; height: 100%; object-fit: cover; }

.job-caption { padding: 24px 26px 28px; display: flex; gap: 16px; }

.job-num {
  flex: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
  border: 1.5px solid rgba(242, 101, 34, 0.55);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.job-caption h3 { font-size: 19px; font-weight: 750; margin-bottom: 6px; color: #FFFFFF; }
.job-caption p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.74); }

.inside-cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}
.inside-cta p { margin: 0; font-weight: 600; color: rgba(255, 255, 255, 0.85); }

/* ---------- How It Works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #FFFFFF;
  font-size: 21px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(242, 101, 34, 0.35);
}

.step h3 { font-size: 21px; font-weight: 750; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Reviews ---------- */

.reviews { background: #F3F1EB; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars { color: var(--orange); font-size: 18px; letter-spacing: 3px; }

.review-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.reviewer { margin-top: auto; display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
}

.reviewer-name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.reviewer-meta { font-size: 13.5px; color: var(--muted); }

/* ---------- Service area ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.city-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}

.van-slot {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* ---------- Final CTA band ---------- */

.cta-band {
  background: linear-gradient(96deg, var(--orange-dark), var(--orange));
  color: #FFFFFF;
}

.cta-inner {
  padding: 76px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.cta-inner .cta-sub { margin: 10px 0 0; font-size: 17px; color: rgba(255, 255, 255, 0.92); }

.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.cta-phone {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.cta-phone:hover { text-decoration: underline; }

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

.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.80); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 64px 0 48px;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFB489;
}

.site-footer p, .site-footer li { font-size: 15px; line-height: 1.7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.site-footer a { color: #FFFFFF; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #FFFFFF; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .fix-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    box-shadow: 0 18px 32px rgba(27, 42, 74, 0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; font-size: 17px; }
  .nav-toggle { display: flex; }
  .header-call { padding: 12px 16px; font-size: 14.5px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-inner { padding: 84px 0 130px; }
  .hero-actions .btn { width: 100%; }
  .trust-strip { margin-top: -48px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-cell { padding: 20px 18px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .fix-grid, .review-grid, .inside-grid { grid-template-columns: 1fr; }
  .job-photo { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .van-slot { height: 280px; }
  .brand-tag { display: none; }
}

/* ---------- Service-area van photo ---------- */

.van-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer photo credit ---------- */

.footer-credit {
  padding: 0 0 26px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-credit a { color: rgba(255, 255, 255, 0.62); text-decoration: underline; }
.footer-credit a:hover { color: #FFFFFF; }

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

.contact-section { background: #F3F1EB; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-intro .section-sub { margin-bottom: 24px; }

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.contact-phone-link svg { color: var(--orange); }
.contact-phone-link:hover { color: var(--orange-dark); }

.contact-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.contact-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 13px;
  height: 7px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 30px 30px 32px;
  box-shadow: var(--shadow-soft);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { font-size: 14px; font-weight: 700; color: var(--navy); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #FFFFFF;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form .btn { width: 100%; margin-top: 4px; }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.cf-status { margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.cf-status.ok { color: #1B7A43; }
.cf-status.err { color: #C0341A; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Mobile sticky call bar ---------- */

.mobile-call-bar { display: none; }

@media (max-width: 860px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--orange);
    color: #FFFFFF;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    text-decoration: none;
    padding: 15px 16px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 20px rgba(19, 31, 56, 0.22);
  }
  .mobile-call-bar:active { background: var(--orange-dark); }
  /* the sticky bar replaces the header call button on small screens */
  .header-call { display: none; }
  /* keep content clear of the fixed bar */
  body { padding-bottom: 60px; }
}

/* ============================================================
   Blog
   ============================================================ */

.blog-hero {
  background: linear-gradient(96deg, var(--navy-deep), var(--navy) 60%, var(--navy-soft));
  color: #FFFFFF;
  padding: 72px 0 60px;
}
.blog-hero .hero-eyebrow { margin-bottom: 18px; }
.blog-hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 780px;
}
.blog-hero p {
  margin: 16px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.blog-list-section { padding-top: 64px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.blog-card-media { position: relative; aspect-ratio: 3 / 2; background: #EDEBE5; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }

.blog-tag {
  display: inline-block;
  background: rgba(242, 101, 34, 0.12);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.blog-card-media .blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(19, 31, 56, 0.82);
  color: #FFB489;
  backdrop-filter: blur(4px);
}

.blog-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-body h2 { font-size: 20px; font-weight: 750; line-height: 1.25; }
.blog-card-body p { margin: 0; color: var(--muted); font-size: 15px; }
.blog-meta { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--muted); }

/* ---------- Blog post ---------- */

.post { padding: 44px 0 80px; }
.post-wrap { max-width: 760px; }
.post-back {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
}
.post-back:hover { text-decoration: underline; }
.post-tag { margin-bottom: 16px; }
.post h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.post-lede { font-size: 19px; color: var(--muted); margin: 16px 0 10px; }
.post-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  margin: 24px 0 8px;
  box-shadow: var(--shadow-soft);
}

.post-body { font-size: 17.5px; line-height: 1.75; color: #2B3550; }
.post-body h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; margin: 40px 0 12px; }
.post-body h3 { font-size: 20px; font-weight: 750; margin: 30px 0 8px; }
.post-body p { margin: 0 0 18px; }
.post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--orange-dark); font-weight: 600; }
.post-body img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 26px 0;
  box-shadow: var(--shadow-soft);
}
.post-body strong { color: var(--ink); }
.post-body blockquote {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--orange);
  color: var(--navy);
  font-size: 19px;
}

.post-cta {
  margin-top: 48px;
  padding: 30px 32px;
  background: var(--navy);
  color: #FFFFFF;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.post-cta h3 { font-size: 21px; font-weight: 750; margin: 0 0 6px; color: #FFFFFF; }
.post-cta p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 15px; max-width: 420px; }

@media (max-width: 1020px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
