/* =========================================================
   Kognative Consulting — styles.css
   Modern minimal refresh. Single-file, no build step.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink:        #0a0a0a;
  --ink-2:      #1a1a1a;
  --body:       #2a2a2a;
  --muted:      #6b6b6b;
  --line:       #e8e6e1;
  --surface:    #f5f4f1;
  --surface-2:  #ffffff;
  --accent:     #0a0a0a; /* monochrome: accent = ink */

  /* Type */
  --font-display: "Archivo Black", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-sans:    "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.8125rem;   /* 13 */
  --fs-body:    1.0625rem;   /* 17 */
  --fs-lede:    1.25rem;     /* 20 */
  --fs-h3:      1.5rem;      /* 24 */
  --fs-h2:      clamp(2rem, 1.2rem + 3.5vw, 3.5rem);
  --fs-h1:      clamp(2.75rem, 1rem + 5vw, 5rem);

  --lh-tight:  1.02;
  --lh-snug:   1.18;
  --lh-body:   1.6;

  /* Space */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --container:   1200px;
  --container-n: 780px;
  --radius-sm:   6px;
  --radius-pill: 999px;

  /* Motion */
  --ease:    cubic-bezier(.2, .7, .2, 1);
  --dur:     200ms;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--ink); color: #fff; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--s-5);
  text-transform: none;
  overflow-wrap: break-word;
}

.nowrap { white-space: nowrap; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}

.section-sub {
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.eyebrow.muted { color: var(--muted); }
.eyebrow.light, .section-title.light, .section-sub.light { color: #fff; }
.section-sub.light { color: rgba(255,255,255,.78); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 var(--s-6);
}

.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: #000; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.95rem 0.5rem;
  border: 0;
}
.btn-ghost:hover { color: var(--muted); }

.btn-full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.55);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid transparent;
  transition: background-color 320ms var(--ease),
              border-color 320ms var(--ease),
              box-shadow 320ms var(--ease),
              backdrop-filter 320ms var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px -24px rgba(10,10,10,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--s-5);
  transition: height 320ms var(--ease);
}
.site-header.scrolled .header-inner { height: 62px; }
.brand { transition: font-size 320ms var(--ease); }
.site-header.scrolled .brand { font-size: 1.125rem; }
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav { display: flex; align-items: center; gap: var(--s-6); }
.nav-list {
  display: flex;
  gap: var(--s-6);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-list a { transition: color var(--dur) var(--ease); }
.nav-list a:hover { color: var(--muted); }
.nav-cta { padding: 0.6rem 1.1rem; font-size: 0.875rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) clamp(1.25rem, 3vw, 2rem) var(--s-6);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--s-5); font-size: 1.125rem; }
.mobile-nav .btn { align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background: #0a0a0a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(10,10,10,0.04), transparent 60%),
    radial-gradient(900px 500px at 5% 90%, rgba(10,10,10,0.05), transparent 60%),
    var(--surface);
}

/* Video hero */
.hero-video { color: #fff; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.9) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.78) 60%, rgba(10,10,10,0.88) 100%);
}
.hero-video .hero-inner { position: relative; z-index: 2; }
.hero-video .display { color: #fff; }
.hero-video .lede { color: rgba(255,255,255,0.82); }
.hero-video .eyebrow { color: rgba(255,255,255,0.78); }
.hero-video .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero-video .btn-primary:hover { background: #f0f0f0; }
.hero-video .btn-ghost { color: #fff; }
.hero-video .btn-ghost:hover { color: rgba(255,255,255,0.7); }

.hero-inner { max-width: 62rem; }
.hero .eyebrow { margin-bottom: var(--s-5); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
  margin-top: var(--s-6);
}

/* Reduce motion — pause the decorative video */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg { display: none; }
}

/* ---------- Section spacing ---------- */
section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section-head { margin-bottom: var(--s-7); max-width: 56rem; }

/* ---------- Clients ---------- */
.clients {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}
.clients .section-head { margin-bottom: var(--s-6); }

/* Continuous logo marquee */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: var(--s-4);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
  will-change: transform;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-right: clamp(2.5rem, 5vw, 4.5rem);
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.marquee-list li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(56px, 6vw, 72px);
}
.marquee-list img {
  display: block;
  height: 100%;
  width: auto;
  max-width: clamp(120px, 13vw, 160px);
  object-fit: contain;
  opacity: 0.72;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-track { animation: none; }
}

/* ---------- What We Do ---------- */
.what-we-do { background: var(--surface); }
.integration-preview { background: var(--surface-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}
.step {
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--ink); }
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: var(--s-5);
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--ink);
  margin: 0 0 var(--s-3);
  letter-spacing: -0.005em;
}
.step p { color: var(--muted); margin: 0; font-size: 1rem; }

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
}

/* ---------- Team ---------- */
.team { background: var(--surface-2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}
.member { max-width: 36rem; }
.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: var(--s-6);
  border: 1px solid var(--line);
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  color: var(--ink);
  margin: 0 0 var(--s-1);
  letter-spacing: -0.005em;
}
.member-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.member-bio { color: var(--body); margin: 0; }

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-9);
  align-items: start;
}
.contact-copy .section-title { margin-bottom: var(--s-4); }
.contact-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 10px;
  padding: var(--s-6);
}
.contact-card dl {
  display: grid;
  gap: var(--s-5);
  margin: 0 0 var(--s-6);
}
.contact-card dt {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s-1);
}
.contact-card dd {
  margin: 0;
  font-size: 1.125rem;
  color: #fff;
}
.contact-card a { border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.contact-card a:hover { border-color: #fff; }

/* ---------- Salesforce Web-to-Lead form ---------- */
.sf-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.sf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.sf-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.sf-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sf-field input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 0.7rem 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #fff;
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  width: 100%;
}
.sf-field input::placeholder { color: rgba(255,255,255,0.2); }
.sf-field input:hover { border-color: rgba(255,255,255,0.25); }
.sf-field input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.09);
}
.sf-form .btn-primary {
  margin-top: var(--s-2);
  justify-content: center;
}

@media (max-width: 600px) {
  .sf-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  padding: var(--s-7) 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-6);
}
.footer-brand { justify-self: start; }

.footer-legal {
  text-align: center;
  justify-self: center;
}
.legal { margin: 0; color: var(--muted); font-size: 0.875rem; }
.legal-sub { margin-top: 2px; font-size: 0.8125rem; }

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  justify-self: end;
  color: var(--muted);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-credit:hover { color: var(--ink); transform: translateY(-1px); }
.credit-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.credit-mark {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #faf8f2;
  padding: 3px;
  border: 1px solid var(--line);
  object-fit: contain;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav[data-open="true"] { display: block; }
  .mobile-nav[hidden] { display: none; }

  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .contact-inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-5);
    justify-items: center;
  }
  .footer-brand, .footer-legal, .footer-credit { justify-self: center; }
}

@media (max-width: 560px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .contact-card { padding: var(--s-5); }
}

/* ---------- Capability strip ---------- */
.capability-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-6) 0;
}
.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}
.capability-list li {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
}

/* ---------- Steps 2-col variant ---------- */
.steps-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* ---------- Consulting services grid ---------- */
.consult-services { background: var(--surface-2); }

.service-grid {
  list-style: none;
  margin: 0 0 var(--s-8);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line); /* gap color */
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  padding: var(--s-7) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  border-top: 3px solid var(--ink);
  transition: background var(--dur) var(--ease);
}
.service-card:hover { background: var(--surface); }

/* Ghost number — large decorative background element */
.service-ghost-num {
  position: absolute;
  bottom: -0.2em;
  right: 0.1em;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--ink);
  margin: 0;
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
  line-height: var(--lh-body);
  max-width: 44ch;
}

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

/* ---------- Pricing ---------- */
.pricing { background: var(--surface-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.pricing-card-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pricing-card-head { display: flex; flex-direction: column; gap: var(--s-2); }
.pricing-tier {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--ink);
  margin: 0;
}
.pricing-card-featured .pricing-amount { color: #fff; }
.pricing-period {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.pricing-card-featured .pricing-note { color: rgba(255,255,255,0.55); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.pricing-features li {
  font-size: 0.9375rem;
  color: var(--body);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  top: 0.1em;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card-featured .pricing-features li::before { color: rgba(255,255,255,0.5); }
.pricing-card-featured .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.pricing-card-featured .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.pricing-caveat {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .steps-2col { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- Offerings grid (consulting page) ---------- */
.offerings {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--surface-2);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--line); /* fills the gaps between cards */
}

.offering-card {
  background: var(--surface-2);
  padding: var(--s-8) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.offering-card:hover { background: var(--surface); }

/* Featured card: dark — ink on white grid */
.offering-card-featured {
  background: var(--ink);
}
.offering-card-featured:hover { background: var(--ink-2); }

.offering-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.offering-num {
  font-family: "Inter", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.offering-num::after {
  content: "";
  display: block;
  height: 1px;
  width: 24px;
  background: var(--line);
}
.offering-card-featured .offering-num { color: rgba(255,255,255,0.35); }
.offering-card-featured .offering-num::after { background: rgba(255,255,255,0.15); }

.offering-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: var(--lh-snug);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.offering-card-featured .offering-name { color: #fff; }

.offering-desc {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: var(--lh-body);
  margin: 0;
  flex: 1;
}
.offering-card-featured .offering-desc { color: rgba(255,255,255,0.6); }

.offering-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: var(--s-5);
}
.offering-card-featured .offering-list { border-color: rgba(255,255,255,0.12); }

.offering-list li {
  font-size: 0.875rem;
  color: var(--body);
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.01em;
}
.offering-list li:last-child { border-bottom: 0; }

.offering-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 0.75rem;
  top: 0.5rem;
}

.offering-card-featured .offering-list li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.08);
}
.offering-card-featured .offering-list li::before { color: rgba(255,255,255,0.3); }

/* Buttons */
.offering-card .btn-outline {
  border-radius: 4px;
  font-size: 0.875rem;
  align-self: flex-start;
}
.offering-card-featured .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 4px;
  font-size: 0.875rem;
  align-self: flex-start;
}
.offering-card-featured .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.offering-card-featured .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  border-radius: 4px;
  font-size: 0.875rem;
  align-self: flex-start;
}
.offering-card-featured .btn-primary:hover { background: rgba(255,255,255,0.9); }

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
