/* Cloudserviceseng — premium dark + gold */
:root {
  --bg: #0a0a0c;
  --bg-elevated: #121216;
  --bg-panel: #18181d;
  --bg-soft: #1e1e24;
  --gold: #c9a84c;
  --gold-light: #e0c878;
  --gold-muted: #8a7340;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --text: #f2efe6;
  --text-muted: #a39e90;
  --text-dim: #6f6a5e;
  --border: rgba(201, 168, 76, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --danger: #d47878;
  --success: #7aaf8a;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 168, 76, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(201, 168, 76, 0.05), transparent 45%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

p { margin: 0 0 1rem; color: var(--text-muted); }

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

.site-main {
  padding-top: var(--header-h);
  min-height: 60vh;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

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

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

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

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

.nav-cta:hover {
  background: var(--gold-dim);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
  margin: 3px 0;
}

@media (max-width: 920px) {
  .nav-toggle { display: flex; flex-direction: column; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem 1.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  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: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0c;
  font-weight: 560;
}

.btn-gold:hover {
  color: #0a0a0c;
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--gold-light);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Hero — brand-forward split with gold rule */
.hero-luxury {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-brand-signal {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  margin: 0 0 1.25rem;
  letter-spacing: 0.04em;
}

.hero-rule {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
  transform-origin: left;
  animation: ruleGrow 1s var(--ease) both;
}

.hero-copy h1 {
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-lede {
  font-size: 1.1rem;
  max-width: 36ch;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  filter: brightness(0.72) saturate(0.85);
  animation: fadeRise 1.2s var(--ease) 0.15s both;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 28%),
              linear-gradient(0deg, rgba(10, 10, 12, 0.35), transparent 40%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-luxury {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    min-height: 52vw;
    order: -1;
  }
  .hero-visual::after {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 45%);
  }
  .hero-copy h1 { max-width: none; }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

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

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head h2 { color: var(--text); }

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.trust-item {
  text-align: center;
  padding: 0.5rem 1rem;
  opacity: 0;
  animation: fadeRise 0.8s var(--ease) forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.25s; }
.trust-item:nth-child(3) { animation-delay: 0.4s; }

.trust-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
  margin: 0 0 0.35rem;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 700px) {
  .trust-strip { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Featured course band */
.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.feature-band img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.8);
}

.feature-meta {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.75rem;
}

@media (max-width: 800px) {
  .feature-band { grid-template-columns: 1fr; }
}

/* Benefits */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-list li {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.benefit-list h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
  .benefit-list { grid-template-columns: 1fr; }
}

/* Course grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.course-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.course-tile img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: brightness(0.78);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.course-tile:hover img {
  filter: brightness(0.9);
  transform: scale(1.01);
}

.course-tile-body {
  padding: 1.25rem 0 0;
  border-top: 1px solid transparent;
}

.course-tile h3 {
  color: var(--text);
  text-decoration: none;
}

.course-tile p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.course-price {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* Testimonials */
.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.quote {
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
}

.quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
}

.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.quote-short blockquote {
  font-size: 1.15rem;
  font-family: var(--font-body);
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-tier {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-tier.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), var(--bg-panel) 40%);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text);
  margin: 0.75rem 0;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.tier-desc {
  font-size: 0.95rem;
  flex-grow: 1;
}

.tier-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}

.tier-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.blog-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.8);
}

.blog-row h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.blog-meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .blog-row { grid-template-columns: 1fr; gap: 1rem; }
}

/* Article */
.article-hero {
  padding: 3.5rem 0 2rem;
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-top: 2rem;
  filter: brightness(0.75);
}

.article-body {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  color: var(--text);
}

.article-body ul {
  color: var(--text-muted);
  padding-left: 1.25rem;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form,
.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-field.is-invalid .field-error { display: block; }
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: var(--danger);
}

.form-status {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(122, 175, 138, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-status.is-error {
  display: block;
  background: rgba(212, 120, 120, 0.12);
  border: 1px solid var(--danger);
  color: var(--danger);
}

.contact-details p {
  margin-bottom: 0.75rem;
}

.contact-details strong {
  display: block;
  color: var(--gold-muted);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media (max-width: 800px) {
  .form-layout { grid-template-columns: 1fr; }
}

/* Legal */
.legal-page {
  padding: 3.5rem 0 5rem;
}

.legal-page .container {
  max-width: 44rem;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  margin-top: 2.25rem;
  font-size: 1.55rem;
  color: var(--text);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.legal-page th,
.legal-page td {
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 0.75rem;
  text-align: left;
  color: var(--text-muted);
}

.legal-page th {
  color: var(--gold-light);
  background: var(--bg-panel);
  font-weight: 500;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.35rem 0;
}

.faq-item h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* Modules */
.module-list {
  counter-reset: mod;
  list-style: none;
  margin: 0;
  padding: 0;
}

.module-list li {
  counter-increment: mod;
  padding: 1.5rem 0 1.5rem 4rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
}

.instructor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  filter: brightness(0.9) grayscale(0.2);
}

@media (max-width: 560px) {
  .instructor { grid-template-columns: 1fr; }
}

/* Reviews page */
.review-grid {
  display: grid;
  gap: 2.5rem;
}

.review-block {
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
}

.review-block.extended {
  background: transparent;
  border: none;
  padding: 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
}

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

/* Page hero (inner) */
.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 { max-width: 18ch; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 10vw, 6rem) 1.5rem;
  background:
    linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.06)),
    var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

.cta-band h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 36ch;
  margin-inline: auto;
}

/* 404 */
.err-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.err-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--gold);
  line-height: 1;
  margin: 0;
  opacity: 0.85;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 1.25rem 1.25rem;
  z-index: 200;
  max-width: 420px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  animation: fadeRise 0.5s var(--ease) both;
}

.cookie-banner[hidden] { display: none !important; }

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

.cookie-actions .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.inline-error {
  background: rgba(212, 120, 120, 0.12);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: #070708;
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.footer-tagline {
  max-width: 28ch;
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.4fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.footer-brand { grid-column: 1 / -1; }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}

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

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

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* Outcomes list */
.outcome-list {
  columns: 2;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.outcome-list li {
  break-inside: avoid;
  padding: 0.65rem 0 0.65rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  position: relative;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.45rem;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 640px) {
  .outcome-list { columns: 1; }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ruleGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Split about */
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: brightness(0.78);
}

@media (max-width: 800px) {
  .split-media { grid-template-columns: 1fr; }
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.journey-steps article {
  padding-top: 1rem;
  border-top: 1px solid var(--gold);
}

.journey-steps h3 {
  font-size: 1.25rem;
  color: var(--text);
}

@media (max-width: 800px) {
  .journey-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .journey-steps { grid-template-columns: 1fr; }
}
