/**
 * FCS site styles — logo colors + survey UI tokens.
 * Logo SVG: #084f6e / #c7793d / #4ac3c7
 * Survey apps: navy #0d1b2a, teal #0d5c66, aqua #2bb8c4, copper #c4784a
 */
:root {
  --fcs-logo-navy: #084f6e;
  --fcs-logo-copper: #c7793d;
  --fcs-logo-aqua: #4ac3c7;
  --fcs-phoenix-deep: #9f4a23;
  --navy: #0d1b2a;
  --teal: #0d5c66;
  --aqua: #2bb8c4;
  --copper: #c4784a;
  --copper-soft: #f7efe8;
  --aqua-soft: #e8f6f8;
  --ink: #0d1b2a;
  --muted: #5c6b76;
  --line: #dde3e8;
  --surface: #f4f7f8;
  --white: #ffffff;
  --brand: var(--fcs-logo-navy);
  --font-body: "Open Sans", "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --header-offset: 5.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 0% -5%, rgba(74, 195, 199, 0.16), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(199, 121, 61, 0.1), transparent 50%),
    linear-gradient(180deg, #f3f8f9 0%, var(--surface) 45%, #eef3f4 100%);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-underline-offset: 2px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-logo { height: 54px; width: auto; }

.nav-toggle {
  display: none;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.nav-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.55rem;
}
.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
.site-nav .nav-row > a {
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.28rem 0;
  line-height: 1.35;
}
.site-nav .nav-row > a + a {
  margin-left: 0.85rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(8, 79, 110, 0.28);
}
.site-nav .nav-row > a:hover,
.site-nav .nav-row > a[aria-current="page"] { color: var(--brand); }
.site-nav .nav-special {
  color: var(--fcs-logo-copper);
  font-weight: 700;
  padding: 0.28rem 0.7rem !important;
  border-radius: 4px;
  background: rgba(199, 121, 61, 0.12);
  border: 1px solid rgba(199, 121, 61, 0.4);
}
/* Keep left divider from +a rule, but restore special box border */
.site-nav .nav-row > a.nav-special {
  border-left-color: rgba(199, 121, 61, 0.4);
}
.site-nav .nav-special:hover,
.site-nav .nav-special[aria-current="page"] {
  color: #fff;
  background: var(--fcs-logo-copper);
  border-color: var(--fcs-logo-copper);
}
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--fcs-logo-copper);
  color: #fff !important;
  padding: 0.75rem 1.15rem;
  border-radius: 4px;
  text-align: center;
  line-height: 1.25;
  font-size: 1rem;
  max-width: 9.25rem;
  white-space: normal;
}
.site-nav .nav-cta:hover { background: var(--fcs-phoenix-deep); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-offset));
  display: grid;
  align-content: center;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(74, 195, 199, 0.28), transparent 55%),
    radial-gradient(780px 480px at 88% 8%, rgba(199, 121, 61, 0.22), transparent 50%),
    linear-gradient(135deg, #084f6e 0%, #0d5c66 48%, #0d1b2a 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 40rem; }
.hero-brand {
  height: 58px;
  width: auto;
  margin-bottom: 1.35rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero p {
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.93);
  max-width: 34rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--fcs-logo-copper); color: #fff; }
.btn-primary:hover { background: var(--fcs-phoenix-deep); color: #fff; }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.section {
  padding: clamp(2.5rem, 6vw, 4.25rem) clamp(1rem, 4vw, 3rem);
  max-width: 1080px;
  margin: 0 auto;
}
.section-narrow { max-width: 760px; }
.section h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 0.75rem;
}
.lead {
  /* Same color as body copy — do not use muted for normal paragraphs */
  color: var(--ink);
  max-width: 42rem;
  margin: 0 0 1.35rem;
  line-height: 1.65;
}
.section > p,
.page-hero > p:not(.eyebrow),
.faq details p {
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fcs-logo-copper);
  margin: 0 0 0.5rem;
}

.band {
  background: linear-gradient(135deg, var(--fcs-logo-navy), var(--teal));
  color: #fff;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1rem, 4vw, 3rem);
}
.band-inner { max-width: 1080px; margin: 0 auto; }
.band h2 { color: #fff; margin-top: 0; }
.band p { color: rgba(255,255,255,0.92); max-width: 40rem; }

.feature-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .feature-list { grid-template-columns: repeat(3, 1fr); }
}
.feature-list li {
  padding: 0;
  border: 0;
  background: transparent;
}
.feature-list h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--navy);
  border-top: 3px solid var(--fcs-logo-copper);
  padding-top: 0.75rem;
}
.feature-list p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.reach {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .reach { grid-template-columns: repeat(5, 1fr); }
}
.reach li {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-top: 2px solid var(--fcs-logo-aqua);
}
.reach strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand);
}
.reach span { font-size: 0.82rem; color: var(--muted); }

.quote {
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--fcs-logo-copper);
  background: var(--copper-soft);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

/* Team org chart
   Desktop: Carolyn + Danielle same row; Danielle centered over staff;
   Carolyn slightly left of Danielle. */
.org {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}
.org-top {
  width: 100%;
  display: flex;
  justify-content: center;
}
.org-top-track {
  /* 3 columns: founder (end) | ceo (center) | mirror spacer */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: 0.75rem;
  width: min(100%, 44rem);
}
.org-node--founder {
  grid-column: 1;
  justify-self: end;
}
.org-node--ceo {
  grid-column: 2;
  justify-self: center;
}
.org-tier,
.org-staff {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 44rem;
}
.person-node {
  width: min(200px, 100%);
  text-align: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  font: inherit;
  color: inherit;
  transition: transform 0.2s ease;
}
.person-node:hover,
.person-node:focus-visible {
  transform: translateY(-3px);
  outline: none;
}
.person-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(145deg, var(--fcs-logo-navy), var(--aqua));
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--fcs-logo-copper);
}
.person-avatar.has-photo {
  background: #dfe6ea;
  padding: 0;
}
.person-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.person-node[data-level="1"] .person-avatar,
.org-node--founder .person-avatar,
.org-node--ceo .person-avatar {
  width: 104px;
  height: 104px;
  font-size: 1.55rem;
}
@media (max-width: 720px) {
  .org-top-track {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 1rem;
    width: 100%;
  }
  .org-node--founder,
  .org-node--ceo {
    grid-column: 1;
    justify-self: center;
  }
}
.modal-avatar.has-photo {
  background: #dfe6ea;
  padding: 0;
  overflow: hidden;
}
.modal-avatar.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ifa-promo-dialog {
  border-top: 4px solid var(--fcs-logo-copper);
}
.ifa-promo-dialog .eyebrow { margin-bottom: 0.35rem; }
.ifa-promo-dialog h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}
.ifa-promo-dialog p { color: var(--muted); margin: 0; }
.person-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: var(--navy);
}
.person-title {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.person-title-secondary {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}
.modal-role {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: pre-line;
}
.org-connector {
  width: 2px;
  height: 28px;
  background: var(--line);
}

.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.55);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.28);
}
.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--fcs-logo-navy), var(--aqua));
  margin-bottom: 0.85rem;
}
.modal-dialog h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.modal-bio { white-space: pre-line; margin: 0 0 1rem; color: var(--ink); }
.modal-email { font-size: 0.92rem; }

.embed-frame {
  width: 100%;
  min-height: 70vh;
  border: 1px solid var(--line);
  background: #fff;
}
.embed-placeholder {
  padding: 2rem;
  background: var(--aqua-soft);
  border: 1px dashed var(--teal);
  color: var(--navy);
}
.embed-placeholder code {
  font-size: 0.85rem;
  background: rgba(255,255,255,0.7);
  padding: 0.1rem 0.35rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
}
.faq details p { margin: 0.65rem 0 0; color: var(--ink); }

.team-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 42rem;
}

.contact-block p { margin: 0.35rem 0; }

.site-footer {
  margin-top: 2.5rem;
  padding: 2.25rem clamp(1rem, 4vw, 3rem);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}
.site-footer a { color: var(--fcs-logo-aqua); }
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-logo { height: 40px; width: auto; margin-bottom: 0.75rem; opacity: 0.95; }
.muted { color: rgba(255,255,255,0.65); }
.note-todo { font-size: 0.82rem; font-style: italic; opacity: 0.75; }
.footer-nav-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.footer-nav {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.footer-nav li { margin: 0 0 0.35rem; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }

.page-hero {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 3rem) 0;
  max-width: 1080px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  color: var(--navy);
  margin: 0 0 0.65rem;
}

.booth-callout {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--fcs-logo-copper);
  background: linear-gradient(90deg, rgba(199, 121, 61, 0.12), transparent 70%);
  max-width: 40rem;
}
.booth-callout-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fcs-logo-copper);
}
.booth-callout-number {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.booth-callout-note {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.ifa-floorplan {
  margin: 0 0 1.75rem;
  max-width: 56rem;
}
.ifa-floorplan a {
  display: block;
}
.ifa-floorplan img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}
.ifa-floorplan figcaption {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink);
  max-width: 40rem;
}
.ifa-floorplan figcaption a {
  color: var(--navy);
}

/* Unlisted IFA social kit */
.social-kit .kit-facts {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  max-width: 40rem;
}
.social-kit .kit-note {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 42rem;
}
.social-kit .kit-map {
  margin: 1rem 0 0;
  max-width: 56rem;
}
.social-kit .kit-map img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
}
.social-kit .kit-map figcaption,
.social-kit .kit-thumb figcaption,
.social-kit .kit-milestone-art figcaption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.social-kit .kit-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.social-kit .kit-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
  background: #fff;
}
.social-kit .kit-milestone {
  margin: 0 0 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.social-kit .kit-milestone-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 800px) {
  .social-kit .kit-milestone-head {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: start;
  }
}
.social-kit .kit-milestone-art img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  display: block;
  background: #fff;
}
.social-kit .kit-posts {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .social-kit .kit-posts { grid-template-columns: repeat(3, 1fr); }
}
.social-kit .kit-post {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: 0.85rem;
}
.social-kit .kit-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}
.social-kit .kit-platform {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-right: auto;
}
.social-kit .kit-ig-hint {
  font-size: 0.78rem;
  color: var(--muted);
}
.social-kit .kit-copy-text {
  width: 100%;
  min-height: 10rem;
  resize: vertical;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.65rem;
  background: #fff;
}
.social-kit .kit-post .btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-top: 0.75rem;
    font-size: 1.08rem;
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-header { flex-wrap: wrap; }
  .nav-rows {
    width: 100%;
    align-items: stretch;
    gap: 1rem;
  }
  .nav-row {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
  }
  .site-nav .nav-row > a {
    white-space: normal;
    padding: 0.55rem 0.15rem;
  }
  .site-nav .nav-row > a + a {
    margin-left: 0;
    padding-left: 0.15rem;
    border-left: 0;
    border-top: 1px solid rgba(8, 79, 110, 0.18);
    padding-top: 0.55rem;
    margin-top: 0.1rem;
  }
  .site-nav .nav-row > a.nav-special {
    margin-top: 0.35rem;
    padding: 0.55rem 0.75rem !important;
    border: 1px solid rgba(199, 121, 61, 0.4);
  }
  .site-nav .nav-cta {
    max-width: none;
    width: 100%;
    align-self: stretch;
    padding: 0.9rem 1.1rem;
    font-size: 1.05rem;
  }
  .hero-brand { height: 46px; }
}
