:root {
  --bg: #fff7f3;
  --surface: #ffffff;
  --surface-soft: #f8e4dc;
  --text: #25141e;
  --muted: #725a55;
  --rose: #dc8778;
  --rose-dark: #89352b;
  --blush: #e7998b;
  --champagne: #eac8b1;
  --line: rgba(137, 53, 43, 0.12);
  --shadow: 0 24px 70px rgba(93, 35, 26, 0.14);
  --shadow-soft: 0 14px 40px rgba(93, 35, 26, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 5%, rgba(184, 100, 114, 0.18), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(214, 185, 129, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.45), transparent 40%);
  z-index: -1;
}

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 245, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.18rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(184, 100, 114, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.nav-cta {
  color: white !important;
  background: var(--text) !important;
  box-shadow: 0 12px 28px rgba(25, 22, 23, 0.15);
}

.hero {
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 58px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--rose-dark);
  font-size: 0.84rem;
  font-weight: 750;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(72,45,51,0.05);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(184,100,114,0.13);
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  max-width: 850px;
  margin-bottom: 26px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose), var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--text);
  box-shadow: 0 18px 36px rgba(25, 22, 23, 0.18);
}

.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 18px 36px rgba(133, 66, 78, 0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.74);
  border-color: var(--line);
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.visual-panel {
  min-height: 610px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(245,238,233,0.78)),
    radial-gradient(circle at 80% 20%, rgba(184,100,114,0.22), transparent 34%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.book-mockup {
  width: min(340px, 78%);
  aspect-ratio: 3 / 4.35;
  margin: 0 auto;
  border-radius: 24px 18px 18px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(145deg, #2b2326, #8d4653 45%, #e7c0c7 100%);
  color: white;
  box-shadow: 28px 36px 70px rgba(54, 35, 39, 0.28);
  padding: 34px;
  position: relative;
  transform: rotate(-4deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book-mockup::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 26px;
  height: 100%;
  background: linear-gradient(90deg, #eee0d5, #fff8ef);
  border-radius: 0 18px 18px 0;
  box-shadow: inset 7px 0 14px rgba(0,0,0,0.08);
}

.book-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.78;
  font-weight: 800;
}

.book-title {
  font-size: 2.25rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 900;
  max-width: 230px;
}

.book-author {
  font-size: 0.95rem;
  opacity: 0.84;
  font-weight: 750;
}

.floating-card {
  position: absolute;
  left: -20px;
  bottom: 56px;
  width: 250px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.floating-card strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  max-width: 760px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.stat span {
  font-size: 0.9rem;
  color: var(--muted);
}

section {
  padding: 82px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

.section-head .copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--rose-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 12px;
}

.eyebrow-light {
  color: rgba(255,255,255,0.72);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 16px;
}

.section-head p,
.feature-card p,
.split p,
.book-copy p,
.quote p,
.contact-info p,
footer p {
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -44px;
  top: -44px;
  background: rgba(184,100,114,0.12);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--rose-dark);
  font-weight: 900;
}

.feature-card h3,
.quote h3 {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.portrait-card {
  min-height: 540px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.78)),
    linear-gradient(135deg, #f2d4d9, #f7efe5 55%, #dcc38d);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.8);
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: var(--rose-dark);
  font-weight: 850;
}

.split ul,
.book-copy ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.split li,
.book-copy li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.split li::before,
.book-copy li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  margin-top: 10px;
  flex: 0 0 auto;
}

.book-band {
  background: #171314;
  color: white;
  border-radius: 48px;
  padding: 56px;
  box-shadow: 0 28px 80px rgba(25,22,23,0.22);
  overflow: hidden;
  position: relative;
}

.book-band::before {
  content: "";
  position: absolute;
  inset: -35% auto auto 40%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184,100,114,0.28), transparent 62%);
  pointer-events: none;
}

.book-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.book-band .book-mockup {
  transform: rotate(2deg);
  box-shadow: 20px 30px 70px rgba(0,0,0,0.42);
}

.book-copy p,
.book-copy li {
  color: rgba(255,255,255,0.74);
}

.book-copy .eyebrow {
  color: var(--blush);
}

.book-copy h2 {
  color: white;
}

.book-copy .btn-primary {
  background: white;
  color: var(--text);
}

.book-copy .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.16);
}

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

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

.quote {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.quote p {
  font-size: 1.02rem;
}

.quote strong {
  display: block;
  margin-top: 22px;
  color: var(--text);
}

.cta {
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(184,100,114,0.92), rgba(133,66,78,0.96)),
    radial-gradient(circle at right, rgba(214,185,129,0.45), transparent 35%);
  color: white;
  padding: 58px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta p {
  color: rgba(255,255,255,0.82);
  max-width: 650px;
}

.mini-form {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  padding: 16px;
  display: flex;
  gap: 10px;
  backdrop-filter: blur(14px);
}

.mini-form input {
  flex: 1;
  border: none;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  background: white;
  color: var(--text);
  font: inherit;
}

.mini-form .btn {
  white-space: nowrap;
  background: var(--text);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
}

.contact-info {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

form {
  background: white;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: #fbfaf8;
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(184,100,114,0.46);
  box-shadow: 0 0 0 4px rgba(184,100,114,0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mt-28 {
  margin-top: 28px;
}

.mt-18 {
  margin-top: 18px;
}

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

  .feature-grid,
  .media-grid,
  .quote-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .visual-panel {
    min-height: 520px;
  }

  .floating-card {
    left: 16px;
    bottom: 24px;
  }

  section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .book-band,
  .cta {
    padding: 32px;
    border-radius: 32px;
  }

  .mini-form {
    display: grid;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.35rem;
  }

  .book-mockup {
    width: 84%;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 20px;
  }

  .visual-panel {
    min-height: auto;
    padding: 24px 16px;
  }
}





.retailers-page-hero {
  padding: 92px 0 34px;
}

.retailers-hero-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.retailers-hero-box .pill {
  margin-left: auto;
  margin-right: auto;
}

.retailers-hero-box h1 {
  margin-left: auto;
  margin-right: auto;
}

.retailers-hero-box .lead {
  margin-left: auto;
  margin-right: auto;
}

.retailers-page-section {
  padding: 34px 0 92px;
}

.retailers-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.retailer-box {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.retailer-box::before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  right: -55px;
  top: -55px;
  background: rgba(184, 100, 114, 0.13);
}

.retailer-letter {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--surface-soft), #ffffff);
  color: var(--rose-dark);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(93, 35, 26, 0.08);
  position: relative;
  z-index: 1;
}

.retailer-box h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.retailer-box p {
  color: var(--muted);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.retailer-box .btn {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.retailers-bottom-note {
  margin-top: 34px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.retailers-bottom-note p {
  color: var(--muted);
  max-width: 700px;
}

@media (max-width: 980px) {
  .retailers-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .retailers-page-hero {
    padding: 60px 0 24px;
  }

  .retailers-page-section {
    padding: 30px 0 60px;
  }

  .retailers-bottom-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .retailers-card-grid {
    grid-template-columns: 1fr;
  }

  .retailer-box {
    min-height: auto;
  }

  .retailers-hero-box {
    text-align: left;
  }

  .retailers-hero-box .pill,
  .retailers-hero-box h1,
  .retailers-hero-box .lead {
    margin-left: 0;
    margin-right: 0;
  }
}




/* Retailers page top spacing fix */
.retailers-page-hero {
  padding: 140px 0 70px;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.retailers-hero-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.retailers-hero-box .pill {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.retailers-hero-box h1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.retailers-hero-box .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.retailers-page-section {
  padding: 40px 0 92px;
}




/* Blog main page */
.blog-page-hero {
  padding: 140px 0 70px;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.blog-hero-box {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero-box .pill {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.blog-hero-box h1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.blog-hero-box .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.blog-list-section {
  padding: 40px 0 96px;
}

.blog-feature-band {
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(248,228,220,0.86)),
    radial-gradient(circle at right, rgba(220,135,120,0.18), transparent 34%);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.blog-feature-band h2 {
  margin-bottom: 0;
}

.blog-feature-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.blog-card-image {
  min-height: 210px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.38), transparent 30%),
    linear-gradient(135deg, rgba(37,20,30,0.10), rgba(137,53,43,0.20));
}

.blog-card-image span {
  position: relative;
  z-index: 1;
  color: white;
  background: rgba(37,20,30,0.58);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 850;
}

.blog-card-image-one {
  background:
    linear-gradient(135deg, rgba(137,53,43,0.90), rgba(220,135,120,0.72)),
    radial-gradient(circle at 25% 20%, rgba(234,200,177,0.88), transparent 32%);
}

.blog-card-image-two {
  background:
    linear-gradient(135deg, rgba(37,20,30,0.92), rgba(137,53,43,0.72)),
    radial-gradient(circle at 70% 28%, rgba(231,153,139,0.86), transparent 34%);
}

.blog-card-image-three {
  background:
    linear-gradient(135deg, rgba(220,135,120,0.88), rgba(234,200,177,0.76)),
    radial-gradient(circle at 35% 30%, rgba(137,53,43,0.54), transparent 36%);
}

.blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  color: var(--rose-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 26px;
}

.blog-card .btn {
  margin-top: auto;
}

.blog-bottom-cta {
  margin-top: 36px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(184,100,114,0.92), rgba(133,66,78,0.96)),
    radial-gradient(circle at right, rgba(234,200,177,0.42), transparent 38%);
  color: white;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.blog-bottom-cta h2 {
  color: white;
  margin-bottom: 12px;
}

.blog-bottom-cta p {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
}

.blog-bottom-cta .eyebrow {
  color: rgba(255,255,255,0.72);
}

.blog-bottom-cta .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.24);
}

@media (max-width: 980px) {
  .blog-page-hero {
    padding: 70px 0 40px;
    min-height: auto;
  }

  .blog-feature-band,
  .blog-bottom-cta {
    grid-template-columns: 1fr;
  }

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

  .blog-feature-band,
  .blog-bottom-cta {
    padding: 32px;
    border-radius: 32px;
  }
}

@media (max-width: 640px) {
  .blog-hero-box {
    text-align: left;
  }

  .blog-hero-box .pill,
  .blog-hero-box h1,
  .blog-hero-box .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .blog-card-image {
    min-height: 180px;
  }
}



/* Blog article page */
.blog-article-hero {
  padding: 125px 0 58px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.blog-article-hero-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.blog-article-hero-box .pill {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.blog-article-hero-box h1 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.blog-article-hero-box .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rose-dark);
  font-weight: 850;
  font-size: 0.94rem;
}

.blog-article-section {
  padding: 30px 0 96px;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.blog-article-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.article-meta-row {
  padding: 24px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--rose-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
}

.article-meta-row span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(248, 228, 220, 0.78);
}

.article-feature-image {
  min-height: 340px;
  padding: 34px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(37,20,30,0.86), rgba(137,53,43,0.62)),
    radial-gradient(circle at 72% 24%, rgba(234,200,177,0.88), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(220,135,120,0.56), transparent 38%);
  position: relative;
  overflow: hidden;
}

.article-feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(180deg, transparent, rgba(37,20,30,0.18));
}

.article-feature-image span {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.article-content {
  padding: 44px;
}

.article-content p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 22px;
}

.article-content .article-intro {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.72;
  letter-spacing: -0.015em;
}

.article-content h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-top: 44px;
  margin-bottom: 18px;
}

.article-quote {
  margin: 36px 0;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(184,100,114,0.92), rgba(133,66,78,0.96)),
    radial-gradient(circle at right, rgba(234,200,177,0.34), transparent 36%);
  color: white;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.article-quote p {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin-bottom: 0;
}

.article-disclaimer {
  margin-top: 40px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(248, 228, 220, 0.62);
  border: 1px solid var(--line);
}

.article-disclaimer p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

.blog-article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.sidebar-card {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.sidebar-card h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.sidebar-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.sidebar-dark {
  background:
    linear-gradient(135deg, #171314, #301725),
    radial-gradient(circle at right, rgba(220,135,120,0.22), transparent 36%);
  color: white;
}

.sidebar-dark .eyebrow {
  color: var(--blush);
}

.sidebar-dark p {
  color: rgba(255,255,255,0.76);
}

.sidebar-dark .btn-secondary {
  background: rgba(255,255,255,0.10);
  color: white;
  border-color: rgba(255,255,255,0.18);
}

.article-bottom-nav {
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .blog-article-hero {
    padding: 72px 0 40px;
    min-height: auto;
  }

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

  .blog-article-sidebar {
    position: static;
  }

  .article-content {
    padding: 32px;
  }

  .article-feature-image {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .blog-article-hero-box {
    text-align: left;
  }

  .blog-article-hero-box .pill,
  .blog-article-hero-box h1,
  .blog-article-hero-box .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .article-meta-row {
    padding: 20px;
  }

  .article-content {
    padding: 24px;
  }

  .blog-article-card {
    border-radius: 30px;
  }

  .article-feature-image {
    padding: 24px;
  }
}


