/* Shared layout. Each site sets its tokens and personality in theme.css. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 1.0625rem/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--link); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: var(--display-weight, 600); line-height: 1.15; letter-spacing: var(--display-tracking, -.01em); margin: 0 0 .5em; color: var(--heading); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
p { margin: 0 0 1.1em; }

.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.wrap--narrow { width: min(740px, 100% - 32px); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--surface); padding: 8px 12px; }

.eyebrow { font: 600 .75rem/1.4 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 .8em; }
.eyebrow a { color: inherit; text-decoration: none; }
.meta { font-size: .875rem; color: var(--muted); margin: 0; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 42em; }

.btn {
  display: inline-block; font: 600 .95rem/1 var(--font-body); padding: .95em 1.5em; border-radius: var(--radius-btn);
  background: var(--accent); color: var(--accent-ink); border: 1.5px solid var(--accent); text-decoration: none; cursor: pointer;
}
.btn:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; background: var(--header-bg); color: var(--header-ink); border-bottom: 1px solid var(--header-line); backdrop-filter: saturate(1.2) blur(8px); }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; font: var(--brand-font); letter-spacing: var(--brand-tracking, 0); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand:hover { color: inherit; }
.nav { display: flex; gap: 26px; }
.nav a { color: inherit; text-decoration: none; font-size: .92rem; font-weight: 500; opacity: .85; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current] { opacity: 1; border-color: var(--nav-accent); color: inherit; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; color: var(--header-ink); transition: transform .2s; }

/* hero + sections */
.hero { background: var(--hero-bg); color: var(--hero-ink); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: clamp(56px, 9vw, 120px) 0; }
.hero h1 { color: var(--hero-heading); }
.hero .lede { color: var(--hero-muted); }
.hero .btn--ghost { color: var(--hero-ink); border-color: var(--hero-line); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-art svg { width: 100%; height: auto; }

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--alt { background: var(--surface-alt); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.2em; }

.topics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.topic { display: flex; flex-direction: column; padding: 26px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--ink); transition: transform .2s, border-color .2s; }
.topic:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--ink); }
.topic-num { font: 500 .8rem var(--font-body); color: var(--accent); letter-spacing: .1em; margin-bottom: 18px; }
.topic h3 { font-size: 1.35rem; }
.topic p { color: var(--muted); font-size: .95rem; flex: 1; }
.topic-count { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

.feature { display: block; padding: clamp(28px, 4vw, 44px); background: var(--feature-bg); color: var(--feature-ink); border-radius: var(--radius); text-decoration: none; margin-bottom: 22px; }
.feature:hover { color: var(--feature-ink); }
.feature h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: inherit; max-width: 22em; }
.feature p { max-width: 44em; opacity: .85; }
.feature .eyebrow { color: var(--feature-accent); }
.feature .meta { color: inherit; opacity: .75; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-link { display: flex; flex-direction: column; height: 100%; padding: 24px; color: var(--ink); text-decoration: none; }
.card-link:hover { color: var(--ink); }
.card h3 { font-size: 1.25rem; }
.card p:not(.eyebrow):not(.meta) { color: var(--muted); font-size: .95rem; flex: 1; }

.principles ul { list-style: none; padding: 0; margin: 0 0 1.5em; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.principles li { padding-left: 28px; position: relative; color: var(--muted); }
.principles li::before { content: ""; position: absolute; left: 0; top: .6em; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); opacity: .85; }
.principles strong { color: var(--ink); display: block; }

/* article + pages */
.page-head, .post-head { padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px); background: var(--head-bg); border-bottom: 1px solid var(--line); }
.page-head--center { text-align: center; padding: 100px 0; }
.page-head--center .lede { margin-inline: auto; }
.post-head h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 22px; font-size: .82rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 28ch; }

.post-body { padding-top: 40px; padding-bottom: 64px; }
.post-body h2 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); margin-top: 1.8em; scroll-margin-top: 90px; }
.post-body h3 { font-size: 1.2rem; margin-top: 1.5em; }
.post-body ul, .post-body ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.post-body li { margin-bottom: .45em; }
.post-body li::marker { color: var(--accent); }
.callout { margin: 1.8em 0; padding: 20px 22px; background: var(--callout-bg); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.callout p { margin: 0; }
.toc { margin: 0 0 2em; padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.toc p { font: 600 .75rem var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 .6em; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc li { margin: .25em 0; }
.toc a { text-decoration: none; }
.note { margin-top: 3em; padding-top: 1.4em; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }

/* footer */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); padding: 56px 0 28px; }
.site-footer a { color: inherit; text-decoration: none; opacity: .85; }
.site-footer a:hover { opacity: 1; color: inherit; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-grid p { opacity: .75; font-size: .95rem; max-width: 30em; margin-top: 14px; }
.footer-grid h2 { font: 600 .75rem var(--font-body); letter-spacing: .14em; text-transform: uppercase; opacity: .6; color: inherit; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: .45em 0; font-size: .95rem; }
.footer-note { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--footer-line); font-size: .82rem; opacity: .65; }
.footer-note p { margin: .3em 0; }

/* age gate */
.agegate { display: none; }
.js:not(.age-ok) body { overflow: hidden; }
.js:not(.age-ok) .agegate { display: grid; place-items: center; position: fixed; inset: 0; z-index: 1000; padding: 16px; background: var(--gate-bg); backdrop-filter: blur(14px); }
.agegate-card { width: min(460px, 100%); padding: 40px 32px; text-align: center; background: var(--surface); color: var(--ink); border-radius: calc(var(--radius) * 1.5); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.agegate-mark { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); font: 600 1.1rem var(--font-body); margin: 0 auto 18px; }
.agegate-card h2 { font-size: 1.7rem; }
.agegate-card p { color: var(--muted); }
.agegate-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

@media (max-width: 960px) {
  .topics { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 360px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; padding: 8px 16px 18px; background: var(--header-bg-solid); border-bottom: 1px solid var(--header-line); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--header-line); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cards, .principles ul, .footer-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}
@media (max-width: 520px) {
  .topics { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* Freyja: ciruela nocturna + dorado. */
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --display-weight: 500;
  --brand-font: 500 1.45rem/1 "Fraunces", Georgia, serif;
  --brand-tracking: .01em;

  --bg: #fbf7f2;
  --surface: #ffffff;
  --surface-alt: #f4ece3;
  --head-bg: #f4ece3;
  --ink: #2b2129;
  --heading: #2a1024;
  --muted: #6d6069;
  --line: #e7dcd1;
  --line-strong: #cbbcae;
  --link: #7a2e5c;
  --accent: #9b3a6f;
  --accent-strong: #7a2e5c;
  --accent-ink: #ffffff;
  --callout-bg: #f7eef0;
  --radius: 14px;
  --radius-btn: 999px;

  --header-bg: rgba(42, 16, 36, .94);
  --header-bg-solid: #2a1024;
  --header-ink: #f6e9d8;
  --header-line: rgba(212, 169, 84, .22);
  --nav-accent: #d4a954;

  --hero-bg: radial-gradient(120% 90% at 85% 20%, #4a1b3d 0%, #2a1024 55%, #1c0a18 100%);
  --hero-ink: #f6e9d8;
  --hero-heading: #fbf1e3;
  --hero-muted: #d8c3cf;
  --hero-line: rgba(246, 233, 216, .35);

  --feature-bg: linear-gradient(135deg, #2a1024, #4a1b3d);
  --feature-ink: #fbf1e3;
  --feature-accent: #d4a954;

  --footer-bg: #1c0a18;
  --footer-ink: #eadccb;
  --footer-line: rgba(234, 220, 203, .15);
  --gate-bg: rgba(28, 10, 24, .82);
}
.hero h1 em { font-style: italic; color: #d4a954; }
.hero .eyebrow { color: #d4a954; }
.hero .btn:not(.btn--ghost) { background: #d4a954; border-color: #d4a954; color: #2a1024; }
.hero .btn:not(.btn--ghost):hover { background: #e6c173; border-color: #e6c173; color: #2a1024; }
.topic-num { font-family: "Fraunces", serif; font-size: 1rem; font-style: italic; }
.post-body > p:first-of-type { font-size: 1.18rem; color: var(--heading); }

/* Shared reading utilities; site-specific compositions below. */
figure{margin:0}figcaption{font-size:.79rem;line-height:1.5;color:var(--muted);margin-top:12px}img{height:auto}.topline{display:flex;justify-content:space-between;align-items:center;font-size:.73rem;padding-top:10px;padding-bottom:10px}.topline a{color:inherit}.brand-note{font-size:.76rem;letter-spacing:.06em}.section-heading{display:flex;justify-content:space-between;gap:36px;align-items:end;margin-bottom:34px}.section-heading h2{font-size:clamp(1.8rem,3vw,2.7rem);margin:0}.section-heading>p{max-width:30em;margin:0}.text-link{font-weight:600;text-underline-offset:6px}.essay-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:9%}.essay-grid h2,.story-grid h2{font-size:clamp(1.9rem,3.4vw,3.2rem);max-width:15ch}.essay-copy{max-width:650px}.editorial-list{padding-left:22px}.editorial-list li{margin:10px 0}.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:7%;align-items:center}.story-grid figure img{aspect-ratio:4/5;object-fit:cover;width:100%}.cards.two{grid-template-columns:repeat(2,minmax(0,1fr))}.card-link{padding:0}.card-photo{overflow:hidden}.card-photo img{width:100%;aspect-ratio:3/2;object-fit:cover;transition:transform .35s}.card:hover img{transform:scale(1.025)}.card-copy{padding:25px}.card h3{line-height:1.2}.card-copy .meta{display:flex;justify-content:space-between}.card-copy>p{margin-top:14px}.category-head{display:grid;grid-template-columns:1.2fr .8fr;gap:50px;align-items:center}.category-head figure img{aspect-ratio:4/3;object-fit:cover}.landing-copy{padding-top:0}.article-photo{max-width:1000px;padding-top:32px}.article-photo img{width:100%;max-height:460px;object-fit:cover}.post-body{line-height:1.85}.post-body a{overflow-wrap:anywhere}.journal-tools{margin-bottom:36px}.journal-tools label{display:block;font-size:.9rem;font-weight:600;margin-bottom:8px}.journal-tools input{width:min(520px,100%);border:1px solid var(--line-strong);background:var(--surface);padding:15px;color:var(--ink);font:inherit;border-radius:var(--radius)}.filters{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0}.filters button{padding:10px 17px;background:transparent;border:1px solid var(--line-strong);border-radius:var(--radius-btn);font:inherit;font-size:.87rem;color:var(--ink);cursor:pointer}.filters [aria-pressed=true]{background:var(--heading);color:var(--bg);border-color:var(--heading)}#journal-count{font-size:.84rem;color:var(--muted)}[hidden]{display:none!important}.faq-section details{border-top:1px solid var(--line-strong);padding:22px 0}.faq-section summary{cursor:pointer;font-weight:600;list-style-position:outside;margin-left:18px}.faq-section details p{padding-top:18px;margin-bottom:0}.agegate-card{max-height:90dvh;overflow:auto}.post-body h2{scroll-margin-top:190px}
/* FREYJA: a calm practical guide with a side-aligned masthead and soft panels. */
.freyja{--font-display:Georgia,'Times New Roman',serif;--font-body:'Avenir Next','Segoe UI',sans-serif;--bg:#f7f8f1;--surface:#fffef9;--surface-alt:#e9eee1;--head-bg:#e9eee1;--ink:#28372f;--heading:#223c2e;--muted:#556357;--line:#d9dfd0;--line-strong:#b7c4ae;--link:#653c64;--accent:#653c64;--accent-strong:#492848;--accent-ink:#fff;--radius:20px;--radius-btn:50px;--header-bg:#f7f8f1;--header-bg-solid:#f7f8f1;--header-ink:#223c2e;--header-line:#d9dfd0;--nav-accent:#653c64;--hero-bg:#e9eee1;--hero-heading:#223c2e;--hero-muted:#45584b;--hero-ink:#223c2e;--hero-line:#94a991;--footer-bg:#203b2f;--footer-ink:#eef3e6;--gate-bg:rgba(23,43,31,.8)}
.freyja .site-header{position:relative;backdrop-filter:none}.freyja .topline{border-bottom:1px solid var(--line)}.freyja .bar{min-height:81px;justify-content:flex-start}.freyja .brand{font:700 2.4rem/1 Georgia,serif}.freyja .brand svg{display:none}.freyja .brand-note{margin-left:auto}.freyja .nav{padding-bottom:14px;gap:25px}.freyja .nav a{font-size:.84rem}.freyja .hero{border-bottom:1px solid var(--line)}.freyja .hero-grid{grid-template-columns:1fr 1fr;gap:6%;padding:64px 0}.freyja .hero h1{font-size:clamp(2.7rem,4.8vw,4.6rem);letter-spacing:-.045em;max-width:12ch}.freyja .hero h1 em{color:#653c64}.freyja .hero .eyebrow{color:#653c64}.freyja .hero .btn{background:#653c64;color:#fff;border-color:#653c64}.freyja .hero-photo img{aspect-ratio:1/1.05;width:100%;object-fit:cover;border-radius:160px 160px 18px 18px}.freyja .hero-photo figcaption{max-width:26em;margin-left:15px}.freyja .hero-actions{align-items:center;gap:22px}.freyja .hero-footnote{font-size:.76rem;color:var(--muted);margin-top:24px}.freyja .topics{gap:0;border-top:1px solid var(--line-strong);border-bottom:1px solid var(--line-strong)}.freyja .topic{border:0;border-right:1px solid var(--line-strong);border-radius:0;background:transparent;padding:28px 22px}.freyja .topic:last-child{border:0}.freyja .topic:hover{transform:none;background:#e9eee1}.freyja .topic-num{font:700 1rem var(--font-body);color:#653c64}.freyja .story-section{background:#e9eee1}.freyja .story-grid figure img{border-radius:20px 80px 20px 20px}.freyja .card{border-radius:20px;overflow:hidden;box-shadow:none}.freyja .section-2{background:#f0e8ef}.freyja .faq-section{background:#e9eee1}.freyja .category-head figure img{border-radius:90px 90px 15px 15px}.freyja .site-footer{border-radius:48px 48px 0 0;margin-top:36px}.freyja .brand--footer{font-size:3rem}.freyja .toc{background:#e9eee1;border:0}
/* FLAMME: print-inspired masthead, expansive photographic cover and open ruled rows. */
.flamme{--font-display:'Baskerville','Palatino Linotype',Georgia,serif;--font-body:'Helvetica Neue',Arial,sans-serif;--brand-font:400 5.2rem/1 Georgia,serif;--display-weight:400;--bg:#fbf8f2;--surface:#fbf8f2;--surface-alt:#eee7dc;--head-bg:#fbf8f2;--ink:#292521;--heading:#292521;--muted:#70645e;--accent:#7b273d;--accent-strong:#5c1c2d;--accent-ink:#fff;--link:#7b273d;--line:#d8cec3;--line-strong:#b6a799;--header-bg:#fbf8f2;--header-bg-solid:#fbf8f2;--header-ink:#292521;--header-line:#d8cec3;--nav-accent:#7b273d;--radius:0px;--radius-btn:0px;--footer-bg:#eee7dc;--footer-ink:#292521;--footer-line:#cbbdad;--gate-bg:rgba(45,35,28,.75);font-size:1rem}
.flamme .site-header{position:relative;backdrop-filter:none}.flamme .topline{font-size:.64rem;letter-spacing:.17em;border-bottom:1px solid var(--line)}.flamme .bar{justify-content:center;min-height:112px;position:relative}.flamme .brand{font:400 5.2rem/.9 Georgia,serif;letter-spacing:-.07em}.flamme .brand svg{display:none}.flamme .brand-note{position:absolute;right:0;font-size:.68rem}.flamme .nav{justify-content:center;gap:36px;padding:13px 0;border-top:1px solid var(--ink);font-size:.76rem}.flamme .nav a{text-transform:uppercase;font-size:.67rem;letter-spacing:.12em}.flamme .cover-title{padding:52px 0 34px;text-align:center}.flamme .cover-title h1{font-size:clamp(3rem,5.8vw,5.8rem);font-weight:400;letter-spacing:-.04em;max-width:19ch;margin:0 auto}.flamme .cover-title h1 em{color:var(--accent);font-weight:400}.flamme .cover-grid{display:grid;grid-template-columns:1.7fr 1fr;gap:5%}.flamme .cover-photo img{width:100%;height:650px;object-fit:cover;object-position:35% center}.flamme .cover-note{padding:28px 0}.flamme .cover-note h2{font-size:2.6rem;font-style:italic;line-height:1.05}.flamme .issue{font-size:.67rem;letter-spacing:.14em;color:var(--accent);margin-bottom:35px}.flamme .cover-small{margin-top:36px;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:20px}.flamme .cover-small img{height:160px;object-fit:cover}.flamme .cover-small p{font:italic 1.25rem/1.3 Georgia,serif}.flamme .essay-section{margin-top:28px}.flamme .essay-grid{border-top:1px solid var(--line-strong);padding-top:40px;grid-template-columns:1fr 1.25fr}.flamme .essay-grid h2,.flamme .story-grid h2{font-size:clamp(2rem,3.5vw,3.5rem)}.flamme .topics{grid-template-columns:1fr 1fr;column-gap:55px;row-gap:0}.flamme .topic{display:grid;grid-template-columns:50px 1fr;gap:0 18px;border:0;border-top:1px solid var(--line-strong);padding:25px 0}.flamme .topic-num{grid-row:span 3;font-size:1.8rem;color:var(--accent)}.flamme .topic h3{font-size:2rem}.flamme .topic p{font-size:.94rem}.flamme .topic-count{grid-column:2}.flamme .story-section{background:#eee7dc}.flamme .story-grid{grid-template-columns:.85fr 1.15fr}.flamme .story-grid figure img{aspect-ratio:3/4}.flamme .card{border:0;border-top:1px solid var(--line-strong)}.flamme .cards{gap:30px}.flamme .card-link{padding:18px 0}.flamme .card-copy{padding:20px 0}.flamme .card h3{font-size:1.75rem;line-height:1.1}.flamme .journal-cards{display:block}.flamme .journal-cards .card-link{display:grid;grid-template-columns:300px 1fr;gap:36px;align-items:center}.flamme .journal-cards .card-copy{max-width:640px}.flamme .journal-cards .card h3{font-size:2.15rem}.flamme .site-footer{border-top:1px solid var(--line-strong);margin-top:60px}.flamme .brand--footer{font-size:4rem}.flamme .post-body>p:first-of-type::first-letter{font-family:Georgia,serif}.flamme .toc{background:transparent;border:0;border-top:1px solid var(--line-strong);border-bottom:1px solid var(--line-strong);padding-left:0}
@media(max-width:960px){.section-heading{align-items:start}.essay-grid{gap:5%}.freyja .hero-grid{gap:4%}.freyja .nav,.flamme .nav{gap:18px}.flamme .cover-photo img{height:570px}.flamme .brand-note{display:none}.flamme .cover-small{display:block}.flamme .cover-small img{width:100%;height:140px}.flamme .cover-small p{margin-top:12px}.freyja .topic:nth-child(2){border-right:0}.freyja .topic:nth-child(-n+2){border-bottom:1px solid var(--line-strong)}}
@media(max-width:760px){.topline{font-size:.61rem}.brand-note{display:none}.freyja .bar{justify-content:space-between;min-height:73px}.freyja .nav-toggle,.flamme .nav-toggle{display:block}.freyja .nav,.flamme .nav{display:none;position:absolute;left:0;right:0;top:100%;padding:14px 24px;width:100%;background:var(--header-bg-solid);border-top:1px solid var(--line)}.freyja .nav.is-open,.flamme .nav.is-open{display:flex}.freyja .nav a,.flamme .nav a{font-size:.88rem}.freyja .hero-grid{display:flex;flex-direction:column;align-items:stretch;gap:34px;padding:40px 0}.freyja .hero h1{max-width:16ch;font-size:3.05rem}.freyja .hero-photo img{aspect-ratio:4/3;border-radius:80px 80px 14px 14px}.hero-footnote{margin-bottom:0}.essay-grid,.flamme .essay-grid,.story-grid,.flamme .story-grid,.category-head{grid-template-columns:1fr;gap:25px}.essay-grid h2,.story-grid h2{max-width:24ch}.story-grid figure img{max-height:420px;aspect-ratio:4/3}.section-heading{display:block}.section-heading h2{margin-bottom:14px}.section-heading .text-link{display:inline-block;margin-top:16px}.cards.two{grid-template-columns:1fr}.category-head figure img{max-height:300px;width:100%}.flamme .bar{min-height:90px;justify-content:space-between}.flamme .brand{font-size:3.9rem}.flamme .cover-title{text-align:left;padding:35px 0 28px}.flamme .cover-title h1{font-size:3.2rem;margin:0;max-width:17ch}.flamme .cover-grid{display:flex;flex-direction:column}.flamme .cover-photo img{height:auto;aspect-ratio:4/3}.flamme .cover-note{padding-top:30px}.flamme .cover-note .issue{margin-bottom:15px}.flamme .cover-small{display:none}.flamme .journal-cards .card-link{grid-template-columns:1fr;gap:0}.flamme .journal-cards .card h3{font-size:1.8rem}.flamme .essay-section{margin-top:0}.flamme .topics{grid-template-columns:1fr}.flamme .post-head h1{font-size:2.3rem}.freyja .site-footer{border-radius:28px 28px 0 0}.post-body h2{scroll-margin-top:25px}}
@media(max-width:520px){.freyja .topics{grid-template-columns:1fr}.freyja .topic{border-right:0;border-bottom:1px solid var(--line-strong)}.flamme .brand{font-size:3.3rem}.card-copy{padding:22px}.wrap{width:calc(100% - 36px)}.wrap--narrow{width:calc(100% - 36px)}.topline{letter-spacing:0}.topline span{max-width:73%}.agegate-card{padding:28px 22px}}

.category-head+.section .card-copy{padding:26px}.cards.two .card-copy{padding:25px}.flamme .cards.two .card-copy{padding:25px 0}.cards.two{margin-top:28px}

/* Preserve photographic anatomy: use the original landscape frame for people and scenes. */
.editorial-image{display:block;max-width:100%;height:auto}
.freyja .hero-photo img{aspect-ratio:1280/854;object-fit:contain;border-radius:70px 70px 18px 18px;height:auto}
.story-grid figure img,.flamme .story-grid figure img{aspect-ratio:1280/854;max-height:none;height:auto;object-fit:contain}
.flamme .cover-photo img{height:auto;aspect-ratio:1280/854;object-fit:contain;object-position:center}
.flamme .cover-small img{width:100%;height:auto;aspect-ratio:1280/854;object-fit:contain}
.category-head figure img{display:block;width:100%;height:auto;aspect-ratio:1280/854;max-height:none;object-fit:contain}
.freyja .category-head figure img{border-radius:36px 36px 12px 12px}
.article-photo{max-width:900px}
.article-photo img{height:auto;max-height:none;aspect-ratio:1280/854;object-fit:contain}
.card-photo img{aspect-ratio:1280/854;height:auto;object-fit:contain}
@media(max-width:760px){
 .freyja .hero-photo img{border-radius:42px 42px 14px 14px}
 .flamme .cover-photo img,.story-grid figure img,.flamme .story-grid figure img{height:auto;max-height:none;aspect-ratio:1280/854}
}
