/* =========================================================
   Passion Fruit Solutions — Website Styles
   Brand: Vibrant, warm, premium. Energy from the logo gradient.
   ========================================================= */

/* --- Design Tokens --- */
:root {
  /* Brand palette (sampled from logo) */
  --color-coral: #F47B47;
  --color-coral-deep: #E16432;
  --color-orange: #F69D52;
  --color-peach: #FBC68B;
  --color-yellow: #F4C73E;
  --color-lime: #C5D243;
  --color-mint: #69BC7E;
  --color-teal: #3FA7A0;
  --color-blue: #2D8AB0;
  --color-blue-deep: #2E5FA0;

  /* Brand gradient (matches the logo) */
  --gradient-brand: linear-gradient(
    100deg,
    #F47B47 0%,
    #F69D52 18%,
    #F4C73E 38%,
    #C5D243 55%,
    #69BC7E 70%,
    #3FA7A0 85%,
    #2D8AB0 100%
  );
  --gradient-warm: linear-gradient(135deg, #F47B47 0%, #F4C73E 100%);
  --gradient-cool: linear-gradient(135deg, #69BC7E 0%, #2D8AB0 100%);

  /* Surface */
  --color-bg: #FFFAF4;          /* warm cream */
  --color-bg-alt: #FCF1E4;      /* deeper peachy cream */
  --color-bg-dark: #1F1B18;     /* warm near-black for dark sections */
  --color-white: #FFFFFF;

  /* Text */
  --color-heading: #1F1B18;     /* warm charcoal — matches wordmark */
  --color-text: #3A322C;        /* warm body text */
  --color-text-muted: #8A7F75;  /* warm muted gray */
  --color-border: #EDE3D6;      /* subtle warm border */
  --color-border-strong: #D9CDB9;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'DM Serif Display', Georgia, serif;

  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 880px;

  /* Other */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(31, 27, 24, 0.04), 0 1px 3px rgba(31, 27, 24, 0.06);
  --shadow-md: 0 6px 16px rgba(31, 27, 24, 0.07), 0 2px 6px rgba(31, 27, 24, 0.05);
  --shadow-lg: 0 16px 48px rgba(31, 27, 24, 0.10), 0 6px 16px rgba(31, 27, 24, 0.06);
  --shadow-warm: 0 12px 32px rgba(244, 123, 71, 0.18);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* --- Base --- */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--color-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2, .h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4, .h4 { font-size: 1.125rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: var(--color-text);
  line-height: 1.55;
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-md);
}

.muted { color: var(--color-text-muted); }
.italic { font-style: italic; }

/* Gradient text utility (logo-inspired) */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section { padding: var(--space-3xl) 0; }
section.tight { padding: var(--space-2xl) 0; }
section.spacious { padding: var(--space-4xl) 0; }

@media (max-width: 720px) {
  section, section.spacious { padding: var(--space-2xl) 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.6em;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--color-coral);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(244, 123, 71, 0.25);
}
.btn-primary:hover {
  background-color: var(--color-coral-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
}
.btn-secondary {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}
.btn-secondary:hover {
  background-color: #2D2825;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background-color: transparent;
  color: var(--color-heading);
  border: 1px solid var(--color-border-strong);
}
.btn-ghost:hover {
  background-color: var(--color-heading);
  color: var(--color-white);
  border-color: var(--color-heading);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--color-coral-deep);
  font-weight: 600;
  border-bottom: 2px solid var(--color-coral);
  padding-bottom: 2px;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { gap: 0.6em; color: var(--color-heading); }

/* --- Brand mark / gradient ribbon --- */
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-warm);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 25% -10% auto auto;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: var(--color-white);
  opacity: 0.4;
}

.gradient-bar {
  height: 4px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 250, 244, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65em;
  color: var(--color-heading);
}
.site-nav__brand img { height: 65px; width: auto; }
.site-nav__brand-text {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.site-nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}
.site-nav__links a:hover,
.site-nav__links a.is-active { color: var(--color-heading); }
.site-nav__links a.is-active { font-weight: 600; }
.site-nav__cta { margin-left: var(--space-md); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-heading);
  position: relative;
  transition: all var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: var(--color-heading);
  transition: all var(--transition);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

@media (max-width: 940px) {
  .site-nav__brand-text { display: none; }
  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) var(--space-lg) var(--space-xl);
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border); }
  .site-nav__cta { margin-left: 0; margin-top: var(--space-md); }
  .nav-toggle { display: flex; }
}

/* --- Hero --- */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.hero--with-image .hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.hero--with-image.hero--wide .hero__inner {
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-xl);
}
@media (max-width: 880px) {
  .hero--with-image .hero__inner { grid-template-columns: 1fr; }
}
.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-brand);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero--wide .hero__media {
  aspect-ratio: 1 / 1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__media__badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-md);
}
.hero__media__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-warm);
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.hero__media__badge-text {
  font-size: 0.85rem;
  color: var(--color-heading);
  font-weight: 500;
}
.hero__media__badge-text strong { display: block; font-weight: 600; }
.hero__bg-blob {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: var(--gradient-brand);
  opacity: 0.18;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-blob--alt {
  top: auto;
  bottom: -200px;
  left: -200px;
  right: auto;
  background: var(--gradient-cool);
  opacity: 0.12;
  width: 500px;
  height: 500px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--color-heading);
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin-bottom: var(--space-lg);
}
.hero__subtitle {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--color-text);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: var(--space-xl);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }

/* --- Trust Bar --- */
.trust-bar {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  padding: var(--space-md) 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
}
.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: rgba(255, 255, 255, 0.85);
}
.trust-bar__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-warm);
}

/* --- Section header --- */
.section-head { max-width: 720px; margin-bottom: var(--space-2xl); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--space-md); }

/* --- Cards / Grid --- */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}
.card__icon--coral { background: var(--gradient-warm); }
.card__icon--mint { background: linear-gradient(135deg, #69BC7E 0%, #3FA7A0 100%); }
.card__icon--blue { background: linear-gradient(135deg, #3FA7A0 0%, #2D8AB0 100%); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: var(--space-sm); }

/* Link-style card (full card is clickable) */
a.card,
a.card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.card:hover .card__cta,
a.card--link:hover .card__cta {
  gap: 0.5em;
  color: var(--color-coral-deep);
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-coral-deep);
  letter-spacing: -0.005em;
  transition: gap var(--transition), color var(--transition);
}
.card__meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

/* --- Bullet lists --- */
.bullets { padding-left: 0; }
.bullets li {
  position: relative;
  padding: var(--space-sm) 0 var(--space-sm) 1.6em;
  border-bottom: 1px solid var(--color-border);
}
.bullets li:last-child { border-bottom: none; }
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-warm);
}

.feature-list { display: grid; gap: var(--space-lg); }
.feature-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: flex-start;
}
.feature-list__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  min-width: 64px;
}
.feature-list__item h4 { margin-bottom: var(--space-xs); }

/* --- Two-column section --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

/* --- Section variants --- */
.section--alt { background-color: var(--color-bg-alt); }
.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--gradient-brand);
  opacity: 0.15;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}
.section--dark > * { position: relative; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-white); }
.section--dark p { color: rgba(255, 255, 255, 0.85); }
.section--dark .lead { color: rgba(255, 255, 255, 0.9); }

/* --- Final CTA block --- */
.cta-block {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: var(--gradient-brand);
  opacity: 0.22;
  filter: blur(80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
.cta-block > * { position: relative; }
.cta-block h2 { color: var(--color-white); margin-bottom: var(--space-md); }
.cta-block p { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--space-xl); max-width: 60ch; margin-left: auto; margin-right: auto; }

/* --- Steps (How It Works) --- */
.steps { display: grid; gap: var(--space-xl); }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-xl);
  align-items: flex-start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.step h3 { margin-bottom: var(--space-sm); }
@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: var(--space-md); }
  .step__num { font-size: 2.5rem; }
}

/* --- Tier cards (SaaS-style pricing comparison) --- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}
@media (max-width: 880px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition);
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}
.tier-card:hover::before { opacity: 1; }
.tier-card--featured {
  border: 2px solid var(--color-coral);
  background: linear-gradient(180deg, #FFFAF4 0%, var(--color-white) 30%);
}
.tier-card--featured::before {
  opacity: 1;
  background: var(--gradient-warm);
  height: 5px;
}
.tier-card__badge-popular {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gradient-warm);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tier-card__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-sm);
}
.tier-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}
.tier-card__subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}
.tier-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}
.tier-card__price-from {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.tier-card__price-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.4;
}
.tier-card__divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 0 var(--space-lg);
}
.tier-card__features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
.tier-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text);
}
.tier-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 11px;
  margin-top: 2px;
}
.tier-card__cta {
  margin-top: auto;
}

/* --- Service block --- */
.service-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: var(--color-white);
  padding: var(--space-2xl);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-brand);
}
.service-block__head {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-md);
}
@media (max-width: 720px) {
  .service-block__head { grid-template-columns: 1fr; }
}
.service-block__illus {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.service-block__illus svg { width: 80%; height: 80%; }

/* --- Industry icon --- */
.industry-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}
.industry-card__icon svg { width: 22px; height: 22px; }

/* --- Step illustration --- */
.step__illus {
  width: 90px;
  height: 90px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-sm);
}
.step__illus svg { width: 56%; height: 56%; }

/* --- Trusted brands strip --- */
.brands {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.brands__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
  align-items: center;
  justify-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.brands__grid img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition);
}
/* Square/icon-style logos need more height to match the visual weight of wide wordmarks */
.brands__grid img[alt="DSM"],
.brands__grid img[alt="Meals Now"] {
  max-height: 84px;
}
.brands__grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.brand-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-md);
}
@media (max-width: 880px) {
  .brands__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
}
@media (max-width: 480px) {
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Reviews carousel --- */
.reviews {
  position: relative;
}
.reviews__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 880px) {
  .reviews__layout { grid-template-columns: 1fr; gap: var(--space-xl); }
  .reviews__photo { display: none; }
}
.reviews__photo {
  position: relative;
  order: -1;
}
.reviews__viewport {
  overflow: hidden;
  position: relative;
}
.reviews__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review {
  flex: 0 0 100%;
  padding: var(--space-md) 0;
}
.review__inner {
  max-width: 100%;
  margin: 0;
  text-align: left;
}
.review__stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: var(--space-md);
  color: var(--color-coral);
  font-size: 0.95rem;
}
.review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-heading);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.review__author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}
.review__logo {
  max-height: 44px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.review__meta {
  text-align: left;
  min-width: 0;
}
.review__name {
  font-weight: 600;
  color: var(--color-heading);
  font-size: 0.95rem;
  display: block;
}
.review__role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
}

.reviews__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.reviews__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
  transition: all var(--transition);
  cursor: pointer;
}
.reviews__btn:hover {
  background-color: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
}
.reviews__dots {
  display: flex;
  gap: 8px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.reviews__dot.is-active {
  background: var(--gradient-warm);
  width: 24px;
  border-radius: 4px;
}

/* --- Photo slot (for real photos to be added later) --- */
.photo-slot {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-slot--16-9 { aspect-ratio: 16 / 9; }
.photo-slot--4-3 { aspect-ratio: 4 / 3; }
.photo-slot--3-4 { aspect-ratio: 3 / 4; }
.photo-slot--4-5 { aspect-ratio: 4 / 5; }
.photo-slot--1-1 { aspect-ratio: 1 / 1; }
.photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 27, 24, 0.45) 100%);
  pointer-events: none;
  z-index: 2;
}
.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.photo-slot__label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 3;
}
.service-block__tag {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-lg);
  display: block;
}
.service-block h3 { margin-bottom: var(--space-md); }
.service-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}
@media (max-width: 720px) { .service-block__grid { grid-template-columns: 1fr; } }
.service-block__col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-sm);
}
.service-block__best-for {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}
.service-block__best-for strong { color: var(--color-heading); }

/* --- Role card (with photo cutout, tools chips) --- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 880px) {
  .roles-grid { grid-template-columns: 1fr; }
}
.roles-section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-md);
}
.role-card {
  background: linear-gradient(135deg, #FFFAF4 0%, #FCF1E4 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.role-card__inner {
  position: relative;
  z-index: 2;
  max-width: 65%;
}
.role-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.role-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}
.role-card__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 123, 71, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral-deep);
  flex-shrink: 0;
  transition: all var(--transition);
}
.role-card:hover .role-card__arrow {
  background: var(--color-coral);
  color: var(--color-white);
}
.role-card__arrow svg { width: 14px; height: 14px; }
.role-card__description {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.role-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.role-card__tool {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.78rem;
  color: var(--color-text);
  white-space: nowrap;
  font-weight: 500;
}
.role-card__photo {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 150px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}
.role-card__photo svg { width: 100%; height: 100%; }
.role-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* --- FAQ accordion (uses native <details>/<summary>) --- */
.faq-list {
  border-top: 1px solid var(--color-border);
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.faq-item[open] {
  background: rgba(244, 123, 71, 0.04);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  color: var(--color-heading);
  list-style: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker,
.faq-question::marker { display: none; }
.faq-question:hover { color: var(--color-coral-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(244, 123, 71, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral-deep);
  transition: all var(--transition);
}
.faq-item[open] .faq-icon {
  background: var(--color-coral);
  color: var(--color-white);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  max-width: 72ch;
}

/* --- Industry card --- */
.industry-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-warm);
  opacity: 0.10;
  border-radius: 0 var(--radius-lg) 0 100%;
}
.industry-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.industry-card__label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: var(--space-sm);
  display: block;
}

/* --- Forms --- */
.form { display: grid; gap: var(--space-md); }
.form__row {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: var(--space-xs); }
.form__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-heading);
}
.form__field input,
.form__field textarea,
.form__field select {
  font: inherit;
  font-size: 1rem;
  padding: 0.85em 1em;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(244, 123, 71, 0.18);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-self: start; }

/* --- Embed placeholder (Calendly) --- */
.embed-placeholder {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #F8E2C7 100%);
  border: 2px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
}
.embed-placeholder__label {
  display: inline-block;
  background: var(--gradient-warm);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: var(--space-md);
}
.embed-placeholder p { color: var(--color-text-muted); margin: 0 auto; max-width: 50ch; }

/* --- About / Image placeholder --- */
.headshot-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.headshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 27, 24, 0.4) 100%);
}
.headshot-placeholder__label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Values list (About page) --- */
.values { display: grid; gap: var(--space-xl); }
.value {
  padding-top: var(--space-lg);
  border-top: 2px solid var(--color-border);
}
.value:first-child {
  border-top: none;
  padding-top: 0;
}
.value:first-child::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-brand);
  margin-bottom: var(--space-md);
  border-radius: 2px;
}
.value h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}
.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 880px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: var(--space-md);
}
.site-footer__brand img { height: 65px; }
.site-footer__brand-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
}
.site-footer__tagline { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); margin-bottom: var(--space-md); max-width: 28ch; }
.site-footer h5 {
  color: var(--color-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-md);
}
.site-footer ul li { margin-bottom: var(--space-sm); }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color var(--transition); }
.site-footer a:hover { color: var(--color-coral); }
.site-footer__bottom {
  max-width: var(--container-max);
  margin: var(--space-2xl) auto 0;
  padding: var(--space-md) var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.9em;
  background-color: rgba(244, 123, 71, 0.18);
  border-radius: 999px;
  color: var(--color-coral);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

/* --- Job modal --- */
.job-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(31, 27, 24, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-xl);
  overflow-y: auto;
}
.job-modal.is-open {
  display: flex;
  animation: job-modal-fade 0.2s ease-out;
}
@keyframes job-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.job-modal__panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  padding: var(--space-2xl);
  position: relative;
  margin: auto;
  box-shadow: var(--shadow-lg);
  animation: job-modal-slide 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes job-modal-slide {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.job-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-heading);
  transition: background var(--transition), color var(--transition);
}
.job-modal__close:hover {
  background: var(--color-coral);
  color: var(--color-white);
}
.job-modal__close svg { width: 18px; height: 18px; }
.job-modal__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}
.job-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--color-heading);
  margin: 0 0 var(--space-xs);
  line-height: 1.15;
  max-width: 90%;
}
.job-modal__details {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
}
.job-modal__section { margin-top: var(--space-lg); }
.job-modal__section h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-coral-deep);
  margin-bottom: var(--space-sm);
}
.job-modal__section p,
.job-modal__section ul {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}
.job-modal__section ul { padding-left: 1.2em; margin: 0; }
.job-modal__section ul li { margin-bottom: 0.4em; }
.job-modal__cta {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
body.modal-open { overflow: hidden; }

/* Make whole job card clickable */
.job-card { cursor: pointer; }
.job-card__cta { cursor: pointer; }

/* --- Job board cards --- */
.jobs-list {
  display: grid;
  gap: var(--space-md);
}
.job-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition), box-shadow var(--transition);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}
.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.job-card--closed { opacity: 0.7; }
.job-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}
.job-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3em 0.7em;
  border-radius: 999px;
}
.job-status--open {
  background-color: rgba(105, 188, 126, 0.15);
  color: #2A6B3D;
}
.job-status--closed {
  background-color: rgba(138, 127, 117, 0.15);
  color: var(--color-text-muted);
}
.job-card__date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.job-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-heading);
  margin: 0 0 var(--space-xs);
  line-height: 1.2;
}
.job-card__details {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-sm);
}
.job-card__description {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
  max-width: 60ch;
}
.job-card__cta {
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .job-card {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .job-card__cta { justify-self: start; }
}

/* --- Animations (respects prefers-reduced-motion) --- */
@media (prefers-reduced-motion: no-preference) {
  /* Scroll-reveal fade-up */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Slow gradient-blob drift in heroes */
  .hero__bg-blob {
    animation: blob-drift 30s ease-in-out infinite alternate;
  }
  .hero__bg-blob--alt {
    animation: blob-drift-alt 36s ease-in-out infinite alternate;
  }
  @keyframes blob-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.08); }
  }
  @keyframes blob-drift-alt {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-30px, -20px) scale(1.06); }
  }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
