/* Self-hosted fonts: no Google Fonts chain */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/fonts/outfit-normal-300-latin-ext-35e12df6.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/fonts/outfit-normal-300-latin-35708376.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-normal-600-latin-ext-90768204.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-normal-600-latin-2fed1d1b.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-500-latin-ext-4f708455.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-italic-500-latin-5d13e7eb.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Dorianna.pl: nowoczesny magazyn lifestyle */
:root {
 --bg: #f7f3ef;
 --bg-warm: #efe6dc;
 --bg-deep: #2a1f24;
 --text: #1c1418;
 --text-muted: #6b5c62;
 --accent: #9a4d5e;
 --accent-soft: #c47888;
 --accent-hover: #7a3a4a;
 --border: #e4d8ce;
 --card: #fffcfa;
 --radius: 16px;
 --radius-sm: 10px;
 --shadow: 0 8px 40px rgba(42, 31, 36, 0.07);
 --shadow-hover: 0 16px 48px rgba(42, 31, 36, 0.12);
 --font: "Outfit", system-ui, -apple-system, sans-serif;
 --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
 --max: 680px;
 --wide: 1120px;
 --header-h: 4rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
 display: flex;
 flex-direction: column;
 min-height: 100vh;
 font-family: var(--font);
 font-size: 1.0625rem;
 font-weight: 400;
 line-height: 1.75;
 color: var(--text);
 background: var(--bg);
 -webkit-font-smoothing: antialiased;
}

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

a {
 color: var(--accent);
 text-decoration-thickness: 1px;
 text-underline-offset: 3px;
 transition: color 0.15s ease;
}
a:hover { color: var(--accent-hover); }

.container { width: min(100% - 2rem, var(--wide)); margin-inline: auto; }
.container--narrow { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
 background: rgba(255, 252, 250, 0.92);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 border-bottom: 1px solid var(--border);
 position: sticky;
 top: 0;
 z-index: 100;
}

.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 min-height: var(--header-h);
 padding: 0.75rem 0;
 gap: 1.25rem;
}

.logo {
 font-family: var(--font-display);
 font-size: 1.75rem;
 font-weight: 700;
 color: var(--text);
 text-decoration: none;
 letter-spacing: -0.03em;
 line-height: 1;
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
}
.logo-mark {
 width: 2rem;
 height: 2rem;
 flex-shrink: 0;
 display: block;
 border-radius: 0.45rem;
}
.logo-text { display: inline-block; }
.logo .logo-text { color: var(--text); }
.logo .logo-text > span { color: var(--accent); }
.logo:hover .logo-text { color: var(--text); }
.logo:hover .logo-text > span { color: var(--accent); }
.site-footer .brand-logo {
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 text-decoration: none;
 color: #f7f1ef;
 margin-bottom: 0.75rem;
}
.site-footer .brand-logo img {
 width: 2rem;
 height: 2rem;
 border-radius: 0.45rem;
}
.site-footer .brand-logo .brand {
 margin: 0;
 font-family: var(--font-display);
 font-size: 1.45rem;
 color: #f7f1ef;
}

.nav {
 display: flex;
 gap: 0.25rem 1.5rem;
 flex-wrap: wrap;
 align-items: center;
}
.nav a {
 color: var(--text-muted);
 text-decoration: none;
 font-size: 0.875rem;
 font-weight: 500;
 letter-spacing: 0.01em;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--accent); }

/* Hero */
.hero {
 position: relative;
 background:
 linear-gradient(160deg, #efe6dc 0%, #f5ebe7 42%, #ead5d8 100%);
 padding: 4.5rem 0 4rem;
 border-bottom: 1px solid var(--border);
 overflow: visible;
}
.hero::after {
 content: "";
 position: absolute;
 right: -8%;
 top: -20%;
 width: 42%;
 height: 140%;
 background: radial-gradient(circle, rgba(154, 77, 94, 0.12) 0%, transparent 70%);
 pointer-events: none;
 z-index: 0;
}

.hero .eyebrow {
 display: inline-block;
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--accent);
 margin-bottom: 1rem;
}

.hero h1 {
 font-family: var(--font-display);
 font-size: clamp(2.15rem, 5.5vw, 3.35rem);
 font-weight: 600;
 line-height: 1.15;
 letter-spacing: -0.025em;
 max-width: 14ch;
 margin-bottom: 1.15rem;
}

.hero p {
 color: var(--text-muted);
 font-size: 1.125rem;
 font-weight: 300;
 max-width: 38ch;
 margin-bottom: 1.75rem;
 line-height: 1.65;
}

.btn {
 display: inline-block;
 background: var(--accent);
 color: #fff !important;
 padding: 0.85rem 1.65rem;
 border-radius: 999px;
 text-decoration: none;
 font-weight: 500;
 font-size: 0.9rem;
 letter-spacing: 0.02em;
 transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
 box-shadow: 0 4px 16px rgba(154, 77, 94, 0.28);
}
.btn:hover {
 background: var(--accent-hover);
 transform: translateY(-1px);
 box-shadow: 0 6px 20px rgba(154, 77, 94, 0.35);
}
.btn--ghost {
 background: transparent;
 color: var(--text) !important;
 box-shadow: none;
 border: 1px solid var(--border);
 margin-left: 0.65rem;
}
.btn--ghost:hover {
 background: var(--card);
 border-color: var(--accent-soft);
 color: var(--accent) !important;
 box-shadow: none;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

/* Sections */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg-warm); border-block: 1px solid var(--border); }

.section-title {
 font-family: var(--font-display);
 font-size: clamp(1.65rem, 3vw, 2rem);
 font-weight: 600;
 margin-bottom: 0.5rem;
 letter-spacing: -0.02em;
}
.section-sub {
 color: var(--text-muted);
 font-size: 1rem;
 margin-bottom: 2rem;
 max-width: 42ch;
}

/* Cards */
.cards {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
 gap: 1.5rem;
}

.card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow);
 transition: transform 0.25s ease, box-shadow 0.25s ease;
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-hover);
}

.card-thumb {
 aspect-ratio: 16 / 9;
 background: linear-gradient(145deg, var(--bg-warm), #e8d4d8);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 2.25rem;
 position: relative;
}
.card-thumb::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(28, 20, 24, 0.06), transparent 40%);
}

.card-body {
 padding: 1.35rem 1.4rem 1.6rem;
 flex: 1;
 display: flex;
 flex-direction: column;
}
.card-meta {
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--accent-soft);
 margin-bottom: 0.55rem;
}
.card h2, .card h3 {
 font-family: var(--font-display);
 font-size: 1.3rem;
 font-weight: 600;
 line-height: 1.3;
 margin-bottom: 0.55rem;
 letter-spacing: -0.015em;
}
.card h2 a, .card h3 a {
 color: var(--text);
 text-decoration: none;
}
.card h2 a:hover, .card h3 a:hover { color: var(--accent); }
.card p {
 font-size: 0.9375rem;
 color: var(--text-muted);
 line-height: 1.55;
 flex: 1;
}
.card-more {
 margin-top: 1rem;
 font-size: 0.8125rem;
 font-weight: 500;
 text-decoration: none;
 color: var(--accent);
}
.card-more:hover { color: var(--accent-hover); }

/* Intro */
.intro-box {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 2rem 2.25rem;
 margin-bottom: 3rem;
 box-shadow: var(--shadow);
 display: grid;
 gap: 1rem;
}
.intro-box h2 {
 font-family: var(--font-display);
 font-size: 1.5rem;
 font-weight: 600;
 letter-spacing: -0.015em;
}
.intro-box p { color: var(--text-muted); }
.intro-box p:last-child { margin-bottom: 0; }

/* Article */
.breadcrumb {
 font-size: 0.8125rem;
 color: var(--text-muted);
 padding: 1.25rem 0 0;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 0.35rem; opacity: 0.5; }

.article-header {
 padding: 2rem 0 1.75rem;
 border-bottom: 1px solid var(--border);
 margin-bottom: 2.25rem;
}
.article-header .meta {
 font-size: 0.8125rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--accent-soft);
 margin-bottom: 0.85rem;
}
.article-header h1 {
 font-family: var(--font-display);
 font-size: clamp(1.85rem, 4vw, 2.65rem);
 font-weight: 600;
 line-height: 1.2;
 letter-spacing: -0.025em;
}
.article-header .lead {
 margin-top: 1.15rem;
 font-size: 1.15rem;
 font-weight: 300;
 color: var(--text-muted);
 line-height: 1.65;
}

.prose { padding-bottom: 2rem; }
.prose h2 {
 font-family: var(--font-display);
 font-size: 1.55rem;
 font-weight: 600;
 margin: 2.35rem 0 0.85rem;
 letter-spacing: -0.015em;
 line-height: 1.25;
}
.prose h3 {
 font-size: 1.1rem;
 font-weight: 600;
 margin: 1.65rem 0 0.55rem;
}
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol {
 margin: 0 0 1.25rem 1.2rem;
}
.prose li { margin-bottom: 0.45rem; }
.prose li::marker { color: var(--accent-soft); }
.prose blockquote {
 border-left: 3px solid var(--accent);
 padding: 0.85rem 0 0.85rem 1.35rem;
 margin: 1.75rem 0;
 color: var(--text-muted);
 font-family: var(--font-display);
 font-size: 1.2rem;
 font-style: italic;
 line-height: 1.45;
}
.prose .callout {
 background: linear-gradient(135deg, #f5ebe7, #efe6dc);
 border-radius: var(--radius-sm);
 padding: 1.35rem 1.5rem;
 margin: 1.85rem 0;
 border: 1px solid var(--border);
}
.prose .callout p:last-child { margin-bottom: 0; }

.related {
 border-top: 1px solid var(--border);
 padding: 2.5rem 0 3.5rem;
}
.related h2 {
 font-family: var(--font-display);
 font-size: 1.35rem;
 font-weight: 600;
 margin-bottom: 1.15rem;
}
.related-list {
 list-style: none;
 display: grid;
 gap: 0.65rem;
}
.related-list a {
 display: block;
 padding: 0.85rem 1.1rem;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 text-decoration: none;
 color: var(--text);
 font-weight: 500;
 font-size: 0.9375rem;
 transition: border-color 0.15s, background 0.15s;
}
.related-list a:hover {
 border-color: var(--accent-soft);
 background: #fff8f6;
 color: var(--accent);
}

/* Contact */
.contact-card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 2rem;
 box-shadow: var(--shadow);
 max-width: 32rem;
}
.contact-card a.email-link {
 font-size: 1.25rem;
 font-weight: 500;
 text-decoration: none;
}

/* Footer */
.site-footer {
 background: var(--bg-deep);
 color: #a8989e;
 padding: 3rem 0 2.25rem;
 font-size: 0.875rem;
 margin-top: auto;
}
.site-footer a { color: #e0b4be; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-inner {
 display: grid;
 grid-template-columns: 1.4fr 1fr 1fr;
 gap: 2rem;
}
.site-footer .brand {
 font-family: var(--font-display);
 color: #fff;
 font-size: 1.35rem;
 font-weight: 600;
 margin-bottom: 0.65rem;
}
.site-footer .footer-col h3 {
 color: #fff;
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 margin-bottom: 0.85rem;
}
.site-footer .footer-col nav,
.site-footer .footer-links {
 display: flex;
 flex-direction: column;
 gap: 0.45rem;
}
.footer-bottom {
 margin-top: 2.25rem;
 padding-top: 1.5rem;
 border-top: 1px solid rgba(255, 255, 255, 0.08);
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 gap: 0.75rem;
 font-size: 0.8125rem;
}

/* 404 */
.page-404 .hero { text-align: left; }

/* Mobile */
@media (max-width: 800px) {
 .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}
@media (max-width: 600px) {
 .header-inner {
 flex-direction: column;
 align-items: flex-start;
 gap: 0.75rem;
 }
 .nav { gap: 0.35rem 1rem; }
 .hero { padding: 3rem 0 2.75rem; }
 .hero h1 { max-width: none; }
 .btn--ghost { margin-left: 0; }
 .intro-box { padding: 1.35rem 1.4rem; }
 .cards { grid-template-columns: 1fr; }
 .section { padding: 2.75rem 0; }
}


/* layout shell */
main, .section-main, main.section { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; width: 100%; }
html { background: var(--bg-deep); }


/* === Layout: no cream gap under footer === */
html {
  background: var(--bg-deep);
  min-height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}
body > .site-header,
body > .hero,
body > .section,
body > main,
body > .article-header,
body > .container--narrow,
body > .breadcrumb,
body > .prose,
body > .page-hero,
body > .hero--compact {
  /* keep cream flow */
}
main, .section, .prose-wrap { flex: 1 0 auto; }
.site-footer {
  margin-top: auto;
  background: var(--bg-deep) !important;
  flex-shrink: 0;
  width: 100%;
  padding-bottom: max(2.25rem, env(safe-area-inset-bottom));
}

/* Clickable cards */
.card {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
a.card:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(154, 77, 94, 0.25);
}
a.card { color: inherit; }
a.card h2, a.card h3, .card h2, .card h3 { color: var(--text); }
.card .stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card a:not(.stretched-link) {
  position: relative;
  z-index: 2;
}
.card-thumb {
  pointer-events: none;
}

/* Nav mobile */
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* About page */
.about-hero {
  background: linear-gradient(160deg, #efe6dc 0%, #f5ebe7 42%, #ead5d8 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.about-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.about-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.about-panel ul { padding-left: 1.15rem; margin: 0.75rem 0; }
.about-panel li { margin: 0.35rem 0; }

/* Tablet */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-inner .footer-col:first-child { grid-column: 1 / -1; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
  .about-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.25rem 0 3rem; }
}

/* Mobile */
@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.35rem 0 0.5rem;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.65rem 0.35rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.65rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .container, .container--narrow { width: min(100% - 1.25rem, var(--wide)); }
  .prose, article.prose { font-size: 1rem; }
  .card-thumb { min-height: 7.5rem; font-size: 2rem; }
}

@media (max-width: 420px) {
  .logo { font-size: 1.5rem; }
  .logo-mark { width: 1.75rem; height: 1.75rem; }
  .section { padding: 2.25rem 0; }
}

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}


/* === Homepage magazine layout === */
.hero--home { padding: 3.75rem 0 3.75rem; }
.hero--home .hero-panel { min-height: 0; }
.hero-mini-list { position: relative; z-index: 2; }
.hero-grid {
 display: grid;
 grid-template-columns: 1.15fr 0.85fr;
 gap: 2.25rem;
 align-items: start;
 position: relative;
 z-index: 1;
}
.hero-copy h1 { max-width: 12ch; }
.hero-lead { max-width: 36ch; }
.hero-stats {
 display: flex;
 flex-wrap: wrap;
 gap: 1.25rem 1.75rem;
 list-style: none;
 margin: 2rem 0 0;
 padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stats strong {
 font-family: var(--font-display);
 font-size: 1.65rem;
 color: var(--text);
 line-height: 1;
}
.hero-stats span { font-size: 0.8rem; color: var(--text-muted); }

.hero-panel {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}
.hero-feature {
 display: block;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: calc(var(--radius) + 4px);
 padding: 1.5rem 1.5rem 1.35rem;
 text-decoration: none;
 color: inherit;
 box-shadow: var(--shadow);
 transition: transform .2s ease, box-shadow .2s ease;
 flex: 1 1 auto;
}
.hero-feature:hover {
 transform: translateY(-3px);
 box-shadow: var(--shadow-hover);
 color: inherit;
}
.hero-feature-kicker {
 display: inline-block;
 font-size: 0.72rem;
 font-weight: 600;
 letter-spacing: .1em;
 text-transform: uppercase;
 color: var(--accent);
 margin-bottom: .75rem;
}
.hero-feature-emoji { font-size: 2rem; display: block; margin-bottom: .65rem; }
.hero-feature h2 {
 font-family: var(--font-display);
 font-size: 1.85rem;
 line-height: 1.2;
 margin: 0 0 .55rem;
}
.hero-feature p { color: var(--text-muted); margin: 0 0 1rem; }
.hero-feature-cta {
 font-size: .9rem;
 font-weight: 500;
 color: var(--accent);
}
.hero-mini-list {
 display: flex;
 flex-direction: column;
 gap: .55rem;
 background: rgba(255,252,250,.72);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 1rem 1.1rem;
}
.hero-mini-list a {
 text-decoration: none;
 color: var(--text);
 font-size: .92rem;
 font-weight: 500;
 padding: .35rem 0;
 border-bottom: 1px solid transparent;
}
.hero-mini-list a:hover { color: var(--accent); }

.topics-bar {
 border-bottom: 1px solid var(--border);
 background: var(--card);
 padding: 1.15rem 0;
 position: relative;
 z-index: 1;
}
.topics-label {
 font-size: .72rem;
 text-transform: uppercase;
 letter-spacing: .12em;
 color: var(--text-muted);
 margin: 0 0 .65rem;
 font-weight: 600;
}
.topics-row {
 display: flex;
 flex-wrap: wrap;
 gap: .5rem;
}
.topics-row a {
 text-decoration: none;
 color: var(--text);
 background: var(--bg);
 border: 1px solid var(--border);
 border-radius: 999px;
 padding: .45rem .9rem;
 font-size: .85rem;
 font-weight: 500;
}
.topics-row a:hover {
 border-color: var(--accent);
 color: var(--accent);
 background: #fff;
}

.section-head {
 display: flex;
 justify-content: space-between;
 align-items: end;
 gap: 1rem;
 margin-bottom: 1.75rem;
}
.section-link {
 text-decoration: none;
 font-weight: 500;
 font-size: .95rem;
 white-space: nowrap;
}
.feature-row {
 display: grid;
 grid-template-columns: 1.3fr 1fr 1fr;
 gap: 1.25rem;
}
.feature-card {
 display: flex;
 flex-direction: column;
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 1.4rem 1.35rem;
 text-decoration: none;
 color: inherit;
 box-shadow: var(--shadow);
 min-height: 14rem;
 transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); color: inherit; }
.feature-card--large {
 background: linear-gradient(165deg, #2a1f24 0%, #4a3038 100%);
 color: #f7f1ef;
 border-color: transparent;
}
.feature-card--large:hover { color: #fff; }
.feature-card--large p { color: rgba(247,241,239,.78); }
.feature-card-badge {
 font-size: .7rem;
 text-transform: uppercase;
 letter-spacing: .1em;
 font-weight: 600;
 opacity: .8;
 margin-bottom: .85rem;
}
.feature-card-emoji { font-size: 1.75rem; margin-bottom: .5rem; }
.feature-card h3 {
 font-family: var(--font-display);
 font-size: 1.45rem;
 line-height: 1.2;
 margin: 0 0 .5rem;
}
.feature-card p { margin: 0; font-size: .95rem; color: var(--text-muted); }

.intro-split {
 display: grid;
 grid-template-columns: 1.2fr .8fr;
 gap: 2rem;
 align-items: start;
}
.intro-points { display: flex; flex-direction: column; gap: .85rem; }
.intro-point {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius-sm);
 padding: 1rem 1.1rem;
 display: grid;
 grid-template-columns: auto 1fr;
 gap: .85rem;
 align-items: start;
}
.intro-point strong {
 font-family: var(--font-display);
 font-size: 1.35rem;
 color: var(--accent);
}
.intro-point span { color: var(--text-muted); font-size: .95rem; }

.cta-band {
 background: linear-gradient(120deg, #efe6dc, #ead5d8 55%, #e4cfd4);
 border-block: 1px solid var(--border);
}
.cta-band-inner {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 1.5rem;
 flex-wrap: wrap;
}
.cta-band h2 {
 font-family: var(--font-display);
 font-size: clamp(1.5rem, 3vw, 2rem);
 margin: 0 0 .4rem;
}
.cta-band p { margin: 0; color: var(--text-muted); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .55rem; }

@media (max-width: 960px) {
 .hero-grid, .feature-row, .intro-split { grid-template-columns: 1fr; }
 .feature-card--large { min-height: 12rem; }
}
@media (max-width: 720px) {
 .hero--home { padding: 2.75rem 0 2.4rem; }
 .hero-stats { gap: 1rem 1.25rem; }
 .section-head { flex-direction: column; align-items: flex-start; }
 .cta-band-inner { align-items: stretch; }
 .cta-band-actions .btn { width: 100%; text-align: center; }
}


.prose-legal h2 {
 font-family: var(--font-display);
 font-size: 1.45rem;
 font-weight: 600;
 margin: 2rem 0 0.75rem;
}
.prose-legal p, .prose-legal li { color: var(--text); }
.prose-legal ul { padding-left: 1.25rem; margin: 0.75rem 0 1.25rem; }
.prose-legal li { margin: 0.35rem 0; }

.footer-legal a { color: #e0b4be; text-decoration: none; margin-right: 0.35rem; }
.footer-legal a:hover { color: #fff; }
