/* ============================================
   JRN Consultancy — Shared Stylesheet
   Design system for all pages
============================================ */

:root {
  --paper: #F6F2EC;
  --paper-warm: #EFE9DF;
  --paper-deep: #E6E0D4;
  --ink: #1A1A1A;
  --ink-soft: #3A3A38;
  --muted: #8A867E;
  --rule: #D9D5CE;
  --rule-soft: #E6E2DA;
  --accent: #7A5C3A;
  --accent-deep: #5F4628;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Switzer", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --maxw: 1440px;
  --gutter: clamp(24px, 4vw, 80px);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02", "kern";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Grain overlay ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ===== Container ===== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(246, 242, 236, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 13px !important;
  font-weight: 500;
  color: var(--accent) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.nav-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* ============================================
   TYPOGRAPHY PRIMITIVES
============================================ */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.display-xxl {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(44px, 7.8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.display-xl {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  color: var(--accent-deep);
}
.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.prose {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}
.prose p { margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose .italic { color: var(--accent-deep); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   LINKS & CTAs
============================================ */
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: all 0.3s var(--ease);
}
.inline-link .arrow { transition: transform 0.3s var(--ease); }
.inline-link:hover .arrow { transform: translateX(5px); }

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 22px 40px;
  transition: all 0.3s var(--ease);
}
.cta-primary:hover { background: var(--accent-deep); }
.cta-primary .arrow { transition: transform 0.4s var(--ease); }
.cta-primary:hover .arrow { transform: translateX(6px); }

.cta-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: all 0.3s var(--ease);
}
.cta-underline:hover { padding-right: 8px; }
.cta-underline .arrow { transition: transform 0.4s var(--ease); }
.cta-underline:hover .arrow { transform: translateX(6px); }

/* ============================================
   PAGE HEADER (for interior pages)
============================================ */
.page-header {
  padding: 180px var(--gutter) 100px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.page-header .crumbs {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.page-header .crumbs a { color: var(--accent); }
.page-header .crumbs a:hover { color: var(--accent-deep); }
.page-header .crumbs .sep { margin: 0 8px; color: var(--muted); }
.page-header h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-bottom: 40px;
}
.page-header h1 .italic { color: var(--accent-deep); }
.page-header .lede {
  max-width: 56ch;
}

/* ============================================
   SECTION SPACING
============================================ */
.section {
  padding: 120px var(--gutter) 120px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section--tight { padding: 80px var(--gutter) 80px; }
.section--generous { padding: 160px var(--gutter) 160px; }
.section--full {
  padding: 120px 0 120px;
  max-width: none;
  margin: 0;
}
.section--warm {
  background: var(--paper-warm);
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.section--warm > .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section--deep {
  background: var(--paper-deep);
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.section--deep > .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-head {
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.section-head h2 .italic { color: var(--accent-deep); }
.section-head .sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 44ch;
  padding-bottom: 8px;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   GRID TILES (services, metrics, etc.)
============================================ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.tile-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tile {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  position: relative;
}
.tile:hover { background: var(--paper-warm); }
.tile--clickable { cursor: pointer; }
.tile-num {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.tile-num .unit, .tile-num .plus, .tile-num .pct {
  font-size: 0.55em;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  color: var(--accent);
  vertical-align: 0.15em;
  margin-left: 2px;
}
.tile-copy {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32ch;
  margin-top: auto;
  padding-top: 28px;
}
.tile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.tile-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.tile-index {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}
.tile-link {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tile-link .arrow { transition: transform 0.3s var(--ease); }
.tile:hover .tile-link .arrow { transform: translateX(4px); }

@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tile-grid, .tile-grid--2 { grid-template-columns: 1fr; } }

/* ============================================
   LIST ROWS (case studies, insights, press)
============================================ */
.row-list { display: flex; flex-direction: column; }
.row-list .row {
  display: grid;
  grid-template-columns: 60px 1.3fr 1.2fr auto;
  gap: clamp(24px, 4vw, 80px);
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
  transition: padding 0.4s var(--ease);
  cursor: pointer;
}
.row-list .row:last-child { border-bottom: 1px solid var(--rule); }
.row-list .row:hover { padding-left: 16px; }
.row-index {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-size: 16px;
  color: var(--muted);
}
.row-title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.row-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
}
.row-outcome {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.row-outcome strong {
  font-weight: 500;
  color: var(--ink);
}
.row-arrow {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  align-self: center;
}
.row-list .row:hover .row-arrow { transform: translateX(8px); }

@media (max-width: 900px) {
  .row-list .row { grid-template-columns: 40px 1fr auto; gap: 24px; }
  .row-outcome { display: none; }
}
@media (max-width: 600px) {
  .row-list .row { padding: 28px 0; }
}

/* ============================================
   TWO COLUMN (label + content)
============================================ */
.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}
.two-col:last-child { border-bottom: 1px solid var(--rule); }
.two-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 10px;
}
.two-col-body {
  max-width: 62ch;
}
.two-col-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.two-col-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.two-col-body p + p { margin-top: 1em; }
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   CASE STUDY PAGE
============================================ */
.case-hero {
  padding: 160px var(--gutter) 100px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.case-hero .meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.case-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-bottom: 48px;
}
.case-hero h1 .italic { color: var(--accent-deep); }
.case-headline-result {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--accent-deep);
  max-width: 44ch;
  padding: 32px 0 0;
  border-top: 1px solid var(--rule);
}

.case-section {
  padding: 100px var(--gutter) 100px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}
.case-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 8px;
}
.case-section-label .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.case-section-body {
  max-width: 60ch;
}
.case-section-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.2em;
}
.case-section-body p:last-child { margin-bottom: 0; }
.case-section-body p .italic { color: var(--accent-deep); }
.case-section--warm {
  background: var(--paper-warm);
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.case-section--warm > .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}
@media (max-width: 720px) {
  .case-section { grid-template-columns: 1fr; gap: 20px; }
  .case-section--warm > .inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   FORM
============================================ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 780px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 12px;
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237A5C3A' fill='none' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 8px center; padding-right: 24px; }
.form-submit { margin-top: 8px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--ink);
  color: rgba(246, 242, 236, 0.75);
  padding: 100px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-masthead {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(246, 242, 236, 0.15);
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--paper);
  letter-spacing: -0.02em;
}
.footer-logo em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1; }
.footer-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: rgba(246, 242, 236, 0.65);
  text-align: right;
  max-width: 40ch;
  justify-self: end;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: 80px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 14px; }
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-offices li {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--paper);
}
.footer-offices li span {
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-left: 8px;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(246, 242, 236, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: rgba(246, 242, 236, 0.5);
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--paper); }
@media (max-width: 900px) {
  .footer-masthead { grid-template-columns: 1fr; }
  .footer-tagline { text-align: left; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MOTION
============================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.rise-0 { opacity: 0; animation: rise 1s var(--ease) 0.1s forwards; }
.rise-1 { opacity: 0; animation: rise 1.2s var(--ease) 0.25s forwards; }
.rise-2 { opacity: 0; animation: rise 1.2s var(--ease) 0.4s forwards; }
.rise-3 { opacity: 0; animation: rise 1.2s var(--ease) 0.55s forwards; }
.rise-4 { opacity: 0; animation: rise 1.2s var(--ease) 0.7s forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  [class^="rise-"] { opacity: 1; animation: none; }
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 64px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 64px; }

/* Placeholder image blocks */
.img-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #3a3834 0%, #1a1816 100%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 25%, rgba(200, 180, 140, 0.18), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(122, 92, 58, 0.22), transparent 50%);
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(246, 242, 236, 0.5);
}
.img-placeholder--wide { aspect-ratio: 16 / 10; }
.img-placeholder--square { aspect-ratio: 1 / 1; }

/* Separator */
.sep { color: var(--muted); margin: 0 10px; font-style: italic; }
