:root {
  --bg-deep: #07090d;
  --bg: #0d1118;
  --bg-elevated: #141a24;
  --bg-soft: #1a2230;
  --line: rgba(232, 213, 163, 0.12);
  --line-strong: rgba(232, 213, 163, 0.28);
  --text: #ebe7df;
  --text-muted: #9aa0ad;
  --text-dim: #6f7685;
  --gold: #c9a84c;
  --gold-soft: #e8d5a3;
  --gold-deep: #8f7428;
  --teal: #4db6a8;
  --danger: #e07a6a;
  --success: #6fbf8f;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 72px;
  --max: 1120px;
  --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.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(77, 182, 168, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, #0a0e14 100%);
  background-attachment: fixed;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s 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.6em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

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

.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;
  z-index: 1000;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.6rem 1rem;
  font-weight: 600;
}

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

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

.wide {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 13, 0.78);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-strong);
  background: rgba(7, 9, 13, 0.92);
}

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

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

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
}

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

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

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

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

.nav-cta {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-soft) !important;
}

.nav-cta:hover {
  background: rgba(201, 168, 76, 0.12);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-soft);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(10, 13, 18, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
  }

  .site-nav.is-open {
    max-height: 420px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-radius: var(--radius);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.22);
}

.btn-primary:hover {
  color: #120e06;
  box-shadow: 0 14px 36px rgba(201, 168, 76, 0.32);
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero — asymmetric brand-first composition */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
  z-index: 2;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
  color: var(--text);
  margin: 0 0 1.25rem;
  max-width: 9ch;
  animation: rise 0.9s var(--ease) both;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 34ch;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-panel .btn-row {
  animation: rise 0.9s var(--ease) 0.22s both;
}

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

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  filter: saturate(0.85) contrast(1.05);
  animation: fade-in 1.2s var(--ease) both;
}

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

.hero-meta {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  animation: rise 1s var(--ease) 0.35s both;
}

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

@keyframes fade-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    min-height: 48vh;
  }

  .hero-visual::after {
    background:
      linear-gradient(0deg, var(--bg-deep) 0%, transparent 45%);
  }

  .hero-brand {
    max-width: none;
  }
}

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

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

.section-head p {
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

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

/* Proof strip */
.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(20, 26, 36, 0.55);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-soft);
  font-weight: 500;
}

.proof-item span {
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

/* Feature list without cards */
.benefit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.benefit-row {
  display: grid;
  grid-template-columns: 4rem 1fr 1.2fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s var(--ease);
}

.benefit-row:hover {
  background: rgba(201, 168, 76, 0.03);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.benefit-row h3 {
  margin: 0;
  color: var(--text);
}

.benefit-row p {
  margin: 0;
}

@media (max-width: 700px) {
  .benefit-row {
    grid-template-columns: 2.5rem 1fr;
  }
  .benefit-row p {
    grid-column: 1 / -1;
  }
}

/* Course preview */
.course-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

.course-preview-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.course-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.course-preview:hover .course-preview-media img {
  transform: scale(1.04);
}

.course-preview-body h2 {
  margin-bottom: 0.75rem;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.course-meta span {
  border-left: 1px solid var(--line-strong);
  padding-left: 1rem;
}

.course-meta span:first-child {
  border: 0;
  padding: 0;
}

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

/* Course cards listing */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 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;
  margin-bottom: 1.1rem;
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}

.course-tile:hover img {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.course-tile h3 {
  color: var(--text);
  margin-bottom: 0.4rem;
}

.course-tile p {
  flex: 1;
  font-size: 0.98rem;
}

.course-tile .price-hint {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.92rem;
}

/* Testimonials */
.quote-stack {
  display: grid;
  gap: 2rem;
}

.quote-block {
  padding: 0;
  border: 0;
  background: none;
}

.quote-block.featured {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1rem;
}

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

.quote-compact p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

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

.rating-line {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-tier {
  background: var(--bg-elevated);
  padding: 2rem 1.6rem 2.2rem;
  display: flex;
  flex-direction: column;
}

.price-tier.accent {
  background: linear-gradient(180deg, #1c2433 0%, #151b26 100%);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.price-tier h3 {
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-soft);
  margin: 1rem 0 0.35rem;
}

.price-amount small {
  font-size: 1rem;
  color: var(--text-dim);
}

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

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

@media (max-width: 850px) {
  .price-tiers { grid-template-columns: 1fr; }
}

/* Forms */
.form-shell {
  max-width: 560px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

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

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

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status.is-success {
  display: block;
  background: rgba(111, 191, 143, 0.12);
  border: 1px solid rgba(111, 191, 143, 0.35);
  color: var(--success);
}

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

.inline-error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: rgba(224, 122, 106, 0.12);
  border: 1px solid rgba(224, 122, 106, 0.35);
  color: var(--danger);
  border-radius: var(--radius);
}

/* Blog */
.blog-list {
  display: grid;
  gap: 2.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.75rem;
  text-decoration: none;
  color: inherit;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-item h2 {
  font-size: 1.65rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}

@media (max-width: 650px) {
  .blog-item { grid-template-columns: 1fr; }
}

.article-hero {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 42vh;
  object-fit: cover;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-deep), transparent 55%);
}

.article-body {
  max-width: 42rem;
  margin: -4rem auto 0;
  position: relative;
  z-index: 1;
  padding: 0 1.25rem 4rem;
}

.article-body h2 {
  margin-top: 2rem;
}

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

.article-body li {
  margin-bottom: 0.45rem;
}

/* Legal */
.legal-page {
  padding: clamp(3rem, 6vw, 5rem) 0 5rem;
}

.legal-page .container {
  max-width: 720px;
}

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

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

.legal-page h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.25rem 0 2rem;
}

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

.cookie-table th {
  background: var(--bg-elevated);
  color: var(--gold-soft);
  font-weight: 550;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
}

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

.contact-details dt {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 1.25rem;
}

.contact-details dd {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
}

.contact-details a {
  text-decoration: none;
}

/* Page hero (inner) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

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

.page-hero .lede {
  max-width: 38rem;
  font-size: 1.15rem;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

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

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

.module-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.instructor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

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

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-h) - 220px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--gold);
  margin-bottom: 0.2rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-left: auto;
  padding: 1.25rem 1.35rem;
  background: rgba(14, 18, 26, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}

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

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

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

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

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

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.85);
  padding: 3.5rem 0 0;
}

.footer-grid {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-tag {
  font-size: 0.92rem;
  max-width: 28ch;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 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-soft);
}

.footer-contact p {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.footer-base {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.footer-base p {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

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

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-gold { color: var(--gold-soft); }

.full-bleed-media {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.case-study {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.case-study h3 {
  margin-bottom: 0.75rem;
}

.outcome-list {
  list-style: none;
  padding: 0;
}

.outcome-list li {
  padding: 0.55rem 0 0.55rem 1.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  position: relative;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
}

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