/* ==========================================================================
   Impact Fit Lab — stylesheet
   Steel blue + amber. System font stack only. No build step, no imports.
   Layout signature: full-bleed hero, card grid that overlaps the hero edge.
   ========================================================================== */

:root {
  --ifl-steel-900: #14222f;
  --ifl-steel-800: #1b2f40;
  --ifl-steel-700: #20374b;
  --ifl-steel-600: #2c4a63;
  --ifl-steel-400: #567c9b;
  --ifl-steel-200: #a9c0d3;
  --ifl-steel-060: #e2eaf1;

  --ifl-amber-700: #a8630a;
  --ifl-amber-600: #cd7c11;
  --ifl-amber-500: #e8971d;
  --ifl-amber-300: #f6c168;
  --ifl-amber-080: #fdf1dc;

  --ifl-paper: #f4f6f8;
  --ifl-card: #ffffff;
  --ifl-ink: #16232e;
  --ifl-ink-soft: #46596a;
  --ifl-hair: #d5dee6;

  --ifl-display: 'Trebuchet MS', 'Segoe UI', 'Helvetica Neue', sans-serif;
  --ifl-body: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Geneva, Verdana, sans-serif;

  --ifl-rail: 1180px;
  --ifl-gap: 26px;
  --ifl-radius: 4px;
  --ifl-radius-lg: 10px;
  --ifl-shadow: 0 18px 40px -26px rgba(20, 34, 47, 0.55);
  --ifl-shadow-lift: 0 30px 60px -30px rgba(20, 34, 47, 0.62);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.ifl-shell {
  margin: 0;
  padding: 0;
  background: var(--ifl-paper);
  color: var(--ifl-ink);
  font-family: var(--ifl-body);
  font-size: 16.5px;
  line-height: 1.72;
  overflow-x: hidden;
}

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

a { color: var(--ifl-steel-600); }
a:hover { color: var(--ifl-amber-700); }

h1, h2, h3, h4, h5 {
  font-family: var(--ifl-display);
  color: var(--ifl-steel-900);
  line-height: 1.16;
  letter-spacing: -0.008em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

.ifl-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ifl-amber-500);
  color: var(--ifl-steel-900);
  padding: 12px 20px;
  font-family: var(--ifl-display);
  font-weight: 700;
}
.ifl-skip:focus { left: 12px; top: 12px; }

.ifl-rail {
  width: 100%;
  max-width: var(--ifl-rail);
  margin: 0 auto;
  padding: 0 26px;
}

/* ---------- Ticker strip ------------------------------------------------ */

.ifl-ticker {
  background: var(--ifl-steel-900);
  color: var(--ifl-steel-200);
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--ifl-display);
}
.ifl-ticker__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 38px;
  flex-wrap: wrap;
}
.ifl-ticker__item { display: inline-flex; align-items: center; gap: 9px; }
.ifl-ticker__item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ifl-amber-500);
  transform: rotate(45deg);
  flex: none;
}
.ifl-ticker__item a { color: #fff; text-decoration: none; }
.ifl-ticker__item a:hover { color: var(--ifl-amber-300); }
.ifl-ticker__item:last-child { margin-left: auto; }

/* ---------- Topbar ------------------------------------------------------ */

.ifl-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--ifl-hair);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}
.ifl-topbar.is-stuck { box-shadow: 0 10px 26px -20px rgba(20, 34, 47, 0.9); }

.ifl-topbar__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.ifl-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
}
.ifl-mark__glyph {
  position: relative;
  width: 40px;
  height: 40px;
  flex: none;
  display: block;
}
.ifl-mark__ring {
  position: absolute;
  inset: 0;
  border: 2.5px solid var(--ifl-steel-700);
  border-radius: 50%;
}
.ifl-mark__ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--ifl-steel-200);
  border-radius: 50%;
}
.ifl-mark__dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ifl-amber-500);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ifl-mark__words { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.ifl-mark__words strong {
  font-family: var(--ifl-display);
  font-size: 20px;
  color: var(--ifl-steel-900);
  letter-spacing: -0.01em;
}
.ifl-mark__words em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ifl-steel-400);
  margin-top: 2px;
}

.ifl-menu { margin-left: auto; }
.ifl-menu__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.ifl-menu__list li { margin: 0; }
.ifl-menu__link {
  display: block;
  padding: 9px 10px;
  font-family: var(--ifl-display);
  font-size: 14px;
  white-space: nowrap;
  color: var(--ifl-steel-700);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.ifl-menu__link:hover { color: var(--ifl-amber-700); border-bottom-color: var(--ifl-amber-300); }
.ifl-menu__link.is-current { color: var(--ifl-steel-900); border-bottom-color: var(--ifl-amber-500); }
.ifl-menu__cta { margin-left: 10px; }

.ifl-burger {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 9px;
  background: var(--ifl-steel-700);
  color: #fff;
  border: 0;
  border-radius: var(--ifl-radius);
  padding: 10px 15px;
  font-family: var(--ifl-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.ifl-burger__bars { display: block; width: 17px; }
.ifl-burger__bars i {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.2s ease;
}
.ifl-burger.is-open .ifl-burger__bars i:first-child { transform: translateY(3px) rotate(45deg); }
.ifl-burger.is-open .ifl-burger__bars i:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ---------- Buttons ----------------------------------------------------- */

.ifl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ifl-display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 26px;
  border-radius: var(--ifl-radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.18s ease, color 0.18s ease;
}
.ifl-btn:hover { transform: translateY(-2px); }
.ifl-btn--amber { background: var(--ifl-amber-500); color: var(--ifl-steel-900); }
.ifl-btn--amber:hover { background: var(--ifl-amber-300); color: var(--ifl-steel-900); }
.ifl-btn--steel { background: var(--ifl-steel-700); color: #fff; }
.ifl-btn--steel:hover { background: var(--ifl-steel-800); color: #fff; }
.ifl-btn--ghost { border-color: currentColor; color: var(--ifl-steel-700); background: transparent; }
.ifl-btn--ghost:hover { background: var(--ifl-steel-700); color: #fff; border-color: var(--ifl-steel-700); }
.ifl-btn--sm { padding: 9px 17px; font-size: 13px; }
.ifl-btn--wide { min-width: 220px; }
.ifl-btn--block { display: flex; width: 100%; }

/* ---------- Full-bleed hero -------------------------------------------- */

.ifl-hero {
  position: relative;
  background: var(--ifl-steel-800);
  color: #fff;
  padding: 96px 0 170px;
  overflow: hidden;
  isolation: isolate;
}
.ifl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 480px at 88% -8%, rgba(232, 151, 29, 0.32), transparent 62%),
    linear-gradient(158deg, #21384c 0%, #16242f 58%, #101b24 100%);
}
.ifl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 74px);
}
.ifl-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 56px;
  align-items: center;
}
.ifl-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ifl-display);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ifl-amber-300);
  margin: 0 0 20px;
}
.ifl-hero__kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--ifl-amber-500);
}
.ifl-hero__title {
  color: #fff;
  font-size: clamp(2.35rem, 5.1vw, 3.85rem);
  margin: 0 0 22px;
  letter-spacing: -0.022em;
}
.ifl-hero__title span { color: var(--ifl-amber-300); }
.ifl-hero__sub {
  font-size: 18px;
  color: #cfdae4;
  max-width: 40em;
  margin-bottom: 30px;
}
.ifl-hero__acts { display: flex; flex-wrap: wrap; gap: 14px; }
.ifl-hero__acts .ifl-btn--ghost { color: #fff; }
.ifl-hero__acts .ifl-btn--ghost:hover { background: #fff; color: var(--ifl-steel-900); border-color: #fff; }

.ifl-readout {
  border: 1px solid rgba(169, 192, 211, 0.32);
  border-radius: var(--ifl-radius-lg);
  background: rgba(8, 16, 23, 0.42);
  padding: 26px 28px;
}
.ifl-readout__head {
  font-family: var(--ifl-display);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ifl-steel-200);
  padding-bottom: 13px;
  margin-bottom: 6px;
  border-bottom: 1px dashed rgba(169, 192, 211, 0.32);
}
.ifl-readout__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(169, 192, 211, 0.14);
}
.ifl-readout__row:last-child { border-bottom: 0; }
.ifl-readout__row span { font-size: 13.5px; color: #b9c8d6; }
.ifl-readout__row b {
  font-family: var(--ifl-display);
  font-size: 21px;
  color: var(--ifl-amber-300);
  letter-spacing: -0.01em;
}
.ifl-readout__foot {
  font-size: 12px;
  color: #8fa3b5;
  margin: 14px 0 0;
  line-height: 1.55;
}

/* ---------- Overlapping card grid -------------------------------------- */

.ifl-overlap {
  margin-top: -110px;
  position: relative;
  z-index: 5;
  padding-bottom: 72px;
}
.ifl-overlap__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.ifl-tile {
  background: var(--ifl-card);
  border-radius: var(--ifl-radius-lg);
  border-top: 4px solid var(--ifl-amber-500);
  box-shadow: var(--ifl-shadow-lift);
  padding: 30px 28px 32px;
  transition: transform 0.2s ease;
}
.ifl-tile:nth-child(2) { transform: translateY(-22px); border-top-color: var(--ifl-steel-600); }
.ifl-tile:nth-child(2):hover { transform: translateY(-28px); }
.ifl-tile:hover { transform: translateY(-6px); }
.ifl-tile__no {
  font-family: var(--ifl-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ifl-amber-700);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.ifl-tile h3 { font-size: 21px; margin-bottom: 10px; }
.ifl-tile p { color: var(--ifl-ink-soft); font-size: 15.4px; margin-bottom: 0; }
.ifl-tile__link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--ifl-display);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--ifl-steel-700);
  border-bottom: 2px solid var(--ifl-amber-300);
  padding-bottom: 2px;
}
.ifl-tile__link:hover { color: var(--ifl-amber-700); border-bottom-color: var(--ifl-amber-600); }

/* ---------- Interior page masthead ------------------------------------- */

.ifl-masthead {
  background: linear-gradient(140deg, #1c3143 0%, #14222f 74%);
  color: #fff;
  padding: 68px 0 62px;
  position: relative;
  overflow: hidden;
}
.ifl-masthead::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -70px;
  width: 340px;
  height: 340px;
  border: 44px solid rgba(232, 151, 29, 0.12);
  border-radius: 50%;
}
.ifl-masthead__inner { position: relative; z-index: 2; max-width: 830px; }
.ifl-crumb {
  display: inline-block;
  font-family: var(--ifl-display);
  font-size: 11.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ifl-amber-300);
  margin-bottom: 15px;
}
.ifl-masthead h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  margin-bottom: 16px;
}
.ifl-lede {
  font-size: 17.5px;
  color: #ccd8e2;
  margin: 0;
  max-width: 44em;
}
.ifl-lede a { color: var(--ifl-amber-300); }

/* ---------- Bands ------------------------------------------------------- */

.ifl-band { padding: 74px 0; }
.ifl-band--tight { padding: 52px 0; }
.ifl-band--tint { background: #eaeff4; }
.ifl-band--card { background: #fff; }
.ifl-band--deep { background: var(--ifl-steel-900); color: #d5dfe8; }
.ifl-band--deep h2, .ifl-band--deep h3 { color: #fff; }
.ifl-band--deep .ifl-eyebrow { color: var(--ifl-amber-300); }

.ifl-eyebrow {
  display: block;
  font-family: var(--ifl-display);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ifl-amber-700);
  margin-bottom: 12px;
}
.ifl-head { max-width: 720px; margin-bottom: 42px; }
.ifl-head--mid { margin-left: auto; margin-right: auto; text-align: center; }
.ifl-head h2 { font-size: clamp(1.65rem, 3.1vw, 2.35rem); }
.ifl-head p { color: var(--ifl-ink-soft); margin-bottom: 0; }
.ifl-band--deep .ifl-head p { color: #b6c5d2; }

/* ---------- Column systems ---------------------------------------------- */

.ifl-cols { display: grid; gap: var(--ifl-gap); }
.ifl-cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ifl-cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ifl-cols--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ifl-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 52px;
  align-items: start;
}
.ifl-split--flip { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }

/* ---------- Cards ------------------------------------------------------- */

.ifl-card {
  background: var(--ifl-card);
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  padding: 28px 26px;
  box-shadow: var(--ifl-shadow);
}
.ifl-card h3 { font-size: 19.5px; }
.ifl-card p:last-child { margin-bottom: 0; }
.ifl-card--flat { box-shadow: none; }
.ifl-card--edge { border-left: 4px solid var(--ifl-amber-500); }

.ifl-slab {
  background: var(--ifl-steel-060);
  border-radius: var(--ifl-radius-lg);
  padding: 26px 28px;
  border-left: 4px solid var(--ifl-steel-600);
}
.ifl-slab h3 { font-size: 18px; }
.ifl-slab p:last-child { margin-bottom: 0; }

.ifl-note {
  background: var(--ifl-amber-080);
  border: 1px solid var(--ifl-amber-300);
  border-radius: var(--ifl-radius-lg);
  padding: 22px 26px;
  font-size: 15.5px;
}
.ifl-note strong { font-family: var(--ifl-display); color: var(--ifl-amber-700); }
.ifl-note p:last-child { margin-bottom: 0; }

.ifl-pull {
  border-left: 5px solid var(--ifl-amber-500);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
  font-family: var(--ifl-display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ifl-steel-800);
}

/* ---------- Numbered process rail --------------------------------------- */

.ifl-rungs { list-style: none; margin: 0; padding: 0; counter-reset: rung; }
.ifl-rung {
  position: relative;
  padding: 0 0 34px 78px;
  counter-increment: rung;
  margin: 0;
}
.ifl-rung::before {
  content: counter(rung, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -4px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ifl-steel-700);
  color: var(--ifl-amber-300);
  font-family: var(--ifl-display);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ifl-rung::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 54px;
  bottom: 6px;
  width: 2px;
  background: var(--ifl-hair);
}
.ifl-rung:last-child { padding-bottom: 0; }
.ifl-rung:last-child::after { display: none; }
.ifl-rung h3 { font-size: 19px; margin-bottom: 7px; }
.ifl-rung p { color: var(--ifl-ink-soft); margin-bottom: 0; }

/* ---------- Ticked / crossed lists -------------------------------------- */

.ifl-ticks { list-style: none; padding: 0; margin: 0 0 1.05em; }
.ifl-ticks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
}
.ifl-ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--ifl-amber-600);
  border-bottom: 2.5px solid var(--ifl-amber-600);
  transform: rotate(-45deg);
}
.ifl-band--deep .ifl-ticks li::before { border-color: var(--ifl-amber-300); }

.ifl-bars { list-style: none; padding: 0; margin: 0; }
.ifl-bars li {
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--ifl-hair);
  border-left: 3px solid var(--ifl-steel-200);
  margin: 0;
}
.ifl-bars li:last-child { border-bottom: 0; }

/* ---------- Data table --------------------------------------------------- */

.ifl-sheet {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  overflow: hidden;
  font-size: 15px;
}
.ifl-sheet caption {
  caption-side: top;
  text-align: left;
  font-family: var(--ifl-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ifl-steel-400);
  padding-bottom: 10px;
}
.ifl-sheet th,
.ifl-sheet td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--ifl-hair);
  vertical-align: top;
}
.ifl-sheet thead th {
  background: var(--ifl-steel-800);
  color: #fff;
  font-family: var(--ifl-display);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.ifl-sheet tbody tr:nth-child(even) { background: #f7f9fb; }
.ifl-sheet tbody tr:last-child td { border-bottom: 0; }
.ifl-scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Rate cards --------------------------------------------------- */

.ifl-rate {
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--ifl-shadow);
}
.ifl-rate--pick {
  border: 2px solid var(--ifl-amber-500);
  box-shadow: var(--ifl-shadow-lift);
  position: relative;
}
.ifl-rate--pick::before {
  content: 'Most Booked';
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--ifl-amber-500);
  color: var(--ifl-steel-900);
  font-family: var(--ifl-display);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
}
.ifl-rate__len {
  font-family: var(--ifl-display);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ifl-steel-400);
}
.ifl-rate h3 { font-size: 22px; margin: 8px 0 12px; }
.ifl-rate__fig {
  font-family: var(--ifl-display);
  font-size: 42px;
  color: var(--ifl-steel-800);
  line-height: 1;
  margin-bottom: 4px;
}
.ifl-rate__fig small { font-size: 14px; color: var(--ifl-ink-soft); font-weight: normal; }
.ifl-rate__body { color: var(--ifl-ink-soft); font-size: 15.2px; }
.ifl-rate .ifl-ticks { margin-bottom: 22px; }
.ifl-rate .ifl-btn { margin-top: auto; }

/* ---------- Bios -------------------------------------------------------- */

.ifl-bio {
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ifl-bio__top {
  background: linear-gradient(135deg, var(--ifl-steel-700), var(--ifl-steel-900));
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ifl-bio__initials {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  background: var(--ifl-amber-500);
  color: var(--ifl-steel-900);
  font-family: var(--ifl-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ifl-bio__top h3 { color: #fff; margin: 0 0 3px; font-size: 19px; }
.ifl-bio__role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ifl-amber-300);
  font-family: var(--ifl-display);
}
.ifl-bio__body { padding: 24px 26px 26px; }
.ifl-bio__body p { color: var(--ifl-ink-soft); font-size: 15.3px; }
.ifl-bio__facts {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px dashed var(--ifl-hair);
  font-size: 13.5px;
}
.ifl-bio__facts li { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.ifl-bio__facts span { color: var(--ifl-steel-400); }

/* ---------- Golfer reports ---------------------------------------------- */

.ifl-voice {
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  padding: 28px 26px;
  position: relative;
}
.ifl-voice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  width: 44px;
  height: 4px;
  background: var(--ifl-amber-500);
}
.ifl-voice p { font-size: 15.6px; color: var(--ifl-ink-soft); }
.ifl-voice__by {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid var(--ifl-hair);
  padding-top: 15px;
  margin-top: 18px;
  font-size: 13.5px;
}
.ifl-voice__by strong { font-family: var(--ifl-display); color: var(--ifl-steel-800); font-size: 15px; }
.ifl-voice__by span { color: var(--ifl-steel-400); text-align: right; }

/* ---------- FAQ --------------------------------------------------------- */

.ifl-ask {
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.ifl-ask > summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  font-family: var(--ifl-display);
  font-size: 17px;
  color: var(--ifl-steel-800);
  position: relative;
}
.ifl-ask > summary::-webkit-details-marker { display: none; }
.ifl-ask > summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 27px;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--ifl-amber-600);
  border-bottom: 2.5px solid var(--ifl-amber-600);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.ifl-ask[open] > summary::after { transform: rotate(-135deg); top: 32px; }
.ifl-ask[open] > summary { background: var(--ifl-steel-060); }
.ifl-ask__body { padding: 4px 24px 22px; color: var(--ifl-ink-soft); font-size: 15.4px; }
.ifl-ask__body p:last-child { margin-bottom: 0; }

/* ---------- Forms -------------------------------------------------------- */

.ifl-form {
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  padding: 30px 28px;
  box-shadow: var(--ifl-shadow);
}
.ifl-field { margin-bottom: 18px; }
.ifl-field label {
  display: block;
  font-family: var(--ifl-display);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ifl-steel-600);
  margin-bottom: 7px;
}
.ifl-field input,
.ifl-field select,
.ifl-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius);
  font-family: var(--ifl-body);
  font-size: 15.5px;
  color: var(--ifl-ink);
  background: #fbfcfd;
}
.ifl-field input:focus,
.ifl-field select:focus,
.ifl-field textarea:focus {
  outline: none;
  border-color: var(--ifl-steel-600);
  box-shadow: 0 0 0 3px rgba(86, 124, 155, 0.2);
  background: #fff;
}
.ifl-field textarea { min-height: 128px; resize: vertical; }
.ifl-field__pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ifl-field__hint { font-size: 12.5px; color: var(--ifl-steel-400); margin: 7px 0 0; }
.ifl-form__legal { font-size: 12.8px; color: var(--ifl-steel-400); margin: 16px 0 0; }

/* ---------- Location plate ---------------------------------------------- */

.ifl-plate {
  border-radius: var(--ifl-radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 16px),
    linear-gradient(150deg, var(--ifl-steel-700), var(--ifl-steel-900));
  color: #fff;
  padding: 30px 28px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ifl-plate__pin {
  position: absolute;
  top: 32px;
  right: 34px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ifl-amber-500);
  box-shadow: 0 0 0 8px rgba(232, 151, 29, 0.22), 0 0 0 18px rgba(232, 151, 29, 0.1);
}
.ifl-plate__name {
  font-family: var(--ifl-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ifl-steel-200);
}
.ifl-plate__coords { font-family: var(--ifl-display); font-size: 22px; color: var(--ifl-amber-300); }
.ifl-plate p { margin: 6px 0 0; color: #c6d3de; font-size: 14.5px; }

/* ---------- Article prose ------------------------------------------------ */

.ifl-prose { max-width: 44em; }
.ifl-prose h2 {
  font-size: 25px;
  margin-top: 40px;
  padding-top: 6px;
  border-top: 2px solid var(--ifl-amber-300);
}
.ifl-prose h3 { font-size: 19.5px; margin-top: 28px; }
.ifl-prose p { color: #2c3e4d; }
.ifl-prose ul { margin-bottom: 1.3em; }
.ifl-prose li { color: #2c3e4d; }

.ifl-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--ifl-steel-400);
  font-family: var(--ifl-display);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--ifl-hair);
  padding-bottom: 16px;
  margin-bottom: 28px;
}

.ifl-post {
  background: #fff;
  border: 1px solid var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ifl-post:hover { transform: translateY(-4px); box-shadow: var(--ifl-shadow-lift); }
.ifl-post__tag {
  font-family: var(--ifl-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ifl-amber-700);
  margin-bottom: 11px;
}
.ifl-post h3 { font-size: 20px; margin-bottom: 10px; }
.ifl-post h3 a { color: inherit; text-decoration: none; }
.ifl-post h3 a:hover { color: var(--ifl-amber-700); }
.ifl-post p { color: var(--ifl-ink-soft); font-size: 15.2px; }
.ifl-post__meta {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed var(--ifl-hair);
  font-size: 12.6px;
  color: var(--ifl-steel-400);
  font-family: var(--ifl-display);
  letter-spacing: 0.06em;
}

/* ---------- Stat strip --------------------------------------------------- */

.ifl-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: var(--ifl-hair);
  border-radius: var(--ifl-radius-lg);
  overflow: hidden;
}
.ifl-stat { background: #fff; padding: 26px 22px; text-align: center; }
.ifl-stat b {
  display: block;
  font-family: var(--ifl-display);
  font-size: 33px;
  color: var(--ifl-steel-700);
  line-height: 1.1;
}
.ifl-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ifl-steel-400);
  font-family: var(--ifl-display);
}

/* ---------- Pre-footer + footer ------------------------------------------ */

.ifl-prefoot { background: var(--ifl-amber-500); color: var(--ifl-steel-900); padding: 52px 0; }
.ifl-prefoot__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ifl-prefoot__kicker {
  font-family: var(--ifl-display);
  font-size: 11.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0 0 9px;
  color: var(--ifl-amber-700);
}
.ifl-prefoot__title { font-size: clamp(1.5rem, 2.9vw, 2.05rem); margin: 0 0 8px; }
.ifl-prefoot__copy { margin: 0; max-width: 38em; font-size: 15.6px; color: #40331c; }
.ifl-prefoot__acts { display: flex; flex-direction: column; gap: 12px; }
.ifl-prefoot__acts .ifl-btn--amber { background: var(--ifl-steel-900); color: #fff; }
.ifl-prefoot__acts .ifl-btn--amber:hover { background: var(--ifl-steel-700); }
.ifl-prefoot__acts .ifl-btn--ghost { color: var(--ifl-steel-900); }
.ifl-prefoot__acts .ifl-btn--ghost:hover { background: var(--ifl-steel-900); color: #fff; border-color: var(--ifl-steel-900); }

.ifl-foot { background: var(--ifl-steel-900); color: #a9bccb; padding: 60px 0 0; font-size: 14.8px; }
.ifl-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 46px;
}
.ifl-foot__brand {
  display: block;
  font-family: var(--ifl-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.ifl-foot__blurb { color: #93a9ba; font-size: 14.6px; }
.ifl-foot__tags { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ifl-foot__tags li {
  border: 1px solid rgba(169, 192, 211, 0.3);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--ifl-display);
  color: var(--ifl-steel-200);
  margin: 0;
}
.ifl-foot__head {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ifl-foot__addr { font-style: normal; color: #93a9ba; margin-bottom: 12px; }
.ifl-foot__line { margin: 0 0 6px; }
.ifl-foot a { color: var(--ifl-steel-200); text-decoration: none; }
.ifl-foot a:hover { color: var(--ifl-amber-300); }
.ifl-foot__hours { list-style: none; padding: 0; margin: 0; font-size: 13.6px; }
.ifl-foot__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(169, 192, 211, 0.12);
}
.ifl-foot__hours b { color: #cfdbe5; font-weight: normal; text-align: right; }
.ifl-foot__links { list-style: none; padding: 0; margin: 0; }
.ifl-foot__links li { margin-bottom: 7px; }
.ifl-foot__base { border-top: 1px solid rgba(169, 192, 211, 0.16); padding: 20px 0; }
.ifl-foot__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7d94a7;
}
.ifl-foot__base-inner p { margin: 0; }

/* ---------- Reveal ------------------------------------------------------- */

.ifl-rise {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ifl-rise.is-shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ifl-rise { opacity: 1; transform: none; transition: none; }
  .ifl-btn:hover, .ifl-tile:hover, .ifl-post:hover { transform: none; }
}

/* ---------- Utilities ---------------------------------------------------- */

.ifl-mt0 { margin-top: 0; }
.ifl-mb0 { margin-bottom: 0; }
.ifl-gap-lg { margin-top: 34px; }
.ifl-center { text-align: center; }
.ifl-muted { color: var(--ifl-ink-soft); }

/* ---------- Breakpoints --------------------------------------------------- */

@media (max-width: 1080px) {
  .ifl-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ifl-foot__grid { grid-template-columns: 1fr 1fr; }
  .ifl-cols--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ifl-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .ifl-ticker__item--hide-sm { display: none; }
  .ifl-burger { display: inline-flex; }
  .ifl-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--ifl-hair);
    box-shadow: 0 24px 40px -28px rgba(20, 34, 47, 0.75);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .ifl-menu.is-open { max-height: 640px; }
  .ifl-menu__list { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 26px 22px; }
  .ifl-menu__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--ifl-hair);
    font-size: 16px;
  }
  .ifl-menu__link.is-current { border-bottom-color: var(--ifl-amber-500); }
  .ifl-menu__cta { margin: 16px 0 0; }
  .ifl-menu__cta .ifl-btn { width: 100%; }
  .ifl-topbar { position: relative; }
  .ifl-topbar__inner { position: relative; }

  .ifl-hero { padding: 66px 0 130px; }
  .ifl-overlap { margin-top: -86px; }
  .ifl-overlap__grid { grid-template-columns: 1fr; gap: 16px; }
  .ifl-tile:nth-child(2) { transform: none; }
  .ifl-tile:nth-child(2):hover { transform: translateY(-6px); }

  .ifl-split, .ifl-split--flip { grid-template-columns: 1fr; gap: 34px; }
  .ifl-cols--2, .ifl-cols--3 { grid-template-columns: 1fr; }
  .ifl-band { padding: 56px 0; }
}

@media (max-width: 620px) {
  body.ifl-shell { font-size: 16px; }
  .ifl-rail { padding: 0 18px; }
  .ifl-topbar__inner { gap: 12px; min-height: 66px; }
  .ifl-mark { gap: 10px; }
  .ifl-mark__glyph { width: 32px; height: 32px; }
  .ifl-mark__dot { width: 9px; height: 9px; }
  .ifl-mark__words strong { font-size: 17px; }
  .ifl-mark__words em { font-size: 9.5px; letter-spacing: 0.08em; }
  .ifl-burger { flex: none; padding: 9px 12px; font-size: 12px; }
  .ifl-burger__label { display: none; }
  .ifl-ticker__item--hide-sm,
  .ifl-ticker__item:first-child { display: none; }
  .ifl-ticker__item:last-child { margin-left: 0; }
  .ifl-ticker__inner { justify-content: center; min-height: 34px; }
  .ifl-cols--4, .ifl-stats { grid-template-columns: 1fr; }
  .ifl-foot__grid { grid-template-columns: 1fr; gap: 30px; }
  .ifl-field__pair { grid-template-columns: 1fr; }
  .ifl-prefoot__acts { width: 100%; }
  .ifl-prefoot__acts .ifl-btn { width: 100%; min-width: 0; }
  .ifl-rung { padding-left: 62px; }
  .ifl-rung::before { width: 44px; height: 44px; font-size: 15px; }
  .ifl-rung::after { left: 21px; top: 46px; }
  .ifl-masthead { padding: 48px 0 44px; }
  .ifl-hero__acts .ifl-btn { width: 100%; }
}
