:root {
  --bg: #ece6db;
  --paper: #f4efe6;
  --paper-2: #f8f4ec;
  --card: #f6f1e8;
  --card-strong: #efe8dc;
  --ink: #182126;
  --ink-soft: #45515a;
  --ink-muted: #63707a;
  --line: #ddd2c0;
  --line-strong: #cdbfa8;
  --olive-900: #172026;
  --olive-850: #1d292c;
  --olive-800: #223030;
  --olive-700: #31433d;
  --olive-600: #42534a;
  --accent: #b87646;
  --accent-2: #cb8a58;
  --accent-soft: #e3c6a9;
  --success: #3c6b52;
  --shadow-soft: 0 12px 30px rgba(18, 23, 27, 0.08);
  --shadow-card: 0 18px 38px rgba(19, 25, 29, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ece7dd 0%, #f0ebe2 100%);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-shell { min-height: 100vh; }
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.page { padding-bottom: 44px; }
.section { margin-top: 34px; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.3));
  border: 1px solid rgba(205, 191, 168, 0.8);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.topbar {
  padding: 18px 0 14px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 56px;
  height: 66px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand-sub::before,
.brand-sub::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #bfb4a2;
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link {
  padding: 10px 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  border-color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .16s ease, filter .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.02); }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 12px; }
.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(184, 118, 70, 0.2);
}
.button-secondary,
.button-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 239, 230, 0.56);
}
.button-outline {
  color: var(--ink);
  border-color: rgba(120, 108, 93, 0.35);
  background: rgba(255,255,255,0.45);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(24,33,38,0.97) 0%, rgba(36,47,45,0.94) 52%, rgba(82,76,60,0.50) 100%),
    url('/assets/img/topo-dark-contour.svg') center/1500px auto no-repeat;
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 25%, rgba(232, 208, 176, 0.28) 0%, transparent 35%);
  pointer-events: none;
}
.hero { padding: 58px 56px 0; }
.page-hero { padding: 52px 52px 44px; }
.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #dbc7ac;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero h1 { font-size: clamp(3.2rem, 6vw, 5.9rem); max-width: 9.3ch; }
.page-hero h1 { font-size: clamp(3rem, 5vw, 4.85rem); max-width: 10.4ch; }
.hero p,
.page-hero p {
  margin: 24px 0 0;
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(243, 239, 230, 0.92);
  max-width: 34rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 24px 50px rgba(6, 9, 12, 0.18);
}
.hero-cover-stack {
  position: relative;
  width: min(100%, 530px);
  height: 420px;
}
.hero-book {
  position: absolute;
  bottom: 0;
  border-radius: 18px;
  box-shadow: 0 28px 54px rgba(8, 10, 12, 0.28);
}
.book-left {
  left: 32px;
  width: 210px;
  transform: rotate(-10deg);
  z-index: 1;
}
.book-center {
  left: 182px;
  width: 228px;
  z-index: 2;
}
.book-right {
  right: 10px;
  width: 248px;
  transform: translateY(-12px);
  z-index: 3;
}
.value-band {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(244, 239, 230, 0.96);
  color: var(--ink);
  border-top: 1px solid rgba(205, 191, 168, 0.55);
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.92rem;
  border-right: 1px solid rgba(205, 191, 168, 0.7);
}
.value-item:last-child { border-right: 0; }
.value-item img { width: 22px; height: 22px; opacity: 0.82; }

.grid-two {
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
  gap: 26px;
  align-items: stretch;
}
.section-heading {
  padding: 22px 12px 22px 8px;
}
.section-heading h2,
.center-cta h2,
.resource-panel h2,
.panel-top h2,
.callout h3,
.contact-card h2,
.form-card h2,
.section-title-row h2,
.feature-copy h2,
.about-story h2,
.quote-panel blockquote,
.page h2,
.page h3 {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.section-heading h2,
.center-cta h2,
.resource-panel h2 { font-size: clamp(2.25rem, 4vw, 3.4rem); line-height: 0.98; }
.section-heading p,
.center-cta p,
.resource-panel p,
.about-story p,
.contact-card p,
.form-card p,
.feature-copy p,
.callout p,
.page p:not(.small-note) {
  color: var(--ink-soft);
  line-height: 1.7;
}
.accent-rule {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin: 22px 0 18px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.category-card {
  position: relative;
  min-height: 220px;
  padding: 28px 26px;
  border-radius: 24px;
  border: 1px solid rgba(205,191,168,.75);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12)),
    url('/assets/img/topo-light-contour.svg') center/cover no-repeat,
    var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.category-card.dark {
  color: var(--paper);
  border-color: rgba(243,239,230,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    url('/assets/img/topo-dark-contour.svg') center/cover no-repeat,
    linear-gradient(160deg, var(--olive-850), #415148);
}
.category-card.dark.image {
  background-size: cover;
  background-position: center;
}
.category-card h3 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  margin-bottom: 12px;
}
.category-card p {
  position: relative;
  z-index: 1;
  max-width: 28ch;
  margin: 0;
}
.link-arrow,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.inline-link::after {
  content: "→";
}
.path-swoosh {
  position: absolute;
  right: 30px;
  top: 28px;
  width: 62px;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(188,168,140,0.04), rgba(188,168,140,0.52));
  transform: rotate(18deg);
  opacity: 0.6;
}
.category-card.dark .path-swoosh {
  background: linear-gradient(180deg, rgba(243,239,230,0.06), rgba(243,239,230,0.52));
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.brand-panel {
  background:
    radial-gradient(circle at 75% 28%, rgba(191, 173, 144, 0.18), transparent 40%),
    url('/assets/img/topo-dark-contour.svg') center/cover no-repeat,
    linear-gradient(135deg, var(--olive-900), #425147);
  color: var(--paper);
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 38px;
}
.brand-stack {
  text-align: center;
  max-width: 470px;
}
.brand-mark-large {
  width: 104px;
  margin: 0 auto 28px;
}
.brand-wordmark {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 0.94;
}
.brand-wordmark small {
  display: block;
  font-size: 0.38em;
  letter-spacing: 0.34em;
  margin-top: 8px;
  color: rgba(243,239,230,0.9);
}
.brand-stack p { max-width: 28ch; margin: 22px auto 0; color: rgba(243,239,230,0.9); }
.resource-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.22)), var(--paper);
  padding: 40px;
  border: 1px solid rgba(205, 191, 168, 0.8);
  border-left: 0;
}
.muted-accent { color: var(--accent); }
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(205, 191, 168, 0.78);
  box-shadow: var(--shadow-soft);
}
.download-card img { width: 24px; height: 24px; }
.download-card h3 { font-size: 1.5rem; line-height: 1.02; }
.download-card p { margin: 0; flex: 1; }

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.journal-panel,
.footer-news,
.section-card,
.form-card,
.contact-card,
.faq-card,
.feature-card,
.about-grid,
.values-row,
.about-story,
.quote-panel {
  background: rgba(247, 242, 233, 0.95);
  border: 1px solid rgba(205, 191, 168, 0.78);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
.journal-panel,
.footer-news {
  padding: 28px;
}
.panel-top,
.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.article-mini {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(205, 191, 168, 0.7);
  margin-top: 18px;
}
.article-mini img {
  width: 112px;
  height: 82px;
  border-radius: 14px;
  object-fit: cover;
}
.article-mini h3 { font-size: 1.3rem; margin-bottom: 6px; }
.article-meta,
.small-note,
.price,
.micro-label,
.label,
.status-pill,
.field-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-muted);
}
.footer-news {
  background:
    linear-gradient(120deg, rgba(24,33,38,0.97) 0%, rgba(45,59,54,0.94) 100%),
    url('/assets/img/topo-dark-contour.svg') center/1500px auto no-repeat;
  color: var(--paper);
}
.footer-news h2,
.footer-news p,
.footer-news .small-note { color: var(--paper); }

.site-footer { padding: 8px 0 36px; }
.footer-newsletter {
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(24,33,38,0.97) 0%, rgba(45,59,54,0.94) 100%),
    url('/assets/img/topo-dark-contour.svg') center/1500px auto no-repeat;
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
.footer-mark { width: 84px; }
.footer-newsletter h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--paper);
}
.footer-newsletter p { margin: 0; color: rgba(243,239,230,0.88); }
.news-form {
  display: grid;
  grid-template-columns: minmax(180px, 280px) auto;
  gap: 12px;
  align-items: center;
}
.news-form input {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(243, 239, 230, 0.42);
  background: rgba(246, 240, 231, 0.96);
  padding: 0 16px;
}
.news-form .small-note {
  grid-column: 1 / -1;
  color: rgba(243,239,230,0.86);
  font-weight: 500;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 8px 0;
  color: var(--ink-soft);
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.mini-brand img { width: 28px; }
.legal { text-align: right; line-height: 1.6; }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 4px 0 10px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(205,191,168,.85);
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.filter-chip img { width: 18px; height: 18px; }
.filter-chip.active {
  background: var(--olive-800);
  color: var(--paper);
  border-color: rgba(24,33,38,.8);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(249, 246, 240, 0.94);
  border: 1px solid rgba(205, 191, 168, 0.78);
  box-shadow: var(--shadow-soft);
}
.thumb {
  padding: 18px 18px 0;
}
.thumb img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
}
.product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 18px;
  min-height: 270px;
}
.label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94684c;
}
.product-body h3 { font-size: 1.65rem; line-height: 1.02; }
.product-body p { margin: 0; }
.price {
  color: var(--ink);
  font-size: 1.15rem;
}
.spacer { flex: 1; }
.section-card { padding: 26px; margin-top: 26px; }
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.recommendation-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(205, 191, 168, 0.72);
  background: rgba(255,255,255,0.64);
}
.recommendation-card img {
  width: 74px;
  height: 106px;
  border-radius: 10px;
  object-fit: cover;
}
.badge-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
}
.micro-label {
  color: #8c664a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.badge {
  display: inline-flex;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 800;
}
.badge.free { background: #5e6c58; color: #fff; }
.badge.paid { background: var(--accent); color: #fff; }
.download-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 18px;
}
.callout {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(205, 191, 168, 0.72);
  background: rgba(255,255,255,0.52);
  overflow: hidden;
}
.dual-callout {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
}
.path-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  pointer-events: none;
}
.status-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(184, 118, 70, 0.14);
  color: #8b613f;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 18px 10px 0;
  color: var(--ink-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}
.about-col {
  padding: 28px 28px 30px;
  border-right: 1px solid rgba(205,191,168,.72);
}
.about-col:last-child { border-right: 0; }
.about-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.about-col-header img { width: 28px; height: 28px; }
.about-col h3 { font-size: 2rem; }
.center-cta {
  text-align: center;
  padding: 12px 0;
}
.values-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}
.value-card {
  padding: 22px;
  text-align: left;
  border-right: 1px solid rgba(205,191,168,.72);
}
.value-card:last-child { border-right: 0; }
.value-card img { width: 28px; height: 28px; margin-bottom: 12px; }
.value-card h3 { font-size: 1.75rem; margin-bottom: 8px; }
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
}
.about-story {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 22px;
}
.about-story img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 20px;
}
.about-story .label { margin-bottom: 10px; display: inline-block; }
.quote-panel {
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(24,33,38,0.97) 0%, rgba(45,59,54,0.94) 100%),
    url('/assets/img/topo-dark-contour.svg') center/1500px auto no-repeat;
  color: var(--paper);
}
.quote-panel blockquote {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: var(--paper);
}
.quote-panel cite {
  margin-top: 18px;
  display: block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: #dbc7ac;
  font-weight: 800;
}

.feature-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 24px;
  padding: 20px;
}
.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border-radius: 20px;
  object-fit: cover;
}
.feature-copy {
  align-self: center;
  padding: 8px 10px 8px 4px;
}
.feature-copy .label { display: inline-block; margin-bottom: 12px; }
.feature-copy h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 0.98; }
.article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 20px;
}
.article-row {
  display: grid;
  grid-template-columns: 184px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(205,191,168,.75);
}
.article-row img {
  width: 184px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}
.article-row h3 { font-size: 2rem; margin-bottom: 8px; line-height: 0.98; }
.select-like {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(205,191,168,.85);
  background: rgba(255,255,255,0.65);
  font-weight: 700;
}
.select-like select:focus { outline: none; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 20px;
}
.form-card,
.contact-card,
.faq-card { padding: 28px; }
.field-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.field-label { display: block; margin-bottom: 8px; color: var(--ink); }
.input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(205,191,168,.95);
  background: rgba(255,255,255,0.75);
  padding: 0 16px;
  color: var(--ink);
}
textarea.input {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}
.input:focus,
.news-form input:focus {
  outline: 2px solid rgba(184,118,70,0.25);
  border-color: var(--accent);
}
.connect-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(205,191,168,.6);
}
.connect-item:last-of-type { border-bottom: 0; }
.connect-item img {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 12px;
  background: var(--olive-700);
}
.connect-item h3 { font-size: 1.7rem; margin-bottom: 4px; }
.notice {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(60,107,82,0.12);
  border: 1px solid rgba(60,107,82,0.24);
  color: #30543f;
}
.hidden { display: none !important; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid rgba(205,191,168,.72);
  border-radius: 18px;
  background: rgba(255,255,255,0.5);
  overflow: hidden;
}
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

@media (max-width: 1280px) {
  .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .recommendations-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .download-grid,
  .download-cards-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-card:nth-child(2) { border-right: 0; }
  .value-card:nth-child(-n+2) { border-bottom: 1px solid rgba(205,191,168,.72); }
}

@media (max-width: 1100px) {
  .hero,
  .page-hero { padding: 40px 28px 0; }
  .page-hero { padding-bottom: 32px; }
  .hero-grid,
  .page-hero-grid,
  .grid-two,
  .split-panel,
  .bottom-grid,
  .contact-grid,
  .story-grid,
  .feature-card,
  .dual-callout,
  .about-story { grid-template-columns: 1fr; }
  .hero-visual,
  .page-hero-visual { min-height: 280px; }
  .about-grid,
  .value-band { grid-template-columns: 1fr 1fr; }
  .about-col:nth-child(-n+2),
  .value-item:nth-child(-n+2) { border-bottom: 1px solid rgba(205,191,168,.72); }
  .about-col:nth-child(2),
  .value-item:nth-child(2) { border-right: 0; }
  .about-story { padding: 18px; }
  .resource-panel { border-left: 1px solid rgba(205,191,168,.8); border-top: 0; }
  .footer-newsletter { grid-template-columns: 1fr; }
  .news-form { grid-template-columns: 1fr auto; }
}

@media (max-width: 900px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; justify-content: flex-start; }
  .catalog-grid,
  .recommendations-grid,
  .article-list,
  .card-grid,
  .download-grid,
  .download-cards-row { grid-template-columns: 1fr 1fr; }
  .article-row,
  .article-mini { grid-template-columns: 120px 1fr; }
  .article-row img { width: 120px; height: 90px; }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero,
  .page-hero,
  .section-soft,
  .section-card,
  .form-card,
  .contact-card,
  .faq-card,
  .about-story,
  .quote-panel,
  .feature-card,
  .footer-newsletter { border-radius: 22px; }
  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .center-cta h2,
  .resource-panel h2,
  .feature-copy h2,
  .article-row h3,
  .download-card h3,
  .connect-item h3,
  .about-col h3 { max-width: none; }
  .hero-actions,
  .panel-top,
  .section-title-row,
  .footer-links,
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .about-grid,
  .value-band,
  .values-row,
  .card-grid,
  .catalog-grid,
  .recommendations-grid,
  .article-list,
  .download-grid,
  .download-cards-row { grid-template-columns: 1fr; }
  .about-col,
  .value-card,
  .value-item { border-right: 0 !important; }
  .about-col,
  .value-card,
  .value-item { border-bottom: 1px solid rgba(205,191,168,.72); }
  .about-col:last-child,
  .value-card:last-child,
  .value-item:last-child { border-bottom: 0; }
  .brand-panel { min-height: 320px; }
  .news-form { grid-template-columns: 1fr; }
  .article-row,
  .article-mini { grid-template-columns: 1fr; }
  .article-row img,
  .article-mini img { width: 100%; height: 180px; }
  .hero-cover-stack { height: 360px; }
  .book-left { left: 0; width: 155px; }
  .book-center { left: 110px; width: 178px; }
  .book-right { right: 0; width: 190px; }
}

/* --------------------------------------------------------------------------
   RPP v3 visual alignment
   Closer to the approved browser comps: dark editorial masthead, warm paper
   sections, stronger field-guide rhythm, corrected contour-shield treatment.
---------------------------------------------------------------------------- */
:root {
  --midnight-pine: #182126;
  --pine-deep: #11191c;
  --pine-warm: #26342f;
  --bone-paper: #F3EFE6;
  --paper-warm: #FBF7EE;
  --paper-shadow: #E6DDCE;
  --weathered-olive: #66715F;
  --copper-ridge: #A56A43;
  --ink: #172025;
  --muted-ink: #4A555D;
  --container: 1240px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow-soft: 0 28px 70px rgba(15, 20, 22, 0.20);
  --shadow-card: 0 18px 42px rgba(24, 33, 38, 0.10);
}

body {
  color: var(--muted-ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(180deg, #f8f3e8 0%, var(--bone-paper) 48%, #efe8db 100%);
  font-size: 16px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: url('/assets/img/topo-light-contour.svg') 50% 0/1600px auto repeat-y;
  opacity: .45;
  mix-blend-mode: multiply;
  z-index: -1;
}

.container { width: min(calc(100% - 48px), var(--container)); }

.topbar {
  position: relative;
  top: auto;
  z-index: 30;
  backdrop-filter: none;
  background:
    linear-gradient(180deg, rgba(17,25,28,.98), rgba(24,33,38,.97)),
    url('/assets/img/topo-dark-contour.svg') center 30%/1500px auto no-repeat;
  border-bottom: 1px solid rgba(243,239,230,.10);
  color: var(--bone-paper);
}

.header-inner { padding: 26px 0 22px; }
.brand-mark { width: 54px; height: 64px; }
.topbar .brand-mark,
.hero .brand-mark-large,
.brand-panel .brand-mark-large,
.footer-newsletter .footer-mark,
.footer-news .footer-mark {
  filter: brightness(0) saturate(100%) invert(94%) sepia(11%) saturate(356%) hue-rotate(348deg) brightness(104%) contrast(95%);
}
.topbar .brand-name { color: var(--bone-paper); letter-spacing: 1.6px; font-size: 1.28rem; }
.topbar .brand-sub { color: rgba(243,239,230,.86); }
.topbar .brand-sub::before,
.topbar .brand-sub::after { background: rgba(243,239,230,.56); }

.nav { gap: 18px; }
.nav-link {
  color: rgba(243,239,230,.90);
  border-radius: 0;
  padding: 9px 0 11px;
  position: relative;
  font-weight: 500;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; background: transparent; }
.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--copper-ridge);
  border-radius: 999px;
}
.button { border-radius: 10px; }
.button-primary {
  background: linear-gradient(180deg, #B07147 0%, var(--copper-ridge) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(104, 59, 31, .26);
}
.button-secondary {
  border-color: rgba(243,239,230,.68);
  color: var(--bone-paper);
  background: rgba(24,33,38,.18);
}
.button-outline { background: rgba(255,255,255,.48); }
.button-small { border-radius: 8px; }

.page { padding-bottom: 28px; }
.page > .container { width: 100%; max-width: none; margin: 0; }

.hero,
.page-hero {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--bone-paper);
  background:
    radial-gradient(circle at 78% 12%, rgba(243,239,230,.18), transparent 22%),
    radial-gradient(circle at 20% 86%, rgba(165,106,67,.15), transparent 26%),
    linear-gradient(135deg, rgba(17,25,28,.98), rgba(37,52,46,.93)),
    url('/assets/img/topo-dark-contour.svg') center/1500px auto no-repeat;
}
.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17,25,28,.38), rgba(17,25,28,.06) 48%, rgba(243,239,230,.08)),
    url('/assets/img/topo-dark-contour.svg') center/1420px auto no-repeat;
  opacity: .82;
}
.hero::after,
.page-hero::after { opacity: .12; mix-blend-mode: screen; }

.hero-grid,
.page-hero-grid {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
  padding: 70px 0 64px;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: 64px;
  align-items: center;
}
.page-hero-grid { padding: 66px 0 58px; align-items: center; }
.page-hero-copy { padding-bottom: 0; }
.eyebrow { color: rgba(243,239,230,.72); letter-spacing: .24em; }
.hero h1 { font-size: clamp(3.9rem, 7vw, 6.4rem); max-width: 12ch; line-height: .92; margin-top: 18px; }
.page-hero h1 { font-size: clamp(4rem, 7vw, 6.3rem); line-height: .92; }
.hero p,
.page-hero p { font-size: clamp(1.08rem, 1.55vw, 1.32rem); line-height: 1.66; max-width: 42rem; color: rgba(243,239,230,.88); }
.hero-actions { gap: 18px; }
.hero-actions .button { padding: 16px 28px; font-size: 1.05rem; }

.hero-cover-stack {
  min-height: 470px;
  max-width: 660px;
  transform: translateX(8px);
}
.hero-book {
  border-radius: 7px;
  box-shadow: 0 34px 58px rgba(0,0,0,.35), 0 0 0 1px rgba(243,239,230,.16);
}
.hero-book.book-left { left: 52px; bottom: 18px; width: 220px; transform: rotate(-7deg); z-index: 3; }
.hero-book.book-center { left: 214px; top: 48px; width: 248px; transform: rotate(-1.5deg); z-index: 2; }
.hero-book.book-right { right: 0; top: 8px; width: 278px; z-index: 4; }

.value-band {
  background: linear-gradient(180deg, rgba(248,244,235,.96), rgba(239,232,220,.96));
  border-top: 1px solid rgba(243,239,230,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.value-item { min-height: 72px; padding: 20px; }
.value-item img,
.filter-chip img,
.download-card img,
.value-card img,
.about-col-header img,
.connect-item img { filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(777%) hue-rotate(154deg) brightness(92%) contrast(92%); }

.section,
.section-soft,
.split-panel,
.bottom-grid,
.feature-card,
.about-grid,
.values-row,
.story-grid,
.center-cta,
.contact-grid,
.faq-card,
.footer-bar,
.section-card,
.filter-bar,
.catalog-grid,
.recommendations-grid,
.section-title-row,
.article-list,
.dual-callout {
  width: min(calc(100% - 80px), var(--container));
  margin-left: auto;
  margin-right: auto;
}
.section { margin-top: 34px; }
.section-soft,
.section-card,
.form-card,
.contact-card,
.faq-card,
.callout,
.about-grid,
.values-row,
.feature-card,
.product-card,
.recommendation-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(247,243,234,.82)),
    url('/assets/img/topo-light-contour.svg') center/1500px auto no-repeat;
  border: 1px solid rgba(24,33,38,.075);
  box-shadow: 0 18px 48px rgba(24,33,38,.08);
}
.section-soft { padding: clamp(34px, 4.2vw, 56px); border-radius: 34px; }
.grid-two { grid-template-columns: .82fr 1.22fr; gap: clamp(44px, 6vw, 76px); align-items: center; }
.section-heading h2 {
  max-width: 12.5ch;
  font-size: clamp(3.15rem, 5vw, 4.65rem);
  line-height: .95;
}
.section-heading p { max-width: 34rem; font-size: 1.22rem; }
.accent-rule { width: 74px; height: 2px; margin: 24px 0; }
.card-grid { gap: 22px; }
.category-card {
  min-height: 208px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(252,249,242,.92), rgba(235,226,211,.9));
}
.category-card.dark { background: linear-gradient(135deg, rgba(24,33,38,.98), rgba(74,87,75,.94)); }
.category-card h3 { font-size: clamp(2rem, 3.2vw, 2.7rem); }
.category-card p { font-size: 1.01rem; line-height: 1.45; }
.category-card .path-swoosh {
  border-left-width: 22px;
  opacity: .62;
  transform: rotate(17deg);
}
.category-card:not(.dark) .path-swoosh { border-left-color: rgba(165,106,67,.20); }
.category-card::after { opacity: .26; }
.category-card.dark::after { opacity: .24; }

.split-panel,
.bottom-grid {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  grid-template-columns: 1fr 1fr;
}
.split-panel {
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  margin-top: 44px;
}
.split-panel .brand-panel,
.split-panel .resource-panel {
  min-height: 440px;
}
.brand-panel {
  border-radius: 0;
  background: linear-gradient(135deg, rgba(24,33,38,.98), rgba(65,82,70,.94));
}
.brand-panel .brand-stack { min-height: 340px; }
.brand-panel .brand-mark-large { width: 134px; }
.brand-panel .brand-wordmark { font-size: clamp(2.6rem, 4.4vw, 4rem); }
.resource-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.8), transparent 32%),
    linear-gradient(180deg, rgba(252,249,242,.98), rgba(243,239,230,.94)),
    url('/assets/img/topo-light-contour.svg') center/1500px auto no-repeat;
  padding: clamp(34px, 4vw, 54px);
}
.resource-panel h2 { font-size: clamp(3.1rem, 5vw, 5.25rem); line-height: 1.05; max-width: 15ch; }
.download-grid { gap: 20px; }
.download-card {
  border-radius: 20px;
  padding: 24px 18px 22px;
  background: rgba(255,255,255,.72);
}
.download-card h3 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: .98; }
.download-card p { min-height: 0; font-size: .96rem; }

.bottom-grid { width: 100%; margin-top: 0; grid-template-columns: 1fr 1fr; }
.journal-panel,
.footer-news {
  padding: clamp(32px, 4vw, 48px) max(40px, calc((100vw - var(--container))/2 + 40px));
}
.journal-panel { padding-right: 42px; background: rgba(252,249,242,.94); }
.footer-news { position: relative; padding-left: 42px; background: linear-gradient(135deg, rgba(24,33,38,.98), rgba(60,78,66,.95)); color: var(--bone-paper); }
.footer-news::after { opacity: .2; }
.panel-top h2,
.footer-news h2 { font-size: clamp(2.6rem, 3.8vw, 3.5rem); }
.article-mini img { border-radius: 8px; }

.page-hero-visual img {
  border-radius: 0;
  box-shadow: none;
  max-height: 360px;
  object-fit: cover;
  filter: saturate(.88) contrast(.95) sepia(.08);
  opacity: .92;
  mask-image: linear-gradient(90deg, transparent, black 24%);
}
.hero-contact .page-hero-visual img,
.hero-about .page-hero-visual img,
.hero-journal .page-hero-visual img { border-radius: 0; }

.filter-bar {
  margin-top: 24px;
  padding: 18px 0 8px;
  background: transparent;
  justify-content: center;
}
.filter-chip {
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(252,249,242,.56);
  border: 1px solid rgba(24,33,38,.13);
}
.filter-chip.active { background: var(--midnight-pine); color: var(--bone-paper); }
.filter-chip.active img { filter: brightness(0) saturate(100%) invert(94%) sepia(11%) saturate(356%) hue-rotate(348deg) brightness(104%) contrast(95%); }
.catalog-grid { gap: 18px; margin-top: 18px; }
.product-card { border-radius: 15px; overflow: hidden; }
.product-card .thumb { padding: 22px; background: linear-gradient(180deg, rgba(242,235,224,.95), rgba(230,220,205,.88)); }
.product-card .thumb img { border-radius: 6px; aspect-ratio: .68; object-fit: contain; }
.product-body { padding: 18px 18px 20px; }
.product-card h3 { font-size: 1.85rem; }
.product-card p { min-height: 66px; }
.section-card { margin-top: 26px; padding: 24px; border-radius: 18px; }
.section-title-row { width: 100%; }
.section-title-row h2 { font-size: clamp(2.4rem, 3vw, 3.2rem); }
.recommendations-grid { width: 100%; gap: 14px; }
.recommendation-card { grid-template-columns: 94px 1fr; border-radius: 14px; padding: 14px; }
.recommendation-card h3 { font-size: 1.45rem; }
.recommendation-card img { border-radius: 4px; }
.callout { border-radius: 18px; }

.feature-card { margin-top: -34px; position: relative; z-index: 4; }
.feature-card img { min-height: 300px; filter: saturate(.9) contrast(.98) sepia(.06); }
.feature-copy h2 { font-size: clamp(2.9rem, 4vw, 4.2rem); }
.article-list { margin-top: 20px; }
.article-row { align-items: center; }
.article-row img { border-radius: 8px; }

.about-grid { margin-top: 34px; }
.values-row { margin-top: 24px; }
.story-grid { margin-top: 34px; }
.quote-panel { border-radius: 18px; }
.about-story { border-radius: 18px; }
.about-story img { filter: saturate(.86) sepia(.09); }
.center-cta { margin-top: 28px; }

.contact-grid { margin-top: 34px; }
.form-card,
.contact-card { border-radius: 18px; }
.form-card h2,
.contact-card h2 { font-size: clamp(2.4rem, 3.4vw, 3.4rem); }
.connect-item img { background: var(--midnight-pine); filter: brightness(0) saturate(100%) invert(94%) sepia(11%) saturate(356%) hue-rotate(348deg) brightness(104%) contrast(95%); }
.faq-card { margin-top: 28px; }
.faq-card .center-cta h2 { font-size: clamp(2.2rem, 3vw, 2.9rem); }
.faq-item { background: rgba(255,255,255,.64); }

.site-footer { margin-top: 34px; }
.site-footer > .container { width: min(calc(100% - 80px), var(--container)); }
.footer-newsletter { border-radius: 0; background: linear-gradient(135deg, rgba(24,33,38,.98), rgba(61,77,66,.95)); }
.footer-links .mini-brand img { filter: none; }
.news-form input {
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid rgba(24,33,38,.16);
  padding: 0 16px;
}
.small-note { display: block; font-size: .82rem; color: rgba(243,239,230,.75); margin-top: 8px; }

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid { width: min(calc(100% - 48px), var(--container)); grid-template-columns: 1fr; gap: 30px; }
  .section,
  .section-soft,
  .bottom-grid,
  .feature-card,
  .about-grid,
  .values-row,
  .story-grid,
  .center-cta,
  .contact-grid,
  .faq-card,
  .footer-bar,
  .section-card,
  .filter-bar,
  .catalog-grid,
  .recommendations-grid,
  .section-title-row,
  .article-list,
  .dual-callout { width: min(calc(100% - 48px), var(--container)); }
  .hero-cover-stack { margin: 0 auto; }
  .split-panel,
  .bottom-grid { grid-template-columns: 1fr; }
  .journal-panel,
  .footer-news { padding: 36px 24px; }
  .feature-card { margin-top: 34px; }
}

@media (max-width: 920px) {
  .topbar .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; gap: 12px 18px; }
  .grid-two { grid-template-columns: 1fr; }
  .section-heading h2 { max-width: 100%; }
  .split-panel { width: min(calc(100% - 48px), var(--container)); grid-template-columns: 1fr; border-radius: 24px; }
  .bottom-grid { width: min(calc(100% - 48px), var(--container)); border-radius: 24px; overflow: hidden; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .recommendations-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .recommendation-card { grid-template-columns: 80px 1fr; }
  .resource-panel h2 { font-size: clamp(2.8rem, 8vw, 4rem); }
}

@media (max-width: 640px) {
  .container,
  .hero-grid,
  .page-hero-grid,
  .section,
  .section-soft,
  .bottom-grid,
  .feature-card,
  .about-grid,
  .values-row,
  .story-grid,
  .center-cta,
  .contact-grid,
  .faq-card,
  .footer-bar,
  .section-card,
  .filter-bar,
  .catalog-grid,
  .recommendations-grid,
  .section-title-row,
  .article-list,
  .dual-callout,
  .site-footer > .container { width: min(calc(100% - 28px), var(--container)); }
  .hero h1,
  .page-hero h1 { font-size: clamp(3.2rem, 17vw, 4.5rem); }
  .hero-cover-stack { min-height: 330px; }
  .catalog-grid,
  .recommendations-grid,
  .download-grid { grid-template-columns: 1fr; }
  .download-card h3 { font-size: 2.1rem; }
  .section-soft { padding: 26px 18px; }
  .hero-grid,
  .page-hero-grid { padding: 46px 0; }
}
