:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-soft: #fff2e8;
  --text: #1c1a17;
  --muted: #5c5148;
  --brand: #d6472b;
  --brand-dark: #b63a22;
  --accent: #f4a259;
  --line: #ecd9c8;
  --success: #1f7a4b;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px rgba(95, 44, 18, 0.1);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(244, 162, 89, 0.28), transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(214, 71, 43, 0.2), transparent 38%),
    linear-gradient(180deg, #fff9f4 0%, #fffdf9 48%, #fff8f0 100%);
  line-height: 1.75;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--brand);
}

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

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

.topbar {
  background: #20140f;
  color: #fff4e9;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 1px solid rgba(236, 217, 200, 0.7);
  backdrop-filter: blur(8px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-badge {
  width: 40px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #eb6f39);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(214, 71, 43, 0.3);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  padding: 0.46rem 0.7rem;
}

.nav-menu {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: #2e251d;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: #ffe8d5;
}

.cta-mini {
  background: var(--brand);
  color: #fff !important;
}

main {
  padding-bottom: 4.6rem;
}

.hero {
  padding: 3.8rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff4e8;
  color: #8d2f1e;
  border: 1px solid #ffd8be;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3,
h4 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: #221912;
}

h1 {
  font-size: clamp(2rem, 2.8vw, 3.1rem);
}

h2 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.lead {
  font-size: 1.14rem;
  color: #3a2d24;
  max-width: 65ch;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  padding: 0.76rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #ef6e36);
  box-shadow: 0 14px 24px rgba(214, 71, 43, 0.26);
}

.btn-outline {
  background: #fff;
  border-color: #e8c7ad;
  color: #321f14;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.home-page .hero {
  padding-top: 4.2rem;
}

.home-hero-grid {
  align-items: stretch;
  grid-template-columns: 1.05fr 0.95fr;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.3rem;
}

.home-hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.78rem;
  border-radius: 999px;
  border: 1px solid #edd7c6;
  background: rgba(255, 255, 255, 0.82);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4c3426;
}

.home-hero-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.home-hero-points p {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid #eedbcf;
  background: rgba(255, 255, 255, 0.72);
}

.home-hero-panel {
  display: grid;
  overflow: hidden;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at top right, rgba(244, 162, 89, 0.2), transparent 34%),
    linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.home-hero-media {
  border-bottom: 1px solid rgba(236, 217, 200, 0.9);
}

.home-hero-panel-card {
  padding: 1.3rem 1.35rem 1.45rem;
}

.home-hero-panel-card h2 {
  margin-bottom: 0.75rem;
}

.guide-page .hero {
  padding-top: 4rem;
}

.guide-hero-grid {
  align-items: stretch;
}

.guide-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-hero-actions {
  margin-bottom: 1.35rem;
}

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

.guide-hero-stats article {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #ecd9ca;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(95, 44, 18, 0.06);
}

.guide-hero-stats strong {
  display: block;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.guide-hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.guide-hero-visual {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.guide-hero-visual img {
  width: 100%;
  height: auto;
}

.guide-hero-note {
  padding: 1.2rem 1.3rem 1.35rem;
  border-top: 1px solid #eeded1;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.82), rgba(255, 255, 255, 0.98));
}

.guide-start-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.guide-start-card,
.guide-start-link {
  display: block;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid #ecd9ca;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(95, 44, 18, 0.07);
  text-decoration: none;
}

.guide-start-link strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  color: #261b15;
}

.guide-start-link span {
  color: var(--muted);
}

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

.guide-category-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid #ecd9ca;
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0.95), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 18px 38px rgba(95, 44, 18, 0.07);
}

.guide-category-card--primary {
  background:
    radial-gradient(circle at top left, rgba(244, 162, 89, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 244, 235, 0.98), rgba(255, 255, 255, 0.98));
}

.guide-category-card img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 1rem;
}

.guide-category-count {
  margin: 0 0 0.4rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a14a2d;
}

.guide-category-card h3 {
  margin-bottom: 0.65rem;
}

.guide-category-card p {
  margin-top: 0;
}

.guide-category-card a,
.guide-flow-steps h3,
.guide-shortcuts .card a {
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.guide-flow-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.2rem;
  align-items: start;
}

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

.guide-flow-steps article {
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid #ecd9ca;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(95, 44, 18, 0.07);
}

.guide-flow-steps strong {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #ef6e36);
  color: #fff;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.home-section-kicker,
.home-curated-label {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a14a2d;
}

.home-offer-ribbon,
.home-editorial-promo,
.home-curated {
  position: relative;
}

.home-offer-ribbon::before,
.home-editorial-promo::before,
.home-curated::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 162, 89, 0.08), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(214, 71, 43, 0.08), transparent 28%);
}

.home-offer-ribbon-grid,
.home-editorial-promo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  border: 1px solid rgba(236, 217, 200, 0.9);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 247, 239, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 22px 48px rgba(95, 44, 18, 0.08);
}

.home-offer-ribbon-copy h2,
.home-editorial-promo-copy h2 {
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.home-offer-ribbon-copy p:last-of-type,
.home-editorial-promo-copy p:last-of-type {
  margin-bottom: 0;
}

.home-offer-ribbon-media,
.home-editorial-promo-media {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #ecd8c9;
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 18px 44px rgba(95, 44, 18, 0.12);
}

.home-offer-ribbon-media img,
.home-editorial-promo-media img {
  width: 100%;
  height: auto;
}

.home-editorial-promo-grid {
  grid-template-columns: 1fr;
}

.home-editorial-promo-copy {
  order: 1;
}

.home-editorial-promo-media {
  order: 2;
}

.home-editorial-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.1rem;
}

.home-editorial-links a {
  text-decoration: none;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.home-curated .wrap {
  position: relative;
}

.home-curated-header {
  margin-bottom: 1.6rem;
}

.home-curated-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.1rem;
}

.home-curated-feature {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid #ecd8c9;
  background:
    radial-gradient(circle at top left, rgba(244, 162, 89, 0.14), transparent 34%),
    linear-gradient(160deg, #fff6ed 0%, #ffffff 52%, #fff9f3 100%);
  box-shadow: 0 26px 54px rgba(95, 44, 18, 0.09);
}

.home-curated-feature h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.home-curated-feature-copy p:last-of-type {
  margin-bottom: 0;
}

.home-curated-feature-visual {
  border-radius: 24px;
  padding: 1.1rem;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(244, 162, 89, 0.18), transparent 48%),
    linear-gradient(180deg, #fff5ea 0%, #fffdfb 100%);
  border: 1px solid rgba(236, 216, 201, 0.88);
}

.home-curated-feature-visual img {
  width: min(100%, 440px);
}

.home-curated-side {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid #ecd8c9;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(95, 44, 18, 0.08);
}

.home-curated-side-media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #efdccc;
  background: #fff8f3;
}

.home-curated-side-media img {
  width: 100%;
  height: auto;
}

.home-curated-side-copy h3 {
  margin-bottom: 0.55rem;
}

.home-curated-side-copy p {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.home-curated-side-copy a {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

section {
  padding: 3rem 0;
}

.section-intro {
  margin-bottom: 1.35rem;
}

.section-intro p {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 72ch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1.1rem;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #e7b38c;
  color: inherit;
}

.card img {
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
}

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

.highlight {
  background: linear-gradient(145deg, #fff5ea, #fff);
  border: 1px solid #f2d5bf;
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.list-clean {
  margin: 0;
  padding-left: 1.2rem;
}

.list-clean li {
  margin-bottom: 0.55rem;
}

.article-body {
  display: grid;
  gap: 1.35rem;
}

.article-body p {
  margin: 0;
}

.article-callout {
  background: #fff7ef;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.95rem 1rem;
}

.offer-strip {
  margin-top: 1.3rem;
  border: 1px solid #f1d1b6;
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #fff5ea;
}

.offer-strip h3 {
  margin-bottom: 0.3rem;
}

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

.offer-item {
  background: #fff;
  border: 1px solid #ecd4bf;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.offer-item p {
  margin-top: 0;
  margin-bottom: 0.55rem;
  color: #41352a;
}

.offer-item h3 {
  margin-bottom: 0.4rem;
}

.offer-visual {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid #f1dfd1;
  background:
    radial-gradient(circle at top left, rgba(244, 162, 89, 0.18), transparent 36%),
    linear-gradient(180deg, #fff9f2 0%, #fff 100%);
  padding: 0.5rem;
  margin-bottom: 0.8rem;
}

.offer-item .offer-link {
  display: inline-flex;
  margin-top: 0.2rem;
}

.offer-link,
.text-aff {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.text-aff {
  white-space: nowrap;
}

.promo-section {
  padding-top: 0;
}

.promo-section-header {
  margin-bottom: 1rem;
}

.promo-section-header p {
  margin: 0.65rem 0 0;
  max-width: 72ch;
  color: var(--muted);
}

.promo-grid {
  display: grid;
  gap: 1rem;
}

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

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

.promo-card {
  background: linear-gradient(180deg, #fff9f4 0%, #ffffff 100%);
  border: 1px solid #edd4c0;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 14px 28px rgba(95, 44, 18, 0.08);
}

.promo-card--featured {
  background: linear-gradient(135deg, #fff3e8 0%, #fffaf6 55%, #ffffff 100%);
}

.promo-card-kicker {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #974329;
}

.promo-card-copy {
  margin: 0;
  color: var(--muted);
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top left, rgba(244, 162, 89, 0.16), transparent 38%),
    linear-gradient(180deg, #fff7ef 0%, #fff 100%);
  border: 1px solid #f0ddce;
  padding: 0.9rem;
  overflow: hidden;
}

.promo-banner--wide {
  min-height: 180px;
}

.promo-banner img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 240px;
}

.promo-banner--visual img {
  width: 100%;
  max-height: none;
}

.promo-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 190px;
  text-decoration: none;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  padding: 0.76rem 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #ef6e36);
  box-shadow: 0 14px 24px rgba(214, 71, 43, 0.2);
}

.wide-promo {
  padding-top: 0;
}

.wide-promo .wrap {
  display: grid;
  gap: 1rem;
}

.wide-promo-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid #ecd3c0;
  box-shadow: var(--shadow);
  background: #fff;
}

.wide-promo-link img {
  width: 100%;
  height: auto;
  display: block;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.faq p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.notice {
  border-radius: var(--radius-md);
  border: 1px solid #d6eddf;
  background: #f5fcf7;
  padding: 0.9rem 1rem;
  color: #184f31;
}

.site-footer {
  background: #1c120f;
  color: #f8ebe1;
  padding: 2.6rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.site-footer a {
  color: #ffd4ba;
}

.footer-title {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.footer-note {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: #ddc1ae;
}

.footer-partner {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 212, 186, 0.18);
}

.footer-partner-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.7rem;
  text-decoration: none;
}

.footer-partner-link span {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-weight: 700;
}

.footer-partner-link img {
  width: auto;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #fff;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e5c6ae 20%, #e5c6ae 80%, transparent);
  margin: 0.5rem 0 0;
}

.breadcrumbs {
  margin-top: 1.1rem;
  margin-bottom: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.88rem;
  color: #5e4b3b;
}

.breadcrumbs a {
  color: #5e4b3b;
}

.tag {
  display: inline-block;
  border: 1px solid #e4cdb8;
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  margin-right: 0.45rem;
  margin-bottom: 0.45rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  color: #4b3a2d;
  background: #fff;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-2,
  .footer-grid,
  .cards,
  .guide-hero-stats,
  .guide-start-grid,
  .guide-category-grid,
  .guide-flow-grid,
  .guide-flow-steps,
  .home-offer-ribbon-grid,
  .home-editorial-promo-grid,
  .home-curated-grid,
  .home-curated-feature,
  .offer-grid,
  .promo-grid--2,
  .promo-grid--3 {
    grid-template-columns: 1fr;
  }

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

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 0.85rem 1.1rem 1rem;
    background: #fffaf6;
    border-bottom: 1px solid #ebd7c8;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.open {
    display: flex;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(var(--content), calc(100% - 1.4rem));
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero {
    padding-top: 2.7rem;
  }

  .promo-banner,
  .promo-banner--wide {
    min-height: 160px;
  }

  .home-offer-ribbon-grid,
  .home-editorial-promo-grid,
  .home-curated-feature,
  .guide-start-card,
  .guide-start-link,
  .guide-category-card,
  .guide-flow-steps article {
    padding: 1rem;
    border-radius: 22px;
  }

  .home-curated-feature h3,
  .home-offer-ribbon-copy h2,
  .home-editorial-promo-copy h2 {
    max-width: none;
  }

  .home-hero-meta {
    gap: 0.55rem;
  }
}
