:root {
  --ink: #141210;
  --ink-soft: #2a2622;
  --gold: #b08d57;
  --gold-soft: #d4b896;
  --gold-deep: #8a6c3d;
  --pearl: #f6f5f3;
  --mist: #ebe9e5;
  --paper: #fffcf8;
  --muted: #6a655e;
  --line: rgba(20, 18, 16, 0.1);
  --shadow: 0 24px 60px rgba(20, 18, 16, 0.08);
  --radius: 2px;
  --header-h: 4.5rem;
  --font-display: "Hahmlet", "Noto Serif KR", serif;
  --font-body: "Noto Sans KR", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(176, 141, 87, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(42, 38, 34, 0.06), transparent 50%),
    linear-gradient(180deg, var(--pearl) 0%, var(--mist) 100%);
  background-attachment: fixed;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--gold-soft);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(20, 18, 16, 0.92);
  border-bottom: 1px solid rgba(176, 141, 87, 0.25);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--pearl);
}

.brand:hover {
  color: var(--gold-soft);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px transparent, 0 0 0 1px rgba(176, 141, 87, 0.35);
  background:
    radial-gradient(circle at 50% 50%, var(--gold-soft) 0 2px, transparent 2.5px),
    linear-gradient(135deg, transparent 45%, var(--gold) 45% 55%, transparent 55%);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: rgba(246, 245, 243, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.45rem 0.9rem;
  color: var(--gold-soft) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(176, 141, 87, 0.45);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--gold-soft);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -5px; }
.nav-toggle-bar::after { top: 5px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20, 18, 16, 0.98);
    padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(176, 141, 87, 0.25);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s ease;
  }
  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-main {
  min-height: 60vh;
}

/* Hero — full-bleed, brand-led */
.hero-bleed {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--pearl);
  overflow: hidden;
}

.hero-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 18, 16, 0.88) 28%, rgba(20, 18, 16, 0.35) 70%, rgba(20, 18, 16, 0.55) 100%),
    var(--hero-image) center/cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
  z-index: 0;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.55), transparent 42%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.25rem 4.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: var(--pearl);
  animation: rise-in 0.9s var(--ease) both;
}

.hero-line {
  max-width: 28rem;
  font-size: 1.05rem;
  color: rgba(246, 245, 243, 0.86);
  margin-bottom: 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  animation: rise-in 1s 0.15s var(--ease) both;
}

.hero-actions {
  animation: rise-in 1s 0.28s var(--ease) both;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(246, 245, 243, 0.45);
  color: var(--pearl);
}

.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.btn-ink {
  background: var(--ink);
  color: var(--pearl);
}

.btn-ink:hover {
  background: var(--ink-soft);
  color: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--pearl);
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 38rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.quote-rail {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .quote-rail {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.quote-feature {
  padding: 2.25rem 2rem;
  background: var(--ink);
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}

.quote-feature::before {
  content: "“";
  position: absolute;
  top: -0.3rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(176, 141, 87, 0.28);
  line-height: 1;
}

.quote-feature p {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.quote-meta {
  font-size: 0.9rem;
  color: var(--gold-soft);
}

.quote-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.quote-compact {
  padding: 1.4rem 1.35rem;
  background: rgba(255, 252, 248, 0.72);
  border-left: 2px solid var(--gold);
}

.quote-compact p {
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
}

.quote-compact .quote-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.benefit-grid {
  display: grid;
  gap: 2rem 2.5rem;
}

@media (min-width: 760px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.benefit-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.benefit-num {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.featured-course {
  display: grid;
  gap: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .featured-course {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.featured-course img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.featured-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
}

.method-strip {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .method-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.method-step {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.method-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.method-step p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.cta-band {
  margin: 2rem 0 5rem;
  padding: 3rem 2rem;
  background:
    linear-gradient(120deg, rgba(20, 18, 16, 0.94), rgba(42, 38, 34, 0.9)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--pearl);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(246, 245, 243, 0.82);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
  padding: 2.5rem 0;
  border-block: 1px solid var(--line);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink);
  font-weight: 600;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 18ch;
}

.page-hero p {
  max-width: 38rem;
  color: var(--muted);
}

.page-hero-media {
  margin: 0 0 3rem;
  min-height: 280px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--pearl), transparent 50%);
}

.course-list,
.blog-list,
.price-grid,
.review-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .course-list,
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.media-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 252, 248, 0.65);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.media-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.media-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-tile .tile-body {
  padding: 1.35rem 1.25rem 1.6rem;
}

.media-tile h2,
.media-tile h3 {
  font-size: 1.25rem;
  color: var(--ink);
}

.media-tile p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.tile-meta {
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.price-tier {
  padding: 2rem 1.5rem;
  background: rgba(255, 252, 248, 0.8);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.price-tier.featured {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.price-tier.featured .price-desc,
.price-tier.featured li {
  color: rgba(246, 245, 243, 0.78);
}

.price-tier h2 {
  font-size: 1.45rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.75rem 0;
  color: var(--gold);
}

.price-tier.featured .price-amount {
  color: var(--gold-soft);
}

.price-desc {
  color: var(--muted);
  font-size: 0.95rem;
  flex-grow: 0;
}

.price-tier ul {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.price-tier li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  border-radius: 50%;
}

.price-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.review-block {
  padding: 1.75rem;
  background: rgba(255, 252, 248, 0.72);
  border-top: 2px solid var(--gold);
}

.review-block.long {
  grid-column: 1 / -1;
}

.review-stars {
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review-block h2 {
  font-size: 1.35rem;
}

.case-study {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--ink);
  color: var(--pearl);
}

.case-study h2 {
  color: var(--gold-soft);
}

.case-study p {
  color: rgba(246, 245, 243, 0.84);
  max-width: 52rem;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2.5rem;
  font-size: 1.45rem;
}

.prose h3 {
  margin-top: 1.75rem;
  font-size: 1.15rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.45rem;
  list-style: disc;
}

.prose ol li {
  list-style: decimal;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: rgba(20, 18, 16, 0.04);
  font-weight: 600;
}

.modules {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.module {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 252, 248, 0.7);
  border-left: 2px solid var(--gold);
}

.module h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.module p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.instructor {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
  align-items: center;
}

@media (min-width: 700px) {
  .instructor {
    grid-template-columns: 160px 1fr;
  }
}

.instructor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr 0.9fr;
  }
}

.contact-aside {
  padding: 1.75rem;
  background: var(--ink);
  color: var(--pearl);
}

.contact-aside h2 {
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.contact-aside address,
.contact-aside p {
  color: rgba(246, 245, 243, 0.85);
  font-style: normal;
}

.contact-aside a {
  color: var(--gold-soft);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group .req {
  color: var(--gold-deep);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.9);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(176, 141, 87, 0.45);
  outline-offset: 1px;
  border-color: var(--gold);
}

.field-error {
  display: none;
  color: #8b3a2a;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #8b3a2a;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(55, 110, 72, 0.12);
  color: #2d5a3a;
  border: 1px solid rgba(55, 110, 72, 0.25);
}

.form-status.is-error {
  display: block;
  background: rgba(139, 58, 42, 0.1);
  color: #8b3a2a;
  border: 1px solid rgba(139, 58, 42, 0.25);
}

.inline-error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: rgba(139, 58, 42, 0.1);
  color: #8b3a2a;
  border: 1px solid rgba(139, 58, 42, 0.25);
}

.site-footer {
  background: var(--ink);
  color: rgba(246, 245, 243, 0.78);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--pearl);
  margin-bottom: 0.35rem;
}

.footer-tag {
  color: var(--gold-soft);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.footer-cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-label {
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-cols a {
  color: rgba(246, 245, 243, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-cols a:hover {
  color: var(--gold-soft);
}

.footer-cols li {
  margin-bottom: 0.45rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-left: auto;
  background: var(--ink);
  color: var(--pearl);
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(176, 141, 87, 0.4);
  box-shadow: var(--shadow);
  animation: rise-in 0.5s var(--ease);
}

.cookie-banner p {
  font-size: 0.92rem;
  color: rgba(246, 245, 243, 0.85);
  margin-bottom: 1rem;
}

.cookie-banner a {
  color: var(--gold-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.error-page {
  text-align: center;
  padding: 6rem 1.25rem 5rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 0 0 2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
