/* =========================================================
   ROBSANS CONSTRUCTION LLC — Stylesheet
   Palette: Slate navy + terracotta + warm amber + cream
   Font: Playfair Display (display) + IBM Plex Sans (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --navy:      #1a2535;
  --navy-mid:  #243042;
  --navy-soft: #2d3d52;
  --terra:     #c2622d;
  --terra-lt:  #d4784a;
  --amber:     #e8a44a;
  --amber-lt:  #f2c06e;
  --cream:     #f7f2ea;
  --cream-dk:  #ede5d8;
  --sand:      #d4c5ad;
  --white:     #fdfaf6;
  --text:      #1a2535;
  --text-mid:  #3d4e63;
  --text-lt:   #6b7a8d;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(26,37,53,.12);
  --shadow-lg: 0 8px 48px rgba(26,37,53,.18);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-lt); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.18;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: .96rem; }
strong { color: var(--text); }

/* ── Layout ─────────────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.text-center  { text-align: center; }

/* ── Grid ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:900px){
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}
@media(min-width:600px) and (max-width:900px){
  .grid-2  { grid-template-columns: repeat(2,1fr); }
  .grid-3  { grid-template-columns: repeat(2,1fr); }
  .grid-4  { grid-template-columns: repeat(2,1fr); }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .22s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.btn-primary:hover {
  background: var(--terra-lt);
  border-color: var(--terra-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,98,45,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--navy);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Nav ────────────────────────────────────────────────── */
.main-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 66px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--terra); }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: var(--sand);
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all .18s;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); background: rgba(255,255,255,.06); }
.nav-links .nav-cta {
  background: var(--terra);
  color: #fff !important;
  border-radius: 50px;
  padding: 7px 18px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--terra-lt); }

/* Hamburger */
.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle-label span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .25s; }
@media(max-width: 1000px) {
  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a { padding: 10px 14px; width: 100%; }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(194,98,45,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(232,164,74,.1) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:768px){ .hero-grid { grid-template-columns:1fr; } }
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--terra-lt); font-style: normal; }
.hero p { color: var(--sand); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.7; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--amber);
}
.hero-stat-lbl { font-size: .8rem; color: var(--sand); margin-top: 2px; }
.hero-visual {
  background: var(--navy-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-badge {
  background: var(--navy-mid);
  border: 1px solid rgba(232,164,74,.2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.hero-badge-icon { font-size: 1.8rem; margin-bottom: 8px; }
.hero-badge-label { font-size: .78rem; color: var(--sand); text-transform: uppercase; letter-spacing: .06em; }
.hero-badge-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--amber); font-weight: 700;
  margin-top: 4px;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(194,98,45,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: var(--sand); max-width: 620px; font-size: 1.02rem; }
.page-hero .btn-group { margin-top: 28px; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .22s, transform .22s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p  { font-size: .92rem; }
.card-dark {
  background: var(--navy-soft);
  border-color: rgba(255,255,255,.06);
}
.card-dark h3 { color: var(--white); }
.card-dark p  { color: var(--sand); }
.card-dark .card-icon { background: rgba(232,164,74,.15); }

/* ── Section themes ─────────────────────────────────────── */
.bg-cream   { background: var(--cream); }
.bg-cream-dk{ background: var(--cream-dk); }
.bg-navy    { background: var(--navy); }
.bg-navy-mid{ background: var(--navy-mid); }

/* ── Chips ──────────────────────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .8rem;
  color: var(--text-mid);
  font-weight: 500;
}
.chip-amber { background: rgba(232,164,74,.15); border-color: var(--amber); color: var(--navy); }
.chip-terra { background: rgba(194,98,45,.12); border-color: var(--terra); color: var(--terra); }

/* ── Stats strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
}
.stats-strip .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--amber);
}
.stats-strip .stat-lbl { color: var(--sand); font-size: .88rem; margin-top: 4px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
@media(max-width:768px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stats-cell {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stats-cell:last-child { border-right: none; }

/* ── Process timeline ───────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dk);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--amber);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 8px; }
.step-body p  { font-size: .92rem; }
.step-tag {
  display: inline-block; margin-bottom: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--terra);
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:900px){ .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow .22s, transform .22s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--terra);
  background: var(--navy);
}
.pricing-card.featured h3,
.pricing-card.featured .price-num,
.pricing-card.featured .price-sub,
.pricing-card.featured li { color: var(--white); }
.pricing-card.featured p { color: var(--sand); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terra);
  color: #fff; font-size: .72rem; font-weight: 600;
  padding: 4px 16px; border-radius: 50px; letter-spacing: .06em; text-transform: uppercase;
}
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--navy);
  margin: 16px 0 4px;
}
.price-sub { font-size: .82rem; color: var(--text-lt); margin-bottom: 20px; }
.pricing-features { margin: 20px 0 28px; }
.pricing-features li {
  font-size: .88rem; color: var(--text-mid);
  padding: 8px 0; border-bottom: 1px solid var(--cream-dk);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--terra); font-weight: 700; flex-shrink: 0; }
.featured .pricing-features li { border-bottom-color: rgba(255,255,255,.1); }

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--cream-dk);
}
.faq-item details summary {
  list-style: none;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300; color: var(--terra);
  flex-shrink: 0; transition: transform .2s;
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details p {
  padding: 0 0 20px;
  font-size: .92rem;
  line-height: 1.7;
}

/* ── Markets grid ───────────────────────────────────────── */
.market-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-dk);
  background: var(--white);
  transition: box-shadow .2s, transform .2s;
}
.market-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.market-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px; display: block;
}
.market-card h3 { margin-bottom: 10px; }
.market-card ul { margin-top: 14px; }
.market-card ul li {
  font-size: .85rem; color: var(--text-mid);
  padding: 4px 0; border-bottom: 1px solid var(--cream);
  display: flex; align-items: center; gap: 8px;
}
.market-card ul li::before { content: '→'; color: var(--terra); font-size: .75rem; }

/* ── CTA band ───────────────────────────────────────────── */
.cta-band {
  background: var(--terra);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(232,164,74,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }
.cta-band .btn-group { justify-content: center; }

/* ── Contact form ───────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--text); letter-spacing: .03em; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: .9rem;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(194,98,45,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-line {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-line:last-child { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(232,164,74,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-line-label { font-size: .78rem; color: var(--sand); margin-bottom: 2px; }
.contact-line-val { color: var(--cream); font-size: .9rem; }
.contact-line-val a { color: var(--amber); }
.contact-line-val a:hover { color: var(--amber-lt); }

/* ── Projects ───────────────────────────────────────────── */
.project-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.project-thumb-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  position: relative; z-index: 1;
}
.project-body { padding: 24px; }
.project-body h3 { margin-bottom: 8px; }
.project-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.project-stat { font-family: 'IBM Plex Mono', monospace; font-size: .76rem; color: var(--text-lt); }
.project-outcome {
  margin-top: 14px; padding: 12px 16px;
  background: var(--cream); border-radius: var(--radius);
  font-size: .85rem; color: var(--text-mid);
}
.outcome-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--terra);
}

/* ── Takeoffs trade details ──────────────────────────────── */
.trade-section {
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.trade-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
}
.trade-icon {
  width: 42px; height: 42px;
  background: rgba(232,164,74,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.trade-header h3 { color: var(--white); font-size: 1.05rem; }
.trade-header p  { color: var(--sand); font-size: .82rem; }
.trade-body { padding: 28px; }

/* ── About timeline ─────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: var(--cream-dk);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terra);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--terra);
}
.timeline-year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem; letter-spacing: .1em; color: var(--terra);
  text-transform: uppercase; margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p  { font-size: .88rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  border-top: 3px solid var(--terra);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand span { color: var(--terra); }
.footer-desc { color: var(--sand); font-size: .88rem; line-height: 1.65; }
.footer-col h4 {
  color: var(--amber);
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  font-family: 'IBM Plex Sans', sans-serif;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--sand); font-size: .88rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--amber); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item .fi { color: var(--terra); font-size: .9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: var(--sand); font-size: .86rem; }
.footer-contact-item a { color: var(--amber); font-size: .86rem; }
.footer-contact-item a:hover { color: var(--amber-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-lt); font-size: .82rem; }
.footer-bottom a { color: var(--sand); font-size: .82rem; }

/* ── Misc ───────────────────────────────────────────────── */
.mono { font-family: 'IBM Plex Mono', monospace; }
.divider { border: none; border-top: 1px solid var(--cream-dk); margin: 0; }
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px; display: block;
}
.lead { font-size: 1.05rem; line-height: 1.7; color: var(--text-mid); }
.highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { font-size: .92rem; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }
