:root {
  --ink: #14201a;
  --forest: #153a2d;
  --paper: #f5f1e8;
  --white: #fffef9;
  --line: #cfc9bd;
  --muted: #626860;
  --blue: #173f83;
  --coral: #d9583d;
  --gold: #d4ad45;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --mono: "DM Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 12px 4vw;
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: var(--white);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  align-items: end;
  gap: 3px;
  width: 28px;
  height: 28px;
  padding: 4px;
  background: var(--forest);
}
.brand-mark i { display: block; background: var(--paper); }
.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 12px; }
.site-header nav { display: flex; justify-content: center; gap: 34px; }
.site-header nav a, .language {
  position: relative;
  color: #38443d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .18s ease, transform .18s ease;
}
.site-header nav a:hover::after,
.site-header nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.language { padding: 8px 0; font-family: var(--mono); }
.menu-button { display: none; }

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.light { color: #fff4d6; }

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #4b5145;
  color: #fff;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: rgba(14, 23, 17, .37);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(780px, 82%);
  min-height: 660px;
  padding: 72px 7vw 92px;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 500;
  line-height: .96;
  letter-spacing: 0;
}
.hero-content > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.93);
  font-size: 19px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: #182219; }
.button.primary:hover { background: #ebc965; }
.button.ghost { border-color: rgba(255,255,255,.62); background: rgba(10,22,15,.16); color: #fff; }
.button.ghost:hover { background: #fff; color: var(--ink); }
.button.outline { border-color: var(--ink); background: transparent; }
.button.outline:hover { background: var(--ink); color: #fff; }
.button.full { width: 100%; }
.hero-caption {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(15,24,18,.72);
}
.hero-caption span { color: var(--gold); font-family: var(--mono); font-size: 12px; }
.hero-caption p { margin: 0; color: #fff; font-size: 12px; line-height: 1.5; }

.article-shelf,
.journal-library,
.related {
  padding: 66px 5vw 74px;
  background: var(--white);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  width: min(1320px, 100%);
  margin: 0 auto 30px;
}
.section-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}
.section-heading > p { max-width: 440px; margin: 0 0 5px; color: var(--muted); }
.section-heading.compact h2 { font-size: 38px; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { color: var(--coral); }
.tabs { width: min(1320px, 100%); margin: 0 auto; }
.tab-list {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}
.tab-list button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 8px 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.tab-list button span { color: #898f88; font-family: var(--mono); font-size: 11px; }
.tab-list button[aria-selected="true"] { border-bottom-color: var(--coral); color: var(--ink); }
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.article-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.article-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--forest);
  content: "";
}
.article-card:nth-child(3n+2)::before { background: var(--blue); }
.article-card:nth-child(3n+3)::before { background: var(--coral); }
.article-card:hover { background: #eef1e6; }
.article-number { align-self: flex-end; color: #8c928a; font-family: var(--mono); font-size: 11px; }
.article-category { margin-top: 27px; color: var(--coral); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.article-card h3 {
  margin: 16px 0 10px;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}
.article-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.article-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 26px; color: #4d554f; font-family: var(--mono); font-size: 10px; }
.article-meta b { color: var(--coral); font-size: 14px; }
.empty-panel { min-height: 150px; padding: 40px 0; border-top: 1px solid var(--line); }
.empty-panel p { color: var(--muted); }

.method-band {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) 1.2fr;
  gap: 70px;
  padding: 86px 6vw;
  background: var(--forest);
  color: #fff;
}
.method-intro h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}
.method-steps { margin: 0; padding: 0; list-style: none; }
.method-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.28);
}
.method-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.28); }
.method-steps > li > span { color: var(--gold); font-family: var(--mono); font-size: 12px; }
.method-steps h3 { margin: -5px 0 5px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.method-steps p { max-width: 600px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

.style-ribbon {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  padding: 88px 6vw;
  background: #e7d9c7;
}
.style-ribbon h2 { margin: 0; font-family: var(--serif); font-size: 54px; font-weight: 500; line-height: 1.02; letter-spacing: 0; }
.style-ribbon > div:first-child p { max-width: 500px; margin: 22px 0; color: #4f504b; }
.palette-stack { display: grid; align-content: center; gap: 10px; }
.palette-stack article {
  position: relative;
  min-height: 112px;
  padding: 26px 120px 26px 30px;
  overflow: hidden;
  border: 1px solid rgba(20,32,26,.22);
  background: var(--white);
}
.palette-stack article::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 100%;
  border-left: 30px solid var(--accent);
  background: var(--tone);
  content: "";
}
.palette-stack b { display: block; font-family: var(--serif); font-size: 24px; font-weight: 600; }
.palette-stack span { color: var(--muted); font-size: 12px; }

.faq-band {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  padding: 86px 6vw;
  background: var(--paper);
}
.faq-band h2 { margin: 0; font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1.05; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.accordion summary span::before,
.accordion summary span::after { position: absolute; top: 8px; left: 1px; width: 16px; height: 1px; background: var(--ink); content: ""; }
.accordion summary span::after { transform: rotate(90deg); transition: transform .18s ease; }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 720px; margin: -2px 42px 24px 4px; color: var(--muted); }

.journal-hero {
  min-height: 490px;
  padding: 88px 7vw 58px;
  background: var(--blue);
  color: #fff;
}
.journal-hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}
.journal-hero > p { max-width: 620px; margin: 24px 0 46px; color: rgba(255,255,255,.78); font-size: 18px; }
.journal-index { display: flex; flex-wrap: wrap; gap: 8px; }
.journal-index span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.4); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.journal-library { background: var(--paper); }
.journal-library .article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.curated-library { width: min(1320px, 100%); margin: 82px auto 0; padding-top: 52px; border-top: 1px solid var(--line); }
.curated-library .section-heading { width: 100%; }

.long-read { background: var(--white); }
.article-header {
  padding: 74px max(5vw, 28px) 66px;
  border-bottom: 1px solid var(--line);
  background: #e3e6da;
}
.article-back { display: inline-block; margin-bottom: 58px; color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none; }
.article-header h1 {
  max-width: 1030px;
  margin: 0;
  font-family: var(--serif);
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.article-header > p { max-width: 760px; margin: 24px 0 0; color: #4c554f; font-size: 18px; }
.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 820px);
  justify-content: center;
  gap: 68px;
  padding: 70px 5vw 100px;
}
.article-rail { align-self: start; padding-top: 8px; border-top: 3px solid var(--coral); }
.article-rail > span { display: block; margin: 15px 0 18px; color: var(--coral); font-family: var(--mono); font-size: 12px; }
.article-rail p { color: var(--muted); font-family: var(--mono); font-size: 10px; line-height: 1.7; text-transform: uppercase; }
.article-prose { min-width: 0; }
.article-prose > :first-child { margin-top: 0; }
.article-prose h2 { margin: 54px 0 17px; font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1.1; letter-spacing: 0; }
.article-prose h3 { margin: 38px 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.2; }
.article-prose p,
.article-prose li { color: #303932; font-size: 17px; line-height: 1.82; }
.article-prose a { color: var(--blue); }
.article-prose blockquote { margin: 34px 0; padding: 12px 0 12px 24px; border-left: 3px solid var(--gold); color: #435248; font-family: var(--serif); font-size: 24px; }
.article-prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article-prose th, .article-prose td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-prose img { height: auto; margin: 34px auto; }
.related { border-top: 1px solid var(--line); background: var(--paper); }
.related .article-grid { width: min(1320px, 100%); margin: 0 auto; grid-template-columns: repeat(3,minmax(0,1fr)); }

.planner-intro,
.simple-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 60px;
  min-height: 410px;
  padding: 80px 6vw 66px;
  background: var(--forest);
  color: #fff;
}
.planner-intro h1,
.simple-hero h1 { margin: 0; font-family: var(--serif); font-size: 68px; font-weight: 500; line-height: 1; letter-spacing: 0; }
.planner-intro p,
.simple-hero > p { max-width: 510px; margin: 0; color: rgba(255,255,255,.74); font-size: 18px; }
.planner {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(480px, 1.2fr);
  gap: 0;
  width: min(1400px, calc(100% - 48px));
  margin: 54px auto 82px;
  border: 1px solid var(--line);
  background: var(--white);
}
.planner-controls { padding: 34px; border-right: 1px solid var(--line); }
.control-block { display: block; margin: 0 0 28px; padding: 0; border: 0; }
.step-label { display: block; margin-bottom: 11px; color: var(--coral); font-family: var(--mono); font-size: 10px; font-weight: 500; text-transform: uppercase; }
.upload-zone { display: grid; justify-items: center; padding: 30px 18px; border: 1px dashed #8c928c; background: #f4f2eb; cursor: pointer; }
.upload-zone input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.upload-zone:hover { border-color: var(--coral); }
.upload-icon { font-size: 28px; line-height: 1; }
.upload-zone strong { margin-top: 8px; font-size: 14px; }
.upload-zone small { color: var(--muted); font-size: 11px; }
.swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.swatches button { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 8px; border: 1px solid var(--line); background: #fff; font-size: 11px; text-align: left; cursor: pointer; }
.swatches button[aria-pressed="true"] { border-color: var(--forest); box-shadow: inset 0 0 0 1px var(--forest); }
.swatches i { position: relative; width: 32px; height: 32px; flex: 0 0 auto; background: var(--a); }
.swatches i::after { position: absolute; right: 0; bottom: 0; width: 14px; height: 14px; background: var(--b); content: ""; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.segmented button { min-height: 43px; padding: 8px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; font-size: 11px; cursor: pointer; }
.segmented button[aria-pressed="true"] { background: var(--forest); color: #fff; }
.control-block textarea { width: 100%; min-height: 104px; padding: 12px; resize: vertical; border: 1px solid var(--line); border-radius: 0; background: #fff; font-size: 13px; }
.character-count { display: block; margin-top: 5px; color: #7a807b; font-family: var(--mono); font-size: 9px; text-align: right; }
.planner-preview { position: relative; min-width: 0; padding: 30px; background: #dfe5d9; }
.preview-image { position: relative; min-height: 430px; overflow: hidden; background: #bec5b9; }
.preview-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.preview-image span { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; background: rgba(15,23,17,.82); color: #fff; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.brief-output { position: relative; z-index: 2; width: min(560px, calc(100% - 40px)); margin: -70px auto 0; padding: 28px 30px; border-top: 5px solid var(--coral); background: var(--white); box-shadow: 0 18px 38px rgba(20,32,26,.13); }
.brief-output h2 { margin: 0; font-family: var(--serif); font-size: 35px; font-weight: 600; line-height: 1.1; }
.brief-output > p { color: var(--muted); font-size: 13px; }
.brief-output ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; padding: 0; list-style: none; }
.brief-output li { padding: 5px 8px; border: 1px solid var(--line); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.about-hero { background: var(--blue); }
.pricing-hero { background: #793c2c; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: 90px 7vw;
  background: var(--white);
}
.about-statement h2 { max-width: 610px; margin: 0; font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1.05; }
.about-copy { max-width: 670px; color: #424d46; font-size: 18px; }
.about-copy p:first-child { margin-top: 0; }
.value-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: var(--paper); }
.value-grid article { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid article > span { color: var(--coral); font-family: var(--mono); font-size: 11px; }
.value-grid h3 { margin: 90px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 600; }
.value-grid p { color: var(--muted); font-size: 13px; }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 70px 7vw; background: #e6d7bd; }
.contact-strip h2 { margin: 0; font-family: var(--serif); font-size: 44px; font-weight: 500; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; width: min(1180px,calc(100% - 48px)); margin: 70px auto 92px; }
.pricing-grid article { display: flex; min-height: 460px; flex-direction: column; padding: 34px; border: 1px solid var(--line); background: var(--white); }
.pricing-grid article.featured { border-top: 6px solid var(--coral); }
.plan-name { color: var(--coral); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.pricing-grid h2 { margin: 54px 0 5px; font-family: var(--serif); font-size: 50px; font-weight: 500; }
.pricing-grid h2 small { font-family: var(--sans); font-size: 12px; font-weight: 500; }
.pricing-grid p { color: var(--muted); }
.pricing-grid ul { margin: 18px 0 34px; padding-left: 18px; color: #39453e; font-size: 14px; }
.pricing-grid .button { margin-top: auto; }

.legal { width: min(900px,calc(100% - 48px)); margin: 70px auto 100px; }
.legal header { margin-bottom: 55px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.legal h1 { margin: 0; font-family: var(--serif); font-size: 64px; font-weight: 500; line-height: 1; }
.legal header p { max-width: 650px; color: var(--muted); font-size: 18px; }
.legal section { display: grid; grid-template-columns: 260px 1fr; gap: 45px; padding: 28px 0; border-top: 1px solid var(--line); }
.legal h2 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.legal section p { margin: 0; color: #414b45; }
.legal-date { margin-top: 38px; color: var(--muted); font-family: var(--mono); font-size: 10px; }
.not-found { min-height: 620px; padding: 120px 8vw; background: var(--blue); color: #fff; }
.not-found h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: 72px; font-weight: 500; line-height: 1; }
.not-found p { max-width: 520px; margin: 24px 0 34px; color: rgba(255,255,255,.75); }
.not-found div { display: flex; flex-wrap: wrap; gap: 10px; }
.not-found .button.outline { border-color: #fff; color: #fff; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  padding: 58px 6vw 28px;
  background: #101b15;
  color: #fff;
}
.footer-brand { font-family: var(--serif); font-size: 28px; text-decoration: none; }
.site-footer p { color: rgba(255,255,255,.6); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.footer-links a { font-size: 13px; text-decoration: none; }
.copyright { grid-column: 1 / -1; margin: 25px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-family: var(--mono); font-size: 9px !important; }

@media (max-width: 1080px) {
  .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .journal-library .article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .method-band, .style-ribbon, .faq-band { gap: 42px; }
  .value-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .planner { grid-template-columns: minmax(320px,.85fr) minmax(380px,1.15fr); }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto auto; min-height: 72px; padding-inline: 20px; }
  .menu-button { display: grid; gap: 5px; width: 38px; height: 38px; place-content: center; border: 0; background: transparent; cursor: pointer; }
  .menu-button span { width: 21px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-header nav { position: absolute; top: 72px; right: 0; left: 0; display: none; flex-direction: column; gap: 0; padding: 12px 20px 24px; border-bottom: 1px solid var(--line); background: var(--white); }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { padding: 12px 0; border-bottom: 1px solid #dedbd2; }
  .site-header nav a::after { display: none; }
  .hero, .hero-content { min-height: 590px; }
  .hero-content { width: 94%; padding: 70px 6vw 100px; }
  .hero h1 { font-size: 58px; }
  .hero-caption { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .method-band, .style-ribbon, .faq-band, .planner-intro, .simple-hero, .about-grid { grid-template-columns: 1fr; }
  .method-band, .style-ribbon, .faq-band { padding-block: 70px; }
  .planner-intro, .simple-hero { min-height: 430px; align-content: end; }
  .planner { grid-template-columns: 1fr; }
  .planner-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .pricing-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 20px; }
  .article-rail { display: none; }
  .legal section { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .brand { font-size: 12px; }
  .brand-mark { width: 26px; height: 26px; }
  .language { font-size: 11px; }
  .hero, .hero-content { min-height: 560px; }
  .hero > img { object-position: 60% center; }
  .hero-wash { background: rgba(12,22,15,.52); }
  .hero-content { width: 100%; padding: 72px 20px 58px; justify-content: flex-end; }
  .hero h1 { font-size: 46px; }
  .hero-content > p { font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; }
  .article-shelf, .journal-library, .related { padding: 50px 16px 58px; }
  .section-heading h2, .section-heading.compact h2 { font-size: 38px; }
  .article-grid, .journal-library .article-grid, .related .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 240px; }
  .tab-list { margin-inline: -1px; }
  .method-band, .style-ribbon, .faq-band { padding: 58px 20px; }
  .method-intro h2, .style-ribbon h2, .faq-band h2 { font-size: 43px; }
  .palette-stack article { padding-right: 100px; }
  .journal-hero { min-height: 440px; padding: 74px 20px 50px; }
  .journal-hero h1 { font-size: 49px; }
  .article-header { padding: 54px 20px 48px; }
  .article-back { margin-bottom: 42px; }
  .article-header h1 { font-size: 44px; }
  .article-header > p { font-size: 16px; }
  .article-layout { padding: 48px 20px 70px; }
  .article-prose h2 { font-size: 32px; }
  .article-prose h3 { font-size: 25px; }
  .article-prose p, .article-prose li { font-size: 16px; }
  .planner-intro, .simple-hero { min-height: 400px; padding: 66px 20px 50px; }
  .planner-intro h1, .simple-hero h1 { font-size: 46px; }
  .planner-intro p, .simple-hero > p { font-size: 16px; }
  .planner { width: 100%; margin: 0; border-inline: 0; }
  .planner-controls { padding: 28px 18px; }
  .swatches { grid-template-columns: 1fr; }
  .planner-preview { padding: 16px; }
  .preview-image { min-height: 330px; }
  .brief-output { width: calc(100% - 16px); margin-top: -38px; padding: 24px 20px; }
  .brief-output h2 { font-size: 30px; }
  .about-grid { padding: 60px 20px; gap: 32px; }
  .about-statement h2 { font-size: 40px; }
  .about-copy { font-size: 16px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 220px; }
  .value-grid h3 { margin-top: 58px; }
  .contact-strip { align-items: flex-start; flex-direction: column; padding: 56px 20px; }
  .contact-strip h2 { font-size: 38px; }
  .contact-strip .button { max-width: 100%; overflow-wrap: anywhere; }
  .pricing-grid { width: calc(100% - 32px); margin-block: 48px 64px; }
  .legal { width: calc(100% - 40px); margin-block: 52px 72px; }
  .legal h1 { font-size: 46px; }
  .not-found { padding: 90px 20px; }
  .not-found h1 { font-size: 50px; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 48px 20px 24px; }
  .copyright { grid-column: 1; }
}

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