/* ==========================================================================
   Chick-fil-A Lehigh Acres — Team Member Portal
   Brand stylesheet. Edit tokens below to adjust the whole site at once.
   ========================================================================== */

/* ---------- Brand font (Apercu Bold, used for headings) ---------- */
@font-face {
  font-family: "Apercu";
  src: url("../fonts/Apercu-Bold.woff2") format("woff2"),
       url("../fonts/Apercu-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette (from CFA Brand Colors) */
  --cfa-red:        #DD0032;
  --cfa-red-dark:   #AF272F;
  --navy:           #004F71;
  --sky:            #3EB1C8;
  --sky-light:      #A7CED8;
  --teal-dark:      #00635B;
  --green:          #249E6B;
  --green-light:    #B3CFAE;
  --orange:         #E35205;
  --peach:          #FA9370;
  --gold:           #FFB549;
  --butter:         #F5E1A4;
  --cream:          #FCF7E7;
  --plum:           #5D3754;
  --magenta:        #994878;
  --blush:          #F8C1B8;
  --charcoal:       #545454;

  /* Surfaces & text */
  --bg:             #FFFFFF;
  --bg-warm:        #FDFBF5;
  --surface:        #FFFFFF;
  --ink:            #1E1E1E;
  --ink-soft:       #5A5A5A;
  --ink-faint:      #8A8A8A;
  --line:           #EAE6DC;
  --line-strong:    #D9D3C4;

  /* Type */
  --font-display: "Apercu", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(30, 30, 30, .06), 0 2px 6px rgba(30, 30, 30, .05);
  --shadow-md: 0 2px 4px rgba(30, 30, 30, .05), 0 10px 24px rgba(30, 30, 30, .08);
  --shadow-lg: 0 4px 8px rgba(30, 30, 30, .05), 0 24px 48px rgba(30, 30, 30, .12);
  --shadow-red: 0 8px 20px rgba(221, 0, 50, .28);

  --wrap: 1180px;
  --nav-h: 74px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: var(--cfa-red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--cfa-red); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 3rem, 820px); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--warm { background: var(--bg-warm); }
.section--cream { background: var(--cream); }
.section--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cfa-red);
  margin-bottom: .9rem;
}
.eyebrow--navy { color: var(--navy); }
.eyebrow--light { color: rgba(255,255,255,.82); }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(322px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: .98rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  text-decoration: none !important;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--cfa-red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: #c4002d; box-shadow: 0 12px 26px rgba(221,0,50,.34); }

.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(0,79,113,.25); }
.btn--navy:hover { background: #013e59; }

.btn--outline { background: transparent; color: var(--cfa-red); border-color: currentColor; }
.btn--outline:hover { background: var(--cfa-red); color: #fff; }

.btn--ghost-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: #fff; color: var(--cfa-red); border-color: #fff; }

.btn--white { background: #fff; color: var(--cfa-red); box-shadow: var(--shadow-md); }
.btn--white:hover { box-shadow: var(--shadow-lg); }

.btn--sm { padding: .7rem 1.25rem; font-size: .9rem; }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.08rem; }

.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row.center { justify-content: center; }

/* ==========================================================================
   5. HEADER / NAV
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 38px; padding-block: .4rem;
}
.topbar a { color: #fff; text-decoration: none; opacity: .9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar-links { display: flex; gap: 1.4rem; }
.topbar-note--short { display: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none !important; }
.brand-logo { height: 38px; width: auto; flex: none; }
.brand-divider { width: 1px; height: 30px; background: var(--line-strong); flex: none; }
@media (max-width: 420px) {
  .brand-logo { height: 30px; }
  .brand-divider, .brand .brand-sub { display: none; }
}
.brand-mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--cfa-red);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.25rem;
  box-shadow: var(--shadow-red);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); letter-spacing: -.01em; }
.brand-sub { font-size: .7rem; color: var(--ink-faint); letter-spacing: .08em; text-transform: uppercase; line-height: 1.35; font-family: var(--font-display); }
.footer-brand .brand-logo { filter: brightness(0) invert(1); opacity: .95; }
.footer-brand .brand-divider { background: rgba(255,255,255,.25); }

.nav-list {
  display: flex; align-items: center; gap: .25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-list > li { position: relative; margin: 0; }

.nav-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .85rem;
  border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 500;
  color: var(--ink); text-decoration: none !important;
  transition: background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav-link:hover { background: #F4F1E8; color: var(--cfa-red); }
.nav-link.is-active { color: var(--cfa-red); background: rgba(221,0,50,.07); }
.nav-link .caret { width: 9px; height: 9px; opacity: .55; transition: transform .2s ease; }
.has-menu:hover .caret, .has-menu:focus-within .caret { transform: rotate(180deg); }

.nav-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu li { margin: 0; }
.nav-menu a {
  display: block; padding: .65rem .8rem;
  border-radius: var(--r-sm);
  color: var(--ink); font-size: .93rem; text-decoration: none !important;
}
.nav-menu a:hover { background: var(--cream); color: var(--cfa-red); }
.nav-menu .menu-desc { display: block; font-size: .78rem; color: var(--ink-faint); margin-top: .1rem; }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: .5rem; border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: .75rem 1.5rem 1.5rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-link { padding: .85rem .25rem; font-size: 1.02rem; border-radius: var(--r-sm); }
  .nav-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 0 0 .5rem .5rem; padding: 0 0 0 .5rem;
    min-width: 0;
    display: none;
  }
  .nav-menu.is-open { display: block; }
  .has-menu:hover .nav-menu { opacity: 1; }
  .topbar-links { display: none; }
  .topbar .wrap { justify-content: center; text-align: center; font-size: .78rem; }
  .topbar-note { display: none; }
  .topbar-note--short { display: inline; }
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(145deg, #E4003A 0%, var(--cfa-red) 42%, var(--cfa-red-dark) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.16) 0, transparent 46%),
    radial-gradient(circle at 8% 92%, rgba(0,79,113,.32) 0, transparent 52%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .07;
  background-image: radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero-inner { padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 8vw, 6rem); }

/* Centered logo hero (home page) */
.hero--center .hero-inner { text-align: center; padding-block: clamp(3.5rem, 8vw, 6rem); }
.hero.hero--center h1 { max-width: none; width: 100%; }
.hero--center .lead { margin: 0 auto; max-width: 52ch; }
.hero--center .btn-row { justify-content: center; }

.hero-title {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2rem);
  margin: 0 0 1.5rem;
}
.hero-logo {
  filter: brightness(0) invert(1);
  width: clamp(240px, 34vw, 400px);
  height: auto;
}
.hero-title .hero-title-text {
  font-size: clamp(1.65rem, 3.6vw, 2.7rem);
  letter-spacing: .01em;
  line-height: 1.15;
  position: relative;
  padding-top: clamp(1.25rem, 2.6vw, 2rem);
}
.hero-title .hero-title-text::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 2px;
  background: rgba(255,255,255,.4);
}

/* Two-column hero (home page) */
.hero--split .hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem; align-items: center;
}
@media (max-width: 900px) {
  .hero--split .hero-inner { grid-template-columns: 1fr; gap: 2.75rem; }
  .hero-aside { display: none; }
}

.hero-aside { display: grid; gap: .85rem; }
.hero-shortcut {
  display: flex; align-items: center; gap: .95rem;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
  color: #fff; text-decoration: none !important;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.hero-shortcut:hover { transform: translateX(4px); background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.45); }
.hero-shortcut .hs-icon {
  width: 40px; height: 40px; flex: none; border-radius: 11px;
  background: rgba(255,255,255,.18); display: grid; place-items: center;
}
.hero-shortcut .hs-title { font-family: var(--font-display); font-size: .97rem; display: block; }
.hero-shortcut .hs-sub { font-size: .8rem; color: rgba(255,255,255,.75); display: block; }
.hero-shortcut .hs-arrow { margin-left: auto; opacity: .7; transition: transform .18s ease; }
.hero-shortcut:hover .hs-arrow { transform: translateX(3px); opacity: 1; }
.hero-aside-label {
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: .2rem;
}
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: .55em; }
.hero .lead { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 56ch; }
.hero .eyebrow { color: rgba(255,255,255,.85); }
.hero .btn-row { margin-top: 2.2rem; }

.hero--compact .hero-inner { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 4.25rem); }
.hero--compact h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); max-width: 20ch; }

.hero--navy { background: linear-gradient(145deg, #00688F 0%, var(--navy) 55%, #00364E 100%); }
.hero--plum { background: linear-gradient(145deg, #7A4A6E 0%, var(--plum) 60%, #402539 100%); }
.hero--teal { background: linear-gradient(145deg, #0A7D73 0%, var(--teal-dark) 58%, #00443E 100%); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-stat .n { font-family: var(--font-display); font-size: 2.1rem; line-height: 1; display: block; }
.hero-stat .l { font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: .4rem; display: block; }

/* Breadcrumb */
.crumbs { font-size: .84rem; color: rgba(255,255,255,.75); margin-bottom: 1.2rem; }
.crumbs a { color: rgba(255,255,255,.9); }
.crumbs span { opacity: .6; margin: 0 .45rem; }

/* ==========================================================================
   7. CARDS
   ========================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
a.card { text-decoration: none !important; color: inherit; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card .card-link {
  margin-top: auto; padding-top: 1.1rem;
  font-family: var(--font-display); font-size: .9rem; color: var(--cfa-red);
  display: inline-flex; align-items: center; gap: .4rem;
}
a.card:hover .card-link .arrow { transform: translateX(4px); }
.card-link .arrow { transition: transform .18s ease; }

.card-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  font-size: 1.35rem; flex: none;
}
.i-red    { background: rgba(221,0,50,.1);   color: var(--cfa-red); }
.i-navy   { background: rgba(0,79,113,.1);   color: var(--navy); }
.i-sky    { background: rgba(62,177,200,.14);color: #1E8CA3; }
.i-green  { background: rgba(36,158,107,.12);color: var(--green); }
.i-teal   { background: rgba(0,99,91,.1);    color: var(--teal-dark); }
.i-orange { background: rgba(227,82,5,.1);   color: var(--orange); }
.i-gold   { background: rgba(255,181,73,.18);color: #B87A00; }
.i-plum   { background: rgba(93,55,84,.1);   color: var(--plum); }
.i-magenta{ background: rgba(153,72,120,.12);color: var(--magenta); }

/* Accent top-bar card */
.card--accent { border-top: 4px solid var(--cfa-red); border-radius: var(--r-lg); }
.card--accent.a-navy   { border-top-color: var(--navy); }
.card--accent.a-green  { border-top-color: var(--green); }
.card--accent.a-gold   { border-top-color: var(--gold); }
.card--accent.a-sky    { border-top-color: var(--sky); }
.card--accent.a-plum   { border-top-color: var(--plum); }
.card--accent.a-orange { border-top-color: var(--orange); }
.card--accent.a-teal   { border-top-color: var(--teal-dark); }

/* Quick-link tile */
.tile {
  display: flex; align-items: center; gap: .9rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1rem 1.15rem;
  text-decoration: none !important; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.tile .tile-icon { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; font-size: 1.05rem; }
.tile .tile-body { min-width: 0; }
.tile .tile-title { font-family: var(--font-display); font-size: .96rem; display: block; }
.tile .tile-sub { font-size: .8rem; color: var(--ink-faint); display: block; }
.tile .tile-arrow { margin-left: auto; color: var(--ink-faint); transition: transform .18s ease, color .18s ease; }
.tile:hover .tile-arrow { transform: translateX(3px); color: var(--cfa-red); }

/* ==========================================================================
   8. CALLOUT BANNER (New hires, start here)
   ========================================================================== */
.callout {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--navy) 0%, #00658E 100%);
  color: #fff;
  padding: clamp(2.25rem, 4.5vw, 3.5rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.callout::after {
  content: ""; position: absolute; right: -70px; top: -70px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.callout-body { position: relative; max-width: 58ch; }
.callout h2 { color: #fff; margin-bottom: .4em; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.callout p { color: rgba(255,255,255,.9); margin-bottom: 0; }
.callout .btn-row { position: relative; }
.callout--red { background: linear-gradient(120deg, var(--cfa-red) 0%, var(--cfa-red-dark) 100%); }
.callout--teal { background: linear-gradient(120deg, var(--teal-dark) 0%, #0A8378 100%); }
.callout--plum { background: linear-gradient(120deg, var(--plum) 0%, var(--magenta) 100%); }

/* ==========================================================================
   9. VALUE / STEP LISTS
   ========================================================================== */
.steps { counter-reset: step; display: grid; gap: 1.1rem; }
.step {
  display: flex; gap: 1.35rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem; box-shadow: var(--shadow-sm);
}
.step-num {
  counter-increment: step; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cfa-red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.05rem;
}
.step-num::before { content: counter(step); }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .6rem; }
.step p:last-child { margin-bottom: 0; }

/* Value cards with big letter */
.value {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: 1.9rem 1.75rem;
  color: #fff; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; min-height: 210px;
}
.value h3 { color: #fff; font-size: 1.3rem; margin-bottom: .5rem; }
.value p { color: rgba(255,255,255,.92); font-size: .96rem; margin-bottom: 0; }
.value .value-mark {
  position: absolute; right: -6px; bottom: -30px;
  font-family: var(--font-display); font-size: 7rem; line-height: 1;
  color: rgba(255,255,255,.13);
}
.v-red   { background: linear-gradient(140deg, var(--cfa-red), var(--cfa-red-dark)); }
.v-navy  { background: linear-gradient(140deg, #00668F, var(--navy)); }
.v-teal  { background: linear-gradient(140deg, #0A857A, var(--teal-dark)); }
.v-plum  { background: linear-gradient(140deg, var(--magenta), var(--plum)); }
.v-orange{ background: linear-gradient(140deg, #F0691C, var(--orange)); }
.v-green { background: linear-gradient(140deg, #2CB27A, #1B7A52); }

/* ==========================================================================
   9b. VALUES FRAMEWORK (core values + hospitality model)
   ========================================================================== */
.fw-values-label {
  text-align: center; margin: 0 0 1.25rem;
}
.fw-values-label span {
  display: inline-block; font-family: var(--font-display);
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cfa-red); border: 2px solid var(--cfa-red);
  padding: .5rem 1.5rem; border-radius: var(--r-pill);
}

.fw-pillars {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.fw-pillar {
  background: linear-gradient(155deg, var(--cfa-red), var(--cfa-red-dark));
  color: #fff; border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; min-height: 190px;
}
.fw-pillar h3 { color: #fff; font-size: 1.4rem; margin-bottom: .65rem; }
.fw-pillar p {
  color: rgba(255,255,255,.94); font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.5;
  margin-bottom: 0; font-family: var(--font-display);
}

.fw-foundation {
  margin-top: 2rem;
  background: linear-gradient(120deg, var(--navy), #00658E);
  color: #fff; border-radius: var(--r-lg);
  padding: 2.25rem clamp(1.5rem, 4vw, 3rem);
  text-align: center; box-shadow: var(--shadow-md);
}
.fw-foundation .fw-label {
  display: block; font-family: var(--font-display);
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: .9rem;
}
.fw-foundation p {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.4; margin: 0 auto; max-width: 34ch;
}

/* Core 4 / hospitality */
.core4 { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.core4-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative;
}
.core4-item .n {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: rgba(221,0,50,.09);
}
.core4-item h3 { font-size: 1.1rem; margin-bottom: .45rem; padding-right: 2.5rem; }
.core4-item p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 0; }

/* ==========================================================================
   9c. PHOTO BLOCK
   ========================================================================== */
.photo {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); line-height: 0;
}
.photo img { width: 100%; height: auto; }
.photo-caption {
  font-size: .85rem; color: var(--ink-faint);
  margin-top: .85rem; line-height: 1.5;
}

/* People / org cards */
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; box-shadow: var(--shadow-sm); text-align: center;
}
.person .avatar {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 1rem;
  font-family: var(--font-display); font-size: 1.5rem; color: #fff;
  background: linear-gradient(140deg, var(--cfa-red), var(--cfa-red-dark));
}
.person .avatar.navy { background: linear-gradient(140deg, #00668F, var(--navy)); }
.person .avatar.grey { background: linear-gradient(140deg, #8E8E8E, #6A6A6A); }
.person h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.person .role { font-size: .9rem; color: var(--ink-soft); margin-bottom: .5rem; }
.person .contact { font-size: .88rem; }

/* Definition-style fact list */
.facts { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.fact {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--cfa-red);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.fact.navy { border-left-color: var(--navy); }
.fact.green { border-left-color: var(--green); }
.fact.gold { border-left-color: var(--gold); }
.fact.sky { border-left-color: var(--sky); }
.fact.plum { border-left-color: var(--plum); }
.fact h3 {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: .6rem;
}
.fact .big { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.3; display: block; margin-bottom: .4rem; }
.fact p, .fact ul { font-size: .95rem; color: var(--ink-soft); margin-bottom: 0; }
.fact ul { padding-left: 1.15em; }

/* ==========================================================================
   10. TIMELINE
   ========================================================================== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--cfa-red), var(--sky-light));
}
.tl-item { position: relative; padding-bottom: 2.25rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -2.5rem; top: 6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 4px solid var(--cfa-red);
}
.tl-year {
  font-family: var(--font-display); font-size: .85rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cfa-red); margin-bottom: .25rem; display: block;
}
.tl-item h3 { margin-bottom: .35rem; font-size: 1.15rem; }
.tl-item p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 0; }

/* ==========================================================================
   11. FAQ / ACCORDION
   ========================================================================== */
.faq { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.5rem;
  font-family: var(--font-display); font-size: 1rem;
  position: relative; transition: background-color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-warm); }
.faq summary::after {
  content: "+"; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  font-size: 1.35rem; color: var(--cfa-red); font-weight: 400; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: .97rem; }

/* ==========================================================================
   12. TABLE
   ========================================================================== */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .95rem; }
thead th {
  background: var(--cream); text-align: left; padding: .95rem 1.25rem;
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--navy); white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
tbody td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
tbody tr:last-child td { border-bottom: 0; }
tbody td:first-child { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   13. NOTE / PLACEHOLDER MARKER
   ========================================================================== */
.note {
  border-left: 4px solid var(--gold);
  background: #FFFBF0;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.15rem 1.4rem;
  font-size: .95rem; color: var(--ink-soft);
  margin: 1.75rem 0;
}
.note strong { color: var(--ink); }
.note--navy { border-left-color: var(--sky); background: #F2F9FB; }
.note--red { border-left-color: var(--cfa-red); background: #FFF5F7; }

/* Inline "replace me" chip so placeholders are obvious while editing */
.todo {
  display: inline-block;
  background: repeating-linear-gradient(45deg, #FFF3D0, #FFF3D0 8px, #FFE9AE 8px, #FFE9AE 16px);
  border: 1px dashed #D6A419;
  border-radius: var(--r-sm);
  padding: .05em .5em;
  font-size: .88em; color: #7A5A00;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.badge {
  display: inline-block; font-family: var(--font-display);
  font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: var(--r-pill);
  background: rgba(221,0,50,.1); color: var(--cfa-red);
}
.badge--navy { background: rgba(0,79,113,.1); color: var(--navy); }
.badge--green { background: rgba(36,158,107,.12); color: #1B7A52; }
.badge--gold { background: rgba(255,181,73,.2); color: #8A5C00; }

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer { background: #1B1B1B; color: rgba(255,255,255,.72); padding: 4rem 0 0; margin-top: 0; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.5fr repeat(3, 1fr); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.5); }
.footer-about { font-size: .93rem; margin-top: 1.1rem; max-width: 34ch; }
.footer-bottom {
  margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.5rem 0; font-size: .84rem; color: rgba(255,255,255,.5);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* ==========================================================================
   15. MOTION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   16. PRINT
   ========================================================================== */
@media print {
  .site-header, .topbar, .site-footer, .btn-row { display: none !important; }
  body { font-size: 12pt; }
  .hero { background: none !important; color: #000 !important; }
  .hero h1, .hero .lead, .hero .eyebrow { color: #000 !important; }
}
