:root{
  --paper:#f2eee7;
  --paper-2:#e9e1d7;
  --ink:#171512;
  --muted:#746b62;
  --line:#d5c9bd;
  --card:#faf8f4;
  --deep:#24201b;
  --warm:#c6a088;
  --sage:#aab19f;
  --clay:#c5a18c;
  --radius-xl:38px;
  --radius-lg:30px;
  --radius-md:22px;
  --shadow:0 26px 80px rgba(42,31,24,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:16px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::selection{background:var(--deep);color:#fff}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{display:block;max-width:100%}
svg{width:1em;height:1em;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.page-shell{min-height:100vh;overflow:hidden}
main{min-height:68vh}

.site-header{
  width:min(1280px,calc(100% - 48px));
  min-height:88px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:50;
  border-bottom:1px solid transparent;
  transition:min-height .3s ease,border-color .3s ease,background .3s ease;
}
.site-header.is-scrolled{min-height:74px;border-bottom-color:var(--line)}
.wordmark,.footer-wordmark{
  font:500 30px/1 "Iowan Old Style","Baskerville","Times New Roman",serif;
  letter-spacing:-.035em;
}
.main-nav{display:flex;align-items:center;gap:34px}
.main-nav a{
  position:relative;
  font-size:14px;
  font-weight:450;
  letter-spacing:.012em;
  color:#403832;
}
.main-nav a::after{
  content:"";
  position:absolute;left:0;right:100%;bottom:-8px;
  height:1px;background:var(--ink);
  transition:right .25s ease;
}
.main-nav a:hover::after{right:0}
.menu-toggle{display:none;border:0;background:none;width:36px;height:36px;padding:8px}
.menu-toggle span{display:block;height:1px;background:var(--ink);margin:6px 0;transition:.25s ease}

.kicker,.section-label{
  display:inline-flex;align-items:center;gap:10px;
  font-size:10px;font-weight:800;letter-spacing:.19em;text-transform:uppercase;
}
.kicker span{width:28px;height:1px;background:currentColor;display:block}
h1,h2,h3,p{margin-top:0}
.home-hero h1,.category-hero h1,.article-hero h1,.about-hero h1,
.section-heading h2,.editorial-break h2,.closing-cta h2,
.about-card h2,.about-statement strong,.legal h1,.legal h2{
  font-family:"Iowan Old Style","Baskerville","Times New Roman",serif;
  font-weight:400;
  letter-spacing:-.045em;
  text-wrap:balance;
}
em{font-weight:400;color:var(--warm)}

/* HERO */
.home-hero{
  width:min(1280px,calc(100% - 48px));
  margin:26px auto 72px;
  min-height:650px;
  display:grid;
  grid-template-columns:minmax(0,1.06fr) minmax(400px,.76fr);
  gap:48px;
}
.hero-copy{padding:70px 0 30px;display:flex;flex-direction:column;align-items:flex-start}
.home-hero h1{
  font-size:clamp(72px,8vw,122px);
  line-height:.88;
  margin:30px 0 34px;
  max-width:820px;
}
.hero-lede{width:min(650px,94%);color:var(--muted);font-size:18px;line-height:1.65}
.hero-actions{display:flex;align-items:center;gap:24px;margin-top:30px}
.primary-action{
  min-height:52px;padding:0 10px 0 23px;border-radius:999px;
  background:var(--deep);color:#fff;
  display:inline-flex;align-items:center;gap:18px;font-size:13px;
  transition:transform .25s ease,box-shadow .25s ease;
}
.primary-action:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(36,32,27,.20)}
.primary-action.mini{min-height:42px;padding-left:17px}
.action-icon{
  width:35px;height:35px;border-radius:50%;display:grid;place-items:center;
  background:#f7f2eb;color:var(--ink);
}
.action-icon svg{width:16px;height:16px;transition:transform .25s ease}
.primary-action:hover .action-icon svg{transform:translate(2px,-2px)}
.secondary-action{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;border-bottom:1px solid var(--ink);padding:9px 0 7px;
}
.secondary-action svg{width:15px;height:15px;transition:transform .25s ease}
.secondary-action:hover svg{transform:translateY(4px)}
.hero-proof{margin-top:auto;display:flex;gap:36px;padding-top:56px}
.hero-proof div{display:grid;grid-template-columns:auto 1fr;gap:8px;align-items:center}
.hero-proof strong{font:32px/1 "Iowan Old Style",Georgia,serif}
.hero-proof span{font-size:11px;color:var(--muted);max-width:76px;line-height:1.18}

.hero-art{
  --mx:50%;--my:50%;
  position:relative;overflow:hidden;border-radius:var(--radius-xl);
  background:linear-gradient(145deg,#d8c9ba 0%,#aeb39f 50%,#756f65 100%);
  box-shadow:var(--shadow);
  transition:transform .18s ease;
  transform-style:preserve-3d;
}
.hero-glow{
  position:absolute;inset:-30%;
  background:radial-gradient(circle at var(--mx) var(--my),rgba(255,255,255,.30),transparent 30%);
  pointer-events:none;
}
.art-grid{
  position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.10) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.10) 1px,transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(to bottom,black,transparent 88%);
}
.art-arc{position:absolute;border:1px solid rgba(255,255,255,.34);border-radius:50%}
.art-arc-a{width:530px;height:530px;right:-170px;top:-165px}
.art-arc-b{width:260px;height:260px;left:-80px;bottom:-85px}
.art-card{
  position:absolute;padding:20px;width:178px;min-height:132px;border-radius:20px;
  backdrop-filter:blur(12px);box-shadow:0 16px 38px rgba(33,28,24,.14);
  display:flex;flex-direction:column;
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}
.art-card span{font-size:8px;font-weight:700;letter-spacing:.14em}
.art-card strong{font:29px/1.05 "Iowan Old Style",Georgia,serif;margin-top:auto}
.art-card small{font-size:9px;line-height:1.3;opacity:.68;margin-top:8px}
.art-card-a{left:44px;top:68px;background:rgba(250,248,244,.90);transform:rotate(-3deg)}
.art-card-b{right:34px;top:225px;background:rgba(35,32,28,.90);color:white;transform:rotate(4deg)}
.art-card-c{left:64px;bottom:56px;background:rgba(225,213,201,.92);transform:rotate(2deg)}
.hero-art:hover .art-card-a{transform:translate(-4px,-8px) rotate(-5deg)}
.hero-art:hover .art-card-b{transform:translate(5px,-5px) rotate(6deg)}
.hero-art:hover .art-card-c{transform:translate(-3px,7px) rotate(0)}
.art-badge{
  position:absolute;right:38px;bottom:40px;width:112px;height:112px;border-radius:50%;
  border:1px solid rgba(255,255,255,.62);color:#fff;
  display:grid;place-items:center;align-content:center;text-align:center;line-height:1;
}
.art-badge span{font-size:7px;letter-spacing:.18em}.art-badge b{font:22px/.9 Georgia,serif;margin:6px}.art-badge small{font-size:7px}

/* MARQUEE */
.marquee{
  width:100%;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.marquee-track{
  display:flex;
  width:max-content;
  will-change:transform;
  animation:marquee 30s linear infinite;
}
.marquee-group{
  flex:none;
  display:flex;align-items:center;gap:24px;
  padding:15px 12px;
}
.marquee span{font-size:10px;font-weight:800;letter-spacing:.18em;white-space:nowrap}
.marquee i{font-style:normal;color:var(--warm)}
@keyframes marquee{to{transform:translateX(-50%)}}

/* SECTIONS */
.section-block{width:min(1280px,calc(100% - 48px));margin:0 auto;padding:112px 0}
.section-heading{display:flex;justify-content:space-between;align-items:end;gap:52px;margin-bottom:42px}
.section-heading h2{font-size:clamp(54px,6vw,88px);line-height:.95;margin:12px 0 0}
.section-heading>p{max-width:330px;color:var(--muted);font-size:14px;margin-bottom:7px}
.section-heading.compact{margin-bottom:30px}

/* CATEGORY CARDS */
.category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.category-card{
  min-height:420px;border-radius:var(--radius-md);padding:22px;overflow:hidden;position:relative;
  display:flex;flex-direction:column;border:1px solid rgba(54,45,39,.12);
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s ease;
}
.category-card:hover{transform:translateY(-7px);box-shadow:0 25px 62px rgba(44,35,29,.12)}
.category-top{display:flex;justify-content:space-between;align-items:center;position:relative;z-index:4}
.category-number{font:24px "Iowan Old Style",Georgia,serif}
.round-arrow{
  width:40px;height:40px;border:1px solid rgba(23,21,18,.24);
  border-radius:50%;display:grid;place-items:center;
  transition:background .28s ease,color .28s ease,transform .28s ease;
}
.round-arrow svg{width:17px;height:17px}
.category-card:hover .round-arrow{background:var(--ink);color:white;transform:translate(2px,-2px)}
.category-visual{position:relative;height:176px;margin:16px 0 4px}
.visual-piece,.visual-line{position:absolute;transition:transform .55s cubic-bezier(.2,.8,.2,1)}
.category-copy{margin-top:auto;position:relative;z-index:4}
.category-copy h3{font:37px/1 "Iowan Old Style",Georgia,serif;letter-spacing:-.035em;margin:0 0 12px;text-wrap:balance}
.category-copy p{font-size:13px;color:#5f574f;max-width:290px;margin:0;line-height:1.5}

.tone-1{background:#ded1c2}.tone-2{background:#c7ccbd}.tone-3{background:#e2c5b0}
.tone-4{background:#d6d0c7}.tone-5{background:#c9bfb6}.tone-6{background:#cfb5a7}

/* six distinct card visuals */
.visual-1 .piece-a{width:112px;height:150px;border-radius:60px 60px 18px 18px;background:rgba(255,255,255,.52);right:20px;top:12px}
.visual-1 .piece-b{width:76px;height:76px;border:1px solid rgba(20,18,16,.20);border-radius:50%;left:28px;bottom:10px}
.visual-1 .visual-line{width:110px;height:1px;background:rgba(20,18,16,.22);left:68px;top:66px;transform:rotate(-34deg)}
.visual-1:hover .piece-a{transform:translateY(-8px) rotate(3deg)}
.visual-1:hover .piece-b{transform:translate(8px,-4px)}

.visual-2 .piece-a{width:150px;height:100px;border-radius:80px 80px 10px 10px;background:rgba(255,255,255,.46);right:10px;bottom:8px}
.visual-2 .piece-b{width:82px;height:130px;border:1px solid rgba(20,18,16,.20);border-radius:42px;left:32px;top:15px}
.visual-2 .piece-c{width:8px;height:8px;background:var(--ink);border-radius:50%;left:70px;top:54px}
.visual-2:hover .piece-a{transform:translateX(-10px)}
.visual-2:hover .piece-b{transform:translateY(8px)}

.visual-3 .piece-a{width:138px;height:138px;border-radius:18px;background:rgba(255,255,255,.38);right:16px;top:12px;transform:rotate(8deg)}
.visual-3 .piece-b{width:105px;height:105px;border-radius:50%;border:1px solid rgba(20,18,16,.17);left:16px;bottom:2px}
.visual-3 .visual-line{height:1px;width:172px;background:rgba(20,18,16,.22);left:48px;top:88px;transform:rotate(18deg)}
.visual-3:hover .piece-a{transform:rotate(14deg) translateY(-5px)}
.visual-3:hover .piece-b{transform:translateX(8px)}

.visual-4 .piece-a{width:150px;height:82px;border-radius:50%;background:rgba(255,255,255,.42);left:20px;top:20px}
.visual-4 .piece-b{width:130px;height:68px;border-radius:50%;border:1px solid rgba(20,18,16,.19);right:6px;bottom:22px}
.visual-4 .piece-c{width:1px;height:145px;background:rgba(20,18,16,.18);left:50%;top:8px}
.visual-4:hover .piece-a{transform:translateX(9px)}
.visual-4:hover .piece-b{transform:translateX(-9px)}

.visual-5 .piece-a{width:126px;height:126px;border-radius:50% 50% 8px 8px;background:rgba(255,255,255,.44);right:18px;bottom:4px}
.visual-5 .piece-b{width:92px;height:92px;border:1px solid rgba(20,18,16,.18);left:26px;top:22px;transform:rotate(45deg)}
.visual-5 .piece-c{width:14px;height:14px;border-radius:50%;background:rgba(20,18,16,.72);left:66px;top:62px}
.visual-5:hover .piece-b{transform:rotate(58deg) scale(.94)}
.visual-5:hover .piece-a{transform:translateY(-8px)}

.visual-6 .piece-a{width:160px;height:100px;border-radius:100px 100px 0 0;background:rgba(255,255,255,.42);left:14px;bottom:5px}
.visual-6 .piece-b{width:96px;height:150px;border-radius:50%;border:1px solid rgba(20,18,16,.17);right:20px;top:6px}
.visual-6 .visual-line{width:160px;height:1px;background:rgba(20,18,16,.20);right:-2px;top:73px;transform:rotate(-24deg)}
.visual-6:hover .piece-b{transform:rotate(8deg) translateY(-5px)}
.visual-6:hover .piece-a{transform:translateX(8px)}

/* EDITORIAL BREAK */
.editorial-break{
  width:min(1280px,calc(100% - 48px));
  margin:12px auto 0;padding:72px;border-radius:var(--radius-xl);
  background:var(--deep);color:#f6f0e8;
  display:grid;grid-template-columns:112px 1fr .82fr;gap:50px;align-items:center;
  box-shadow:0 22px 70px rgba(30,25,21,.12);
}
.editorial-mark{
  width:94px;height:94px;border:1px solid rgba(255,255,255,.25);border-radius:50%;
  display:grid;place-items:center;font:48px Georgia,serif;
}
.editorial-break h2{font-size:clamp(48px,5vw,74px);line-height:.96;margin:12px 0 0}
.editorial-copy p{color:#c9c0b7;font-size:15px;max-width:420px;margin-bottom:18px}
.editorial-copy a{display:inline-flex;align-items:center;gap:8px;font-size:12px;color:#f6f0e8}
.editorial-copy svg{width:14px;height:14px;transition:transform .25s ease}
.editorial-copy a:hover svg{transform:translate(2px,-2px)}

/* GUIDES */
.guides-section{padding-bottom:128px}
.guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.guide-card{border-top:1px solid var(--line);padding-top:14px;min-width:0}
.guide-visual{
  height:245px;border-radius:22px;overflow:hidden;position:relative;padding:18px;
  display:flex;flex-direction:column;transition:transform .35s ease,box-shadow .35s ease;
}
.guide-card:hover .guide-visual{transform:translateY(-4px);box-shadow:0 22px 52px rgba(48,37,30,.13)}
.guide-index,.guide-category,.guide-open{position:relative;z-index:4}
.guide-index{font:22px Georgia,serif}
.guide-category{margin-top:auto;font-size:9px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.guide-open{
  position:absolute;right:15px;bottom:15px;
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 10px;border-radius:999px;background:rgba(250,248,244,.80);
  font-size:10px;opacity:0;transform:translateY(6px);transition:.3s ease;
}
.guide-open svg{width:13px;height:13px}
.guide-card:hover .guide-open{opacity:1;transform:none}
.guide-decoration span{position:absolute;display:block;transition:transform .45s cubic-bezier(.2,.8,.2,1)}
.guide-style-1 .gd-a{width:150px;height:150px;background:rgba(255,255,255,.38);border-radius:50%;right:-28px;top:-34px}
.guide-style-1 .gd-b{width:70px;height:115px;border:1px solid rgba(20,18,16,.15);border-radius:40px;left:38px;top:52px}
.guide-style-1:hover .gd-a{transform:scale(1.12)}
.guide-style-1:hover .gd-b{transform:translateX(10px)}

.guide-style-2 .gd-a{width:175px;height:86px;border-radius:80px;background:rgba(255,255,255,.34);right:-18px;bottom:38px}
.guide-style-2 .gd-b{width:110px;height:110px;border-radius:14px;border:1px solid rgba(20,18,16,.15);left:52px;top:42px;transform:rotate(11deg)}
.guide-style-2:hover .gd-b{transform:rotate(17deg)}

.guide-style-3 .gd-a{width:138px;height:180px;border-radius:75px 75px 12px 12px;background:rgba(255,255,255,.34);right:18px;top:18px}
.guide-style-3 .gd-b{height:1px;width:165px;background:rgba(20,18,16,.16);left:25px;top:105px;transform:rotate(-24deg)}
.guide-style-3:hover .gd-a{transform:translateY(-8px)}

.guide-style-4 .gd-a{width:148px;height:148px;border-radius:50%;border:1px solid rgba(20,18,16,.16);right:18px;top:15px}
.guide-style-4 .gd-b{width:82px;height:82px;border-radius:50%;background:rgba(255,255,255,.36);left:44px;bottom:28px}
.guide-style-4:hover .gd-a{transform:scale(.92)}.guide-style-4:hover .gd-b{transform:scale(1.12)}

.guide-style-5 .gd-a{width:160px;height:105px;border-radius:100px 100px 0 0;background:rgba(255,255,255,.34);right:0;bottom:0}
.guide-style-5 .gd-b{width:1px;height:160px;background:rgba(20,18,16,.18);left:50%;top:16px}
.guide-style-5:hover .gd-a{transform:translateX(-9px)}

.guide-style-6 .gd-a{width:118px;height:172px;border-radius:60px;border:1px solid rgba(20,18,16,.16);right:32px;top:18px}
.guide-style-6 .gd-b{width:118px;height:70px;border-radius:60px;background:rgba(255,255,255,.36);left:35px;top:82px}
.guide-style-6:hover .gd-a{transform:rotate(8deg)}

.guide-copy{padding:22px 6px 4px;min-width:0}
.guide-copy h3{
  font:32px/1.06 "Iowan Old Style",Georgia,serif;
  letter-spacing:-.034em;margin:0 0 12px;
  text-wrap:balance;overflow-wrap:break-word;
}
.guide-copy p{
  color:var(--muted);font-size:13px;line-height:1.48;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}

/* CLOSING CTA */
.closing-cta{
  width:min(1280px,calc(100% - 48px));
  margin:0 auto 84px;padding:74px 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:center;gap:60px;
}
.closing-cta h2{font-size:clamp(52px,6vw,86px);line-height:.93;margin:12px 0 0}
.about-action{
  min-width:240px;height:72px;padding:0 12px 0 24px;border:1px solid var(--ink);border-radius:999px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  transition:background .28s ease,color .28s ease,transform .28s ease;
}
.about-action:hover{background:var(--ink);color:#fff;transform:translateY(-3px)}
.about-action-label{font-size:13px}
.about-action-icon{
  width:46px;height:46px;border-radius:50%;background:var(--ink);color:#fff;display:grid;place-items:center;
  transition:background .28s ease,color .28s ease,transform .28s ease;
}
.about-action:hover .about-action-icon{background:#fff;color:var(--ink);transform:translate(2px,-2px)}
.about-action-icon svg{width:18px;height:18px}

/* CATEGORY PAGE */
.category-hero{
  width:min(1280px,calc(100% - 48px));min-height:470px;margin:28px auto 0;
  border-radius:var(--radius-xl);padding:62px;
  background:linear-gradient(135deg,#d7c8b8,#cec0af);
  display:grid;grid-template-columns:1fr 300px;gap:42px;align-items:end;
  position:relative;overflow:hidden;
}
.category-hero::before{
  content:"";position:absolute;width:520px;height:520px;border-radius:50%;
  border:1px solid rgba(23,21,18,.10);right:-220px;top:-260px;
}
.category-hero h1{font-size:clamp(70px,9vw,124px);line-height:.88;margin:30px 0 20px;overflow-wrap:break-word}
.category-hero p{max-width:600px;color:#5c534c;font-size:17px}
.category-hero-art{
  min-height:245px;border:1px solid rgba(23,21,18,.16);border-radius:26px;padding:24px;
  display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden;
}
.category-hero-orbit{position:absolute;width:190px;height:190px;border-radius:50%;border:1px solid rgba(23,21,18,.14);right:-55px;top:-55px}
.category-symbol{align-self:flex-end;position:relative;z-index:2}
.category-symbol svg{width:48px;height:48px}
.category-hero-art strong{font:29px/1 "Iowan Old Style",Georgia,serif;position:relative;z-index:2}

/* ARTICLE PAGE */
.article-page{width:min(1280px,calc(100% - 48px));margin:0 auto}
.article-hero{max-width:980px;padding:92px 0 58px}
.article-category{font-size:10px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.article-hero h1{font-size:clamp(60px,7.2vw,104px);line-height:.94;margin:28px 0;overflow-wrap:break-word}
.article-lede{max-width:760px;color:var(--muted);font-size:19px}
.article-meta{display:flex;gap:28px;margin-top:30px;font-size:11px;color:var(--muted)}
.article-stage{display:grid;grid-template-columns:230px minmax(0,760px);gap:70px;align-items:start;justify-content:center}
.article-aside{position:sticky;top:100px}
.aside-card{border-top:1px solid var(--ink);padding-top:16px}
.article-toc{display:flex;flex-direction:column;gap:12px;margin-top:16px}
.article-toc a{font-size:11px;color:var(--muted);line-height:1.35;padding-left:0;transition:padding-left .2s ease,color .2s ease}
.article-toc a:hover{color:var(--ink);padding-left:5px}
.back-link{display:inline-block;margin-top:32px;font-size:11px}
.article-image,.article-placeholder{width:100%;border-radius:var(--radius-xl);margin-bottom:32px}
.article-placeholder{
  height:470px;position:relative;overflow:hidden;
  background:linear-gradient(145deg,#d5c5b7,#9da493);
  padding:35px;display:flex;flex-direction:column;justify-content:flex-end;
}
.placeholder-shape{position:absolute;width:380px;height:380px;border-radius:50%;right:-95px;top:-115px;border:1px solid rgba(255,255,255,.42)}
.article-placeholder::after{
  content:"";position:absolute;width:180px;height:250px;border-radius:90px 90px 18px 18px;
  background:rgba(255,255,255,.25);left:70px;top:70px;transform:rotate(-8deg)
}
.article-placeholder span{font-size:10px;letter-spacing:.16em;font-weight:800;position:relative;z-index:2}
.article-placeholder strong{font:54px/.92 Georgia,serif;margin-top:16px;position:relative;z-index:2}
.editorial-note{
  display:grid;grid-template-columns:62px 1fr;gap:18px;background:#e8ded4;border-radius:20px;padding:22px;margin:0 0 48px;
}
.note-mark{width:48px;height:48px;border:1px solid #8e8176;border-radius:50%;display:grid;place-items:center;font:24px Georgia,serif}
.editorial-note strong{font-size:13px}.editorial-note p{font-size:12px;color:var(--muted);margin:4px 0 0}
.prose{font:18px/1.82 Georgia,"Times New Roman",serif;color:#312d29}
.prose h2{font:44px/1.08 "Iowan Old Style",Georgia,serif;letter-spacing:-.035em;margin:70px 0 18px;color:var(--ink);text-wrap:balance}
.prose h3{font:29px/1.12 "Iowan Old Style",Georgia,serif;margin:46px 0 15px;color:var(--ink);text-wrap:balance}
.prose p{margin-bottom:24px}.prose ul{padding-left:22px}.prose li{margin:9px 0}
.products{margin-top:72px;padding-top:28px;border-top:1px solid var(--line)}
.products h2{font:42px Georgia,serif;margin:10px 0 22px}
.product-row{display:flex;justify-content:space-between;gap:24px;align-items:center;border-top:1px solid var(--line);padding:22px 0}
.article-end{margin:76px 0 100px;padding:28px 0;border-top:1px solid var(--ink);display:flex;justify-content:space-between;font-size:12px}

/* ABOUT */
.about-hero{width:min(1040px,calc(100% - 48px));margin:0 auto;padding:110px 0 72px}
.about-hero h1{font-size:clamp(66px,8vw,110px);line-height:.91;margin:30px 0}
.about-hero>p{max-width:720px;color:var(--muted);font-size:19px}
.about-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding-top:20px}
.about-card{min-height:440px;border-radius:30px;padding:32px;display:flex;flex-direction:column;position:relative;overflow:hidden}
.about-card-mark{position:absolute;right:-4px;top:-22px;font:150px/1 Georgia,serif;opacity:.07}
.about-card h2{font-size:47px;line-height:.98;margin:auto 0 20px}
.about-card p{font-size:14px;line-height:1.66}.about-card a{display:inline-flex;align-items:center;gap:8px;margin-top:16px;font-size:12px}
.about-card a svg{width:14px;height:14px}
.about-card.dark{background:var(--deep);color:#fff}.about-card.dark p{color:#cfc5bb}
.about-card.light{background:#ded6cc}.about-card.warm{background:#c7a991}
.about-statement{
  width:min(1280px,calc(100% - 48px));margin:0 auto 90px;padding:88px 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:flex-start;gap:40px;
}
.about-statement span{font-size:10px;letter-spacing:.18em;font-weight:800}
.about-statement strong{font-size:clamp(58px,7vw,100px);line-height:.91;text-align:right}

/* LEGAL */
.legal{width:min(850px,calc(100% - 48px));margin:0 auto;padding:104px 0;min-height:65vh}
.legal-head{max-width:760px;margin-bottom:60px}
.legal h1{font-size:76px;line-height:.94;margin:24px 0 24px}
.legal-intro{color:var(--muted);font-size:18px;max-width:680px}
.legal-sections{border-top:1px solid var(--line)}
.legal-sections section{
  display:grid;grid-template-columns:70px 1fr;gap:24px;
  padding:34px 0;border-bottom:1px solid var(--line);
}
.legal-sections section>span{font:22px Georgia,serif;color:#aa9585}
.legal-sections h2{font-size:34px;line-height:1;margin:0 0 12px}
.legal-sections p{color:#4e4842;margin:0;max-width:680px}
.legal-sections a{text-decoration:underline;text-underline-offset:3px}
.legal.wide{width:min(930px,calc(100% - 48px))}
.contact-panel{margin-top:54px;padding:32px;border:1px solid var(--line);border-radius:24px;display:grid;gap:8px}
.contact-panel span{font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}
.contact-panel a{font:31px Georgia,serif}.contact-panel p{margin:0;color:var(--muted)}
.empty-state{padding:50px;border:1px solid var(--line);border-radius:22px}

/* FOOTER */
.site-footer{width:min(1280px,calc(100% - 48px));margin:0 auto;padding:64px 0 24px;border-top:1px solid var(--line)}
.footer-top{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:52px}
.footer-intro,.footer-column{display:flex;flex-direction:column;align-items:flex-start}
.footer-intro p{margin:15px 0 6px;font-size:13px}.footer-intro span{color:var(--muted);font-size:11px;max-width:280px}
.footer-column strong{font-size:11px;margin-bottom:14px}
.footer-column a{font-size:12px;color:var(--muted);margin:4px 0;transition:color .2s ease,transform .2s ease}
.footer-column a:hover{color:var(--ink);transform:translateX(3px)}
.footer-bottom{
  margin-top:60px;padding-top:18px;border-top:1px solid var(--line);
  display:flex;align-items:center;gap:10px;color:var(--muted);font-size:10px;letter-spacing:.06em;
}
.footer-dot{color:#b9a99b}

/* REVEAL */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .65s ease,transform .65s cubic-bezier(.2,.7,.2,1)}
.reveal.is-visible{opacity:1;transform:none}

/* RESPONSIVE */
@media(max-width:1050px){
  .home-hero{grid-template-columns:1fr .68fr;min-height:600px}
  .category-grid,.guide-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .editorial-break{grid-template-columns:100px 1fr}.editorial-copy{grid-column:2}
  .article-stage{grid-template-columns:190px minmax(0,1fr);gap:42px}
  .footer-top{grid-template-columns:1.6fr repeat(3,1fr);gap:30px}
}
@media(max-width:820px){
  .site-header{width:calc(100% - 32px);min-height:72px}
  .menu-toggle{display:block;z-index:3}
  .main-nav{
    position:absolute;top:66px;left:0;right:0;padding:18px;border-radius:18px;
    background:#f7f3ed;border:1px solid var(--line);box-shadow:var(--shadow);
    display:flex;flex-direction:column;align-items:flex-start;gap:16px;
    opacity:0;pointer-events:none;transform:translateY(-8px);transition:.25s ease;
  }
  .main-nav a{font-size:14px}
  .main-nav.is-open{opacity:1;pointer-events:auto;transform:none}
  .home-hero{width:calc(100% - 32px);grid-template-columns:1fr;min-height:auto;margin-top:8px}
  .hero-copy{padding-top:46px}.home-hero h1{font-size:clamp(64px,19vw,104px)}
  .hero-proof{margin-top:42px}.hero-art{height:520px}
  .section-block,.editorial-break,.closing-cta,.category-hero,.article-page,.about-statement,.site-footer{width:calc(100% - 32px)}
  .section-block{padding:78px 0}.section-heading{display:block}.section-heading>p{margin-top:20px}
  .category-grid,.guide-grid{grid-template-columns:1fr}
  .category-card{min-height:380px}.category-visual{height:140px}
  .editorial-break{padding:38px;grid-template-columns:1fr;gap:22px}.editorial-copy{grid-column:auto}.editorial-mark{width:72px;height:72px}
  .closing-cta{padding:58px 0;gap:35px}.about-action{min-width:220px}
  .category-hero{grid-template-columns:1fr;padding:40px;min-height:440px}.category-hero-art{min-height:170px}
  .article-stage{grid-template-columns:1fr}.article-aside{position:static}.article-toc,.aside-card{display:none}
  .article-hero{padding-top:70px}.article-placeholder{height:390px}
  .about-grid{grid-template-columns:1fr}.about-card{min-height:340px}
  .about-statement{display:block}.about-statement strong{display:block;text-align:left;margin-top:32px}
  .footer-top{grid-template-columns:1.4fr 1fr 1fr}.footer-column:last-child{grid-column:2}
}
@media(max-width:560px){
  .wordmark{font-size:26px}
  .home-hero h1{font-size:61px}.hero-lede{font-size:16px}
  .hero-actions{align-items:flex-start;flex-direction:column}
  .hero-proof{width:100%;justify-content:space-between;gap:10px}.hero-proof div{display:block}.hero-proof span{display:block;margin-top:5px}
  .hero-art{height:440px}.art-card{width:148px;min-height:112px}.art-card-a{left:20px;top:44px}.art-card-b{right:18px;top:175px}.art-card-c{left:26px;bottom:36px}.art-badge{right:20px;bottom:30px;width:90px;height:90px}
  .section-heading h2,.editorial-break h2,.closing-cta h2{font-size:52px}
  .guide-copy h3{font-size:29px}
  .closing-cta{display:block}.about-action{margin-top:34px;width:100%;min-width:0}
  .category-hero h1{font-size:62px}.category-hero{padding:32px}
  .article-hero h1{font-size:56px}.article-lede{font-size:17px}.article-meta{flex-direction:column;gap:6px}
  .prose{font-size:17px}.prose h2{font-size:37px}
  .editorial-note{grid-template-columns:1fr}.note-mark{margin-bottom:4px}
  .article-end{flex-direction:column;gap:12px}
  .about-hero h1{font-size:58px}.about-statement strong{font-size:54px}
  .footer-top{grid-template-columns:1fr 1fr}.footer-intro{grid-column:1/-1;margin-bottom:22px}.footer-column:last-child{grid-column:auto}
  .legal{padding-top:76px}.legal h1{font-size:60px}.legal-sections section{grid-template-columns:42px 1fr;gap:14px}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}
