/* ============================================================
   TELO — styles.css
   Design tokens + components. Bright & inclusive theme.
   ============================================================ */

:root{
  /* Colours */
  --cream:        #FFF6E6;
  --cream-input:  #FFFDF7;
  --cream-track:  #FFF1DC;
  --yellow-band:  #FFEFC4;
  --white:        #FFFFFF;
  --ink:          #211B2E;
  --ink-2:        #2C2540;
  --muted:        #473F57;
  --muted-2:      #5A5266;
  --brand:        #FF6B4A;   /* coral / primary */
  --yellow:       #FFC53D;
  --teal:         #3FC9B6;
  --blue:         #3B5BDB;
  --error:        #D7263D;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad:  24px;
  --section-pad: clamp(56px, 7vw, 104px);

  /* Shape */
  --r-card: 30px;
  --r-input: 14px;
  --r-arch: 260px 260px 28px 28px;
  --border: 2.5px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
}

/* ---------- Reset / base ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scrollbar-color: var(--brand) var(--cream-track); scrollbar-width: thin; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: clip;
}
img{ max-width: 100%; display: block; }
/* The hidden attribute must always win, even over display:flex/grid rules
   below (e.g. .select__menu, .field, .referral-form). Without this, JS that
   toggles `.hidden` has no visual effect and elements stay shown. */
[hidden]{ display: none !important; }
a{ color: inherit; }
h1,h2,h3,h4{ margin: 0; }
::selection{ background: var(--yellow); color: var(--ink); }
input, textarea{ caret-color: var(--brand); }

::-webkit-scrollbar{ width: 14px; height: 14px; }
::-webkit-scrollbar-track{ background: var(--cream-track); }
::-webkit-scrollbar-thumb{ background: var(--brand); border: 3px solid var(--cream-track); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover{ background: var(--ink); }

:where(a, button, input, textarea, [role="option"]):focus-visible{
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.skip-link{
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  background: var(--ink); color: var(--cream);
  padding: 11px 18px; border-radius: 10px; font-weight: 800; text-decoration: none;
}
.skip-link:focus{ left: 12px; }

/* ---------- Layout helpers ---------- */
.container{ max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.container--narrow{ max-width: 900px; }
.section{ padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section__head{ max-width: 680px; }
.section__head--center{ margin: 0 auto; text-align: center; }
.section__title{
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.02; letter-spacing: -0.03em;
  margin-top: 18px;
}
.section__title--light{ color: var(--cream); }
.section__sub{ font-size: 18px; color: var(--muted); margin-top: 16px; }
.lead{ font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--muted); }

/* ---------- Eyebrow ---------- */
.eyebrow{ display: inline-block; font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin: 0; }
.eyebrow--bordered{ background: var(--white); border: 2px solid var(--ink); padding: 8px 16px; border-radius: 999px; font-size: 14px; text-transform: none; font-weight: 700; white-space: nowrap; }
.eyebrow--coral{ color: var(--brand); background: rgba(255,107,74,.1); padding: 7px 15px; border-radius: 999px; }
.eyebrow--yellow{ color: var(--yellow); background: rgba(255,197,61,.12); padding: 7px 15px; border-radius: 999px; }
.eyebrow--ghost{ background: rgba(255,255,255,.13); padding: 7px 15px; border-radius: 999px; }
.spark{ color: var(--brand); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 16px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  padding: 13px 24px; border-radius: 999px; border: var(--border);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--lg{ font-size: 17px; padding: 18px 30px; }
.btn--block{ width: 100%; padding: 17px; }
.btn--coral{ background: var(--brand); color: var(--ink); }
.btn--yellow{ background: var(--yellow); color: var(--ink); }
.btn--white{ background: var(--white); color: var(--ink); }
.btn--ink{ background: var(--ink); color: var(--cream); }
.btn--outline{ background: var(--white); color: var(--ink); }
.btn--outline:hover{ background: var(--ink); color: var(--cream); }
.btn--cta{ background: var(--ink); color: var(--cream); padding: 13px 24px; }
.btn--cta:hover{ background: var(--brand); color: var(--ink); }
.btn--bordered-light{ border-color: var(--cream); }
.btn:not(.btn--cta):not(.btn--outline):hover{ transform: translateY(-2px); }
.btn--coral.btn--shadow, .btn--yellow.btn--shadow{ box-shadow: var(--shadow-sm); }

/* ---------- Header / nav ---------- */
.site-header{
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,246,230,.9); backdrop-filter: blur(8px);
}
.site-header__bar{ display: flex; align-items: center; gap: 22px; padding-top: 16px; padding-bottom: 16px; }
.brand{ display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand__mark{ width: 42px; height: 42px; border-radius: 50%; background: var(--brand); display: flex; align-items: flex-start; justify-content: center; overflow: hidden; }
.brand__word{ font-family: var(--font-display); font-weight: 800; font-size: 27px; letter-spacing: -0.03em; line-height: 1; }
.nav{ display: flex; gap: 4px; flex: 1; margin-left: 8px; }
.nav a{ text-decoration: none; font-weight: 600; font-size: 15.5px; padding: 9px 15px; border-radius: 999px; }
.nav a:hover{ background: rgba(33,27,46,.06); }
.site-header__actions{ display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.burger{ display: none; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; border: var(--border); background: var(--white); cursor: pointer; font-size: 21px; line-height: 1; box-shadow: var(--shadow-sm); transition: background .18s ease, color .18s ease, transform .1s ease; }
.burger:active{ transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.burger[aria-expanded="true"]{ background: var(--brand); color: var(--ink); }
.mobile-menu{ display: none; flex-direction: column; gap: 0; padding: 6px 0 10px; background: var(--white); border-top: 2.5px solid var(--ink); box-shadow: 0 18px 30px -18px rgba(33,27,46,.55); }
.mobile-menu a{ text-decoration: none; font-weight: 700; font-size: 18px; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.mobile-menu a::after{ content: "→"; color: var(--brand); opacity: 0; transform: translateX(-6px); transition: opacity .15s ease, transform .15s ease; }
.mobile-menu a + a{ border-top: 1px solid rgba(33,27,46,.08); }
.mobile-menu a:hover, .mobile-menu a:active{ background: rgba(255,107,74,.09); }
.mobile-menu a:hover::after, .mobile-menu a:active::after{ opacity: 1; transform: translateX(0); }

/* ---------- Hero ---------- */
.hero{ overflow: hidden; }
.hero__grid{ display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-top: clamp(36px,5vw,72px); padding-bottom: clamp(48px,6vw,88px); }
.hero__title{ font-family: var(--font-display); font-weight: 800; font-size: clamp(42px, 5.8vw, 76px); line-height: 1.0; letter-spacing: -0.035em; margin-top: 24px; }
.hero__title mark{ background: var(--yellow); color: var(--ink); padding: 0 .14em; border-radius: 12px; }
.hero__copy .lead{ max-width: 44ch; margin-top: 24px; }
.hero__cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__media{ position: relative; margin: 0; }

.chips{ list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 30px 0 0; }
.chip{ font-size: 14px; font-weight: 700; padding: 8px 15px; border-radius: 999px; }
.chip--teal{ background: rgba(63,201,182,.2); color: #0E5E54; }
.chip--blue{ background: rgba(59,91,219,.13); color: #26349C; }
.chip--coral{ background: rgba(255,107,74,.13); color: #B23A1E; }

/* Arch images */
.arch{ position: relative; width: 100%; height: auto; border-radius: var(--r-arch); border: 3px solid var(--ink); object-fit: cover; }
.arch--light{ border-color: var(--cream); }
.arch-bg{ position: absolute; border-radius: var(--r-arch); z-index: 0; }
.hero__media .arch-bg--teal{ inset: 18px -16px -16px 22px; background: var(--teal); }
.who-panel__media .arch-bg--teal{ inset: 14px -12px -12px 16px; background: var(--teal); border-radius: 230px 230px 26px 26px; }
.who-panel__media .arch--light{ border-radius: 230px 230px 26px 26px; }
.about__media .arch-bg--blue{ inset: 16px -16px -16px 18px; background: var(--blue); }
.hero__media .arch, .who-panel__media .arch, .about__media .arch{ z-index: 1; }

.note-badge{ position: absolute; left: -22px; bottom: 46px; z-index: 2; display: flex; align-items: center; gap: 11px; background: var(--white); border: var(--border); border-radius: 18px; padding: 13px 17px; box-shadow: 5px 5px 0 var(--ink); font-weight: 800; font-size: 15px; line-height: 1.15; }
.note-badge__spark{ width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* ---------- Cards (services) ---------- */
.cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.card{ border: 3px solid var(--ink); border-radius: var(--r-card); padding: 32px 30px 34px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover{ transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.card--coral{ background: var(--brand); }
.card--yellow{ background: var(--yellow); }
.card--teal{ background: var(--teal); }
.card__icon{ width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: var(--border); display: flex; align-items: center; justify-content: center; }
.card__title{ font-family: var(--font-display); font-weight: 800; font-size: 25px; letter-spacing: -0.02em; margin-top: 22px; line-height: 1.08; }
.card__body{ font-size: 15.5px; line-height: 1.55; color: #3A3346; margin-top: 11px; }
.card__rule{ height: 2.5px; background: var(--ink); border: 0; border-radius: 2px; margin: 22px 0 18px; }

.ticklist{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ticklist li{ display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 700; }
.ticklist--two{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tick{ width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.card--coral .tick{ color: var(--brand); } .card--yellow .tick{ color: var(--yellow); } .card--teal .tick{ color: var(--teal); }
.tick--yellow{ background: var(--yellow); color: var(--ink) !important; }

/* ---------- Dark section / who we help ---------- */
.section--dark{ background: var(--ink); color: var(--cream); }
.section--dark .section__title{ color: var(--cream); }
.tabs{ display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }
.tab{ cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 15.5px; padding: 12px 22px; border-radius: 999px; background: transparent; color: #C9C2D6; border: 2.5px solid rgba(255,246,230,.25); transition: all .2s ease; }
.tab.is-active{ background: var(--brand); color: var(--ink); border-color: var(--cream); }
.who-panel{ display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; margin-top: 44px; background: var(--ink-2); border: 2.5px solid rgba(255,246,230,.2); border-radius: 32px; padding: clamp(28px,4vw,48px); }
.who-panel__title{ font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3vw,38px); line-height: 1.08; letter-spacing: -0.025em; color: var(--cream); }
.who-panel__body{ font-size: 17.5px; line-height: 1.6; color: #C9C2D6; margin-top: 18px; }
.who-panel .ticklist{ margin-top: 26px; }
.who-panel .ticklist li{ color: var(--cream); }
.who-panel__copy .btn{ margin-top: 30px; }
.who-panel__media{ position: relative; }

/* ---------- How it works ---------- */
.section--yellowband{ background: var(--yellow-band); }
.steps{ list-style: none; padding: 0; margin: 50px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step{ text-align: center; }
.step__num{ width: 84px; height: 84px; border-radius: 50%; border: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 34px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.step__num--coral{ background: var(--brand); color: var(--ink); }
.step__num--teal{ background: var(--teal); color: var(--ink); }
.step__num--blue{ background: var(--blue); color: var(--cream); }
.step__num--yellow{ background: var(--yellow); color: var(--ink); }
.step__title{ font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-top: 20px; letter-spacing: -0.01em; }
.step__body{ font-size: 15px; line-height: 1.5; color: #5A4F35; margin: 8px auto 0; max-width: 24ch; }

/* ---------- Promise ---------- */
.promise{ background: var(--brand); color: var(--ink); }
.promise__inner{ max-width: 980px; text-align: center; }
.promise__spark{ font-size: 42px; }
.promise__quote{ font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,3.6vw,46px); line-height: 1.15; letter-spacing: -0.02em; margin: 14px 0 0; }
.promise__quote em{ font-style: italic; }
.promise__attrib{ font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-top: 26px; }

/* ---------- About ---------- */
.about__grid{ display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px,5vw,68px); align-items: center; }
.about__media{ position: relative; margin: 0; }
.about__badge{ position: absolute; right: -16px; bottom: 34px; z-index: 2; background: var(--yellow); color: var(--ink); border: var(--border); border-radius: 18px; padding: 13px 18px; box-shadow: 5px 5px 0 var(--ink); font-weight: 800; font-size: 15px; line-height: 1.1; }
.about__copy .lead{ margin-top: 18px; }
.values{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value{ border: var(--border); border-radius: 18px; padding: 16px 18px; }
.value h4{ font-weight: 800; font-size: 17px; }
.value p{ font-size: 14px; line-height: 1.45; color: #3A3346; margin: 4px 0 0; }
.value--coral{ background: rgba(255,107,74,.1); } .value--teal{ background: rgba(63,201,182,.1); }
.value--blue{ background: rgba(59,91,219,.08); } .value--yellow{ background: rgba(255,197,61,.15); }
.credentials{ list-style: none; display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 24px 0 0; }
.credentials li{ font-size: 13.5px; font-weight: 700; background: var(--white); border: 2px solid var(--ink); padding: 7px 14px; border-radius: 999px; }

/* ---------- Careers ---------- */
.section--blue{ background: var(--blue); color: var(--cream); }
.careers__grid{ display: grid; grid-template-columns: 1.4fr .85fr; gap: 36px; align-items: center; }
.careers__body{ font-size: 17px; line-height: 1.55; color: #DCE2FF; margin-top: 16px; max-width: 50ch; }
.careers .section__title{ max-width: 18ch; }

/* ---------- FAQ ---------- */
.accordion{ display: flex; flex-direction: column; gap: 14px; margin-top: 44px; }
.acc{ background: var(--white); border: var(--border); border-radius: 20px; overflow: hidden; }
.acc__q{ width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-body); }
.acc__q > span:first-child{ font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; }
.acc__sign{ width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: var(--brand); border: var(--border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; line-height: 1; }
.acc__a{ display: none; padding: 0 22px 24px; }
.acc.is-open .acc__a{ display: block; }
.acc__a p{ font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 62ch; margin: 0; }

/* ---------- Contact / form ---------- */
.contact__grid{ display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px,5vw,64px); align-items: start; }
.contact__info .lead{ max-width: 42ch; margin-top: 18px; }
.contact__cards{ display: flex; flex-direction: column; gap: 14px; margin-top: 34px; }
.contact-card{ display: flex; align-items: center; gap: 15px; text-decoration: none; border: var(--border); border-radius: 20px; padding: 17px 20px; }
.contact-card--yellow{ background: var(--yellow); box-shadow: var(--shadow-sm); }
.contact-card--teal{ background: var(--teal); box-shadow: var(--shadow-sm); }
.contact-card--plain{ background: var(--white); }
.contact-card:not(.contact-card--plain):hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.contact-card{ transition: transform .18s ease, box-shadow .18s ease; }
.contact-card__icon{ width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.contact-card__label{ display: block; font-size: 13px; font-weight: 700; color: var(--muted); }
.contact-card--yellow .contact-card__label{ color: #5A4F35; }
.contact-card--teal .contact-card__label{ color: #0E5E54; }
.contact-card__value{ display: block; font-weight: 800; font-size: 17px; }

.form-card{ background: var(--white); border: 3px solid var(--ink); border-radius: var(--r-card); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-lg); }
.referral-form{ display: flex; flex-direction: column; gap: 17px; }
.field{ display: flex; flex-direction: column; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .form-card label{ font-weight: 800; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea{
  width: 100%; padding: 14px 16px; border: var(--border); border-radius: var(--r-input);
  font-size: 16px; font-family: inherit; font-weight: 600; background: var(--cream-input); color: var(--ink);
}
.field textarea{ resize: vertical; }
.field input::placeholder, .field textarea::placeholder{ color: rgba(33,27,46,.4); }
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,107,74,.2); }
.form-note{ font-size: 13px; line-height: 1.5; color: var(--muted); text-align: center; margin: 0; }

/* Success */
.form-success{ text-align: center; padding: 28px 6px; }
.form-success__check{ width: 72px; height: 72px; border-radius: 50%; background: var(--teal); border: var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 34px; }
.form-success h3{ font-family: var(--font-display); font-weight: 800; font-size: 28px; margin-top: 20px; }
.form-success p{ font-size: 16.5px; line-height: 1.55; color: var(--muted); margin-top: 10px; }
.form-success .btn{ margin-top: 24px; }

/* ---------- Custom select ---------- */
.select{ position: relative; }
.select__trigger{
  width: 100%; padding: 14px 16px; border: var(--border); border-radius: var(--r-input);
  font-size: 16px; font-family: inherit; font-weight: 600; background: var(--cream-input); color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.select.is-open .select__trigger{ border-color: var(--brand); }
.select.has-error .select__trigger{ border-color: var(--error); box-shadow: 0 0 0 4px rgba(215,38,61,.13); }
.select__label.is-placeholder{ color: rgba(33,27,46,.5); }
.select__chev{ font-size: 11px; flex-shrink: 0; transition: transform .2s ease; }
.select.is-open .select__chev{ transform: rotate(180deg); }
.select__error{ font-size: 13px; font-weight: 700; color: var(--error); margin: 6px 0 0; }
.select__menu{
  position: absolute; top: calc(100% + 7px); left: 0; right: 0; z-index: 50; list-style: none;
  background: var(--cream-input); border: var(--border); border-radius: var(--r-input);
  box-shadow: var(--shadow); padding: 6px; margin: 0; display: flex; flex-direction: column; gap: 2px;
}
.select__menu li{ font-size: 16px; font-weight: 600; padding: 13px 12px; border-radius: 9px; cursor: pointer; }
.select__menu li:hover, .select__menu li.is-active{ background: rgba(255,107,74,.13); }
.select__menu li[aria-selected="true"]{ background: var(--brand); }
.select-backdrop{ position: fixed; inset: 0; z-index: 40; }

/* ---------- Footer ---------- */
.footer{ background: var(--ink); color: var(--cream); padding: clamp(48px,6vw,80px) 0 32px; }
.footer__grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.brand--footer .brand__mark{ width: 40px; height: 40px; }
.brand--footer .brand__word{ color: var(--cream); font-size: 25px; }
.footer__tag{ font-size: 15px; line-height: 1.6; color: #C9C2D6; margin: 16px 0 0; max-width: 38ch; }
.footer__h{ font-weight: 800; font-size: 14px; color: var(--cream); margin-bottom: 16px; }
.footer__grid > div:nth-child(2) a, .footer__grid > div:nth-child(3) a, .footer__addr{ display: block; text-decoration: none; color: #C9C2D6; font-size: 15px; font-weight: 600; margin-bottom: 11px; line-height: 1.5; }
.footer__grid a:hover{ color: var(--yellow); }
.footer__cta{ color: var(--yellow) !important; font-weight: 800 !important; margin-top: 4px; }
.footer__bottom{ display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; font-size: 13px; color: #7E7592; font-weight: 600; border-top: 2px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 24px; }
.footer__legal{ display: flex; gap: 18px; }
.footer__legal a{ color: #C9C2D6; text-decoration: none; }
.footer__legal a:hover{ color: var(--yellow); }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar{ display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; gap: 10px; align-items: center; padding: 10px 14px; background: var(--cream); border-top: var(--border); box-shadow: 0 -6px 20px -10px rgba(33,27,46,.25); transform: translateY(120%); transition: transform .32s cubic-bezier(.4,0,.2,1); }
.mobile-bar.is-visible{ transform: translateY(0); }
.mobile-bar .btn{ flex: 1; }
.mobile-bar__primary{ flex: 1.5; }

/* ---------- Anchor offset ---------- */
#services, #who, #how, #about, #careers, #faq, #contact{ scroll-margin-top: 88px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px){
  .nav{ display: none; }
  .burger{ display: inline-flex; }
  .site-header__actions .btn--cta{ display: none; }
  .mobile-menu:not([hidden]){ display: flex; }
  .hero__grid{ grid-template-columns: 1fr; gap: 38px; }
  .cards{ grid-template-columns: 1fr; }
  .who-panel{ grid-template-columns: 1fr; }
  .about__grid{ grid-template-columns: 1fr; }
  .careers__grid{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; gap: 30px 22px; }
  .mobile-bar{ display: flex; }
  .footer{ padding-bottom: 92px; }
}
@media (max-width: 560px){
  .footer__grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
  .ticklist--two{ grid-template-columns: 1fr; }
  .values{ grid-template-columns: 1fr; }
  .note-badge{ left: 0; }
  /* Hero CTAs side by side */
  .hero__cta{ flex-wrap: nowrap; gap: 10px; }
  .hero__cta .btn{ flex: 1 1 0; min-width: 0; padding: 15px 10px; font-size: 14.5px; }
  .cta-phone{ display: none; }
  /* Who-we-help tabs in a tidy 2x2 grid */
  .tabs{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .tab{ padding: 13px 8px; font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}

/* ============================================================
   Sub-pages (legal + 404)
   ============================================================ */
.subpage{ padding-top: clamp(36px,5vw,64px); padding-bottom: var(--section-pad); }
.crumbs{ font-size: 14px; font-weight: 700; color: var(--muted); }
.crumbs a{ color: var(--blue); text-decoration: none; }
.crumbs a:hover{ text-decoration: underline; }
.legal{ max-width: 820px; }
.legal h1{ font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,5vw,52px); line-height: 1.04; letter-spacing: -0.03em; margin-top: 14px; }
.legal__updated{ color: var(--muted); font-weight: 600; margin-top: 12px; }
.legal__note{ background: var(--yellow-band); border: var(--border); border-radius: 18px; padding: 16px 20px; margin-top: 26px; font-size: 14.5px; line-height: 1.55; font-weight: 600; }
.prose{ margin-top: 14px; }
.prose h2{ font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,2.6vw,30px); letter-spacing: -0.02em; margin-top: 42px; line-height: 1.1; }
.prose h3{ font-weight: 800; font-size: 18px; margin-top: 26px; }
.prose p, .prose li{ font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.prose p{ margin: 12px 0 0; }
.prose ul{ margin: 12px 0 0; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prose ul li{ position: relative; padding-left: 26px; }
.prose ul li::before{ content: ""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }
.prose a{ color: var(--blue); font-weight: 700; }
.prose strong{ color: var(--ink); }

/* 404 */
.notfound{ text-align: center; padding: clamp(48px,9vw,110px) 0; display: flex; flex-direction: column; align-items: center; }
.notfound__code{ font-family: var(--font-display); font-weight: 800; font-size: clamp(96px,20vw,210px); line-height: .86; letter-spacing: -0.05em; color: var(--ink); }
.notfound__code mark{ background: var(--yellow); color: var(--ink); border-radius: 18px; padding: 0 .06em; }
.notfound h1{ font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,4vw,44px); letter-spacing: -0.02em; margin-top: 22px; }
.notfound p{ font-size: 18px; line-height: 1.55; color: var(--muted); margin-top: 14px; max-width: 46ch; }
.notfound__cta{ display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ============================================================
   Decorative floaties + pointer parallax over media
   ============================================================ */
.media-parallax{ perspective: 900px; }
.media-parallax .arch{ transition: transform .35s ease-out; will-change: transform; }
.floaties{ position: absolute; inset: 0; z-index: 3; pointer-events: none; transition: transform .35s ease-out; }
.floatie{ position: absolute; display: flex; align-items: center; justify-content: center;
  animation: floaty var(--dur,5s) ease-in-out var(--delay,0s) infinite; }
.floatie--spark{ font-style: normal; font-size: 26px; line-height: 1; filter: drop-shadow(2px 2px 0 rgba(33,27,46,.18)); }
.floatie--dot{ width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid var(--ink); }
.floatie--ring{ width: 26px; height: 26px; border-radius: 50%; border: 3px solid var(--ink); }

@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-13px) rotate(9deg); }
}

/* Hero */
.hero__media .floatie--1{ top: 3%; right: 15%; color: var(--yellow); --dur: 5.5s; }
.hero__media .floatie--2{ top: 26%; left: -2%; background: var(--brand); --dur: 4.6s; --delay: .4s; }
.hero__media .floatie--3{ bottom: 21%; right: -2%; border-color: var(--blue); --dur: 6s; --delay: .2s; }
.hero__media .floatie--4{ bottom: 9%; left: 13%; color: var(--brand); font-size: 20px; --dur: 5s; --delay: .8s; }
/* Who (on dark panel — use light/bright accents) */
.who-panel__media .floatie--1{ top: 5%; left: -2%; color: var(--yellow); --dur: 5.2s; }
.who-panel__media .floatie--2{ bottom: 13%; right: -2%; background: var(--brand); --dur: 4.8s; --delay: .5s; }
.who-panel__media .floatie--3{ top: 42%; right: 5%; border-color: var(--cream); --dur: 6s; --delay: .3s; }
/* About */
.about__media .floatie--1{ top: 5%; left: 11%; color: var(--brand); --dur: 5.4s; }
.about__media .floatie--2{ bottom: 23%; left: -2%; border-color: var(--yellow); --dur: 5s; --delay: .6s; }
.about__media .floatie--3{ top: 30%; right: -2%; background: var(--yellow); --dur: 4.7s; --delay: .2s; }

@media (prefers-reduced-motion: reduce){
  .floatie{ animation: none !important; }
  .floaties, .media-parallax .arch{ transition: none !important; transform: none !important; }
}
