/* IFS mock v6. Black / gold / white. Rounded. Calm. */
:root {
  --black: #0B0B0B;
  --gold: #A49E7E;
  --white: #F4F3EE;
  --muted: rgba(244, 243, 238, 0.66);
  --line: rgba(164, 158, 126, 0.28);
  --panel: #141414;
  --radius: 18px;
  --pill: 999px;
  --sans: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--white); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
h1 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); color: var(--gold); }
h2 { font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--white); }
h3 { font-size: 1.02rem; color: var(--white); font-weight: 700; }
p { margin: 0 0 0.7rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; }

.wrap { width: min(var(--wrap), calc(100% - 2.4rem)); margin-inline: auto; }

.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 90;
  background: var(--gold);
  color: var(--black);
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  border-radius: var(--pill);
}

.chrome {
  position: sticky;
  top: 0;
  z-index: 60;
}

.draft {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: var(--black);
  padding: 0.48rem 1rem;
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: relative;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--wrap), calc(100% - 2.4rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem 1.1rem;
  padding: 0.75rem 0;
}
.nav-left { grid-column: 1; justify-self: end; }
.header-inner .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  grid-column: 2;
  justify-self: center;
}
.header-inner .logo img { height: 50px; width: auto; }
.nav-toggle { grid-column: 3; justify-self: end; }
.nav-right { grid-column: 3; justify-self: start; }
.nav-mobile-only { display: none; }

.site-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.4rem;
}
.nav-left ul { justify-content: flex-end; }
.nav-right ul { justify-content: flex-start; }
.has-sub { position: relative; }
.has-sub > a { display: inline-block; padding: 0.35rem 0; }
.site-nav .sub-nav {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12.5rem;
  margin: 0;
  padding: 0.4rem 0;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 80;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-align: left;
}
.site-nav .has-sub:hover > .sub-nav,
.site-nav .has-sub:focus-within > .sub-nav {
  display: flex;
}
.sub-nav a {
  display: block;
  padding: 0.5rem 0.95rem;
  white-space: nowrap;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.52rem 1.05rem;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  display: inline-block;
  border-radius: var(--pill);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: var(--pill);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.hero { padding: 2.35rem 0 1.6rem; text-align: center; }
.hero-grid {
  display: block;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.hero h1 { max-width: 18ch; margin-inline: auto; margin-bottom: 0.7rem; font-size: clamp(2rem, 4.8vw, 3.05rem); }
.hero .dek { margin-inline: auto; }
.hero + .section { padding-top: 2rem; }
.dek { font-size: 1.02rem; max-width: 36rem; color: var(--muted); line-height: 1.45; }
.lede { font-size: 0.98rem; max-width: 38rem; line-height: 1.45; }
.copy p { max-width: 38rem; margin-left: auto; margin-right: auto; }

.kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.88rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: var(--pill);
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.hero-phone {
  margin-top: 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-phone a { color: var(--gold); font-weight: 600; }
.hero-phone a:hover { color: var(--white); }

.phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.phone:hover { color: var(--white); }

.award {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section { padding: 2.8rem 0; }
.section + .section { border-top: 1px solid var(--line); }

.split {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.4rem; }
  .split.flip > .copy { order: 2; }
  .split.flip > .media { order: 1; }
}

.frame-cutout {
  background: transparent;
  border: 0;
  padding: 0;
}
.frame {
  background: var(--panel);
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
}
.hero-visual .frame img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  min-height: 280px;
  background: #121212;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.tile {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.15rem 1.15rem;
  color: inherit;
  min-height: 100%;
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
a.tile { color: inherit; }
.tile:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
  color: inherit;
}
.tile p { font-size: 0.88rem; line-height: 1.4; }
.tile .num {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.why-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .why-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1.4rem; }
}
.why-item {
  padding: 1.15rem 1.15rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 100%;
}
.why-item h3 { color: var(--gold); margin-bottom: 0.55rem; }

.proof {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-inner {
  text-align: center;
}
.proof .award {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.14em;
}
.proof .award-frame {
  max-width: 28rem;
  margin: 1.55rem auto 0;
}
.award-about {
  max-width: 52rem;
  width: 100%;
  margin: 1.8rem auto 0;
}
.gamoa-block {
  text-align: center;
}
.gamoa-block h2 {
  margin-left: auto;
  margin-right: auto;
}
.gamoa-block .lede,
.gamoa-block > p,
.gamoa-block .note {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
}
.gamoa-block .award-about {
  max-width: 52rem;
  width: 100%;
  margin: 1.8rem auto 0;
}

.steps {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem auto 0;
  max-width: 36rem;
  width: 100%;
}
.steps li {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: start;
  justify-items: start;
  text-align: left;
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.steps li:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.steps .n {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.steps strong { color: var(--white); display: block; margin-bottom: 0.2rem; }
.steps span { color: var(--muted); font-size: 0.95rem; }


.people-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.people-list .person {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  gap: 0.65rem 1.15rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
}
.people-list .person:hover {
  transform: none;
}
.people-list .person-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.people-list .person img {
  display: block;
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.45rem;
  background: #111;
  border: 1px solid var(--line);
}
.people-list .person .role {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.12rem;
  line-height: 1.25;
}
.people-list .person-name {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.people-list .person a.phone {
  font-size: 0.82rem;
  font-weight: 700;
}
.people-list .person-bio {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 auto;
  min-width: 0;
  text-align: center;
}
@media (max-width: 640px) {
  .people-list .person { grid-template-columns: 1fr; }
}
.page-head-compact { padding: 1.5rem 0 0.9rem; }
.page-head-compact h1 { font-size: clamp(1.45rem, 3.6vw, 2rem); margin-bottom: 0.45rem; }
.page-head-compact .dek { font-size: 0.92rem; max-width: 40rem; }
.page-head-compact .award { margin-top: 0.7rem !important; }
.person {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.person:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.person .role {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.notice {
  border: 1px solid var(--line);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  background: var(--panel);
  border-radius: var(--radius);
}

.page-head { padding: 1.8rem 0 1rem; }
.page-body { padding: 0 0 3.2rem; }
.page-body .section { border-top: 0; padding-top: 2.1rem; }
.phones .person h2 { font-size: 1.12rem; margin: 0 0 0.3rem; }

.note { font-size: 0.92rem; margin-top: 1.25rem; }

form { max-width: 36rem; margin: 1.7rem auto 0; text-align: left; }
#talk-form {
  max-width: 44rem;
  margin: 2.6rem auto 0;
  padding: 2.1rem 1.8rem 1.8rem;
  background: var(--panel);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(164, 158, 126, 0.1);
}
#talk-form > .kicker { margin-bottom: 0.35rem; }
#talk-form > h2 {
  color: var(--gold);
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  margin-bottom: 0.4rem;
}
#talk-form .form-lede { margin-bottom: 1.45rem; }
#talk-form input,
#talk-form select,
#talk-form textarea {
  background: var(--black);
  border-color: rgba(164, 158, 126, 0.5);
  padding: 0.92rem 1rem;
}
#talk-form .btn {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.95rem 1.2rem;
  font-size: 1rem;
}
#talk-form .btn-ghost {
  width: auto;
  margin: 0 0 1rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.88rem;
}
#talk-form.is-sent {
  text-align: center;
  padding-top: 2.4rem;
  padding-bottom: 2.2rem;
}
#talk-form.is-sent .form-live { display: none; }
#talk-form .form-ok {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: center;
}
#talk-form .form-ok.is-on { display: block; }
#talk-form .form-ok .kicker { margin-bottom: 0.4rem; }
#talk-form .form-ok h2 {
  color: var(--gold);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  margin-bottom: 0.65rem;
}
#talk-form .form-ok p {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.45;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}
.llh-shared { margin-bottom: 0.4rem; }
.llh-location {
  border: 1px solid rgba(164, 158, 126, 0.45);
  border-radius: var(--radius);
  padding: 1.05rem 1rem 0.35rem;
  margin: 0 0 1rem;
  background: #101010;
}
.llh-loc-label {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.llh-remove[hidden] { display: none !important; }
.form-panel[hidden] { display: none !important; }
.form-row { display: grid; gap: 0 0.75rem; }
@media (min-width: 560px) {
  .form-row.three { grid-template-columns: 1.4fr 5.5rem 6.5rem; }
}
.form-row input { margin-bottom: 1.05rem; }
label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  margin-bottom: 1.05rem;
  background: var(--panel);
  color: var(--white);
  border: 1px solid var(--line);
  padding: 0.82rem 0.95rem;
  font: inherit;
  border-radius: var(--radius);
}
textarea { min-height: 7.5rem; resize: vertical; }
.help { font-size: 0.88rem; color: var(--muted); margin-top: 0.8rem; }
.form-ok {
  display: none;
  border: 1px solid var(--gold);
  padding: 0.95rem 1.1rem;
  margin-top: 1rem;
  color: var(--gold);
  border-radius: var(--radius);
  background: var(--panel);
}
.form-ok.is-on { display: block; }

.phones {
  display: grid;
  gap: 1.1rem;
  margin: 1.6rem 0 0;
}
@media (min-width: 720px) {
  .phones { grid-template-columns: 1fr 1fr 1fr; }
}
.phones .person { min-height: 100%; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 1.5rem;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.site-footer .logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 0.15rem;
  grid-column: auto;
}
.site-footer .logo img { height: 68px; margin-inline: auto; }
.footer-phone { margin: 0; }
.footer-blurb {
  max-width: none;
  width: 100%;
  margin: 0 auto 0.35rem;
  font-size: 0.95rem;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem 3rem;
  width: 100%;
  margin: 0.85rem 0 0.35rem;
  text-align: center;
}
.footer-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}
.footer-nav a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.32rem 0;
}
.footer-nav a:hover { color: var(--white); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  margin: 1.05rem auto;
  font-size: 0.88rem;
  justify-content: center;
}
.site-footer .award { margin: 0.35rem 0 0.15rem; }
.footer-legal { max-width: none; width: 100%; margin: 0.45rem auto 0; }
.legal { font-size: 0.78rem; color: var(--muted); max-width: none; margin-left: auto; margin-right: auto; line-height: 1.45; }
.legal + .legal { margin-top: 0.4rem; }
@media (max-width: 560px) {
  .footer-nav { grid-template-columns: 1fr; gap: 1.15rem; }
}

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .nav-left { display: none; }
  .nav-mobile-only { display: list-item; }
  .nav-toggle { display: block; grid-column: 3; justify-self: end; }
  .header-inner .logo { grid-column: 1 / 3; justify-self: center; }
  .site-nav.nav-right {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.2rem 1.2rem;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .site-nav.nav-right.is-open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav .has-sub > .sub-nav {
    display: none;
    position: static;
    border: 0;
    background: transparent;
    padding: 0 0 0.2rem 0.9rem;
    min-width: 0;
  }
  .site-nav .has-sub:hover > .sub-nav,
  .site-nav .has-sub:focus-within > .sub-nav {
    display: flex;
  }
  .site-nav a {
    display: block;
    padding: 0.82rem 0;
    border-bottom: 1px solid var(--line);
  }
  .sub-nav a { padding: 0.55rem 0; }
  .nav-cta {
    margin-top: 0.7rem;
    text-align: center;
  }
  .hero { padding: 2.2rem 0 1.4rem; }
  .header-inner .logo img { height: 42px; }
  .section { padding: 3.2rem 0; }
  .hero + .section { padding-top: 1.8rem; }
  .page-head { padding: 2.8rem 0 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tile, .btn, .nav-cta, .steps li, .person {
    transition: none;
  }
  .tile:hover, .btn:hover, .nav-cta:hover, .steps li:hover, .person:hover {
    transform: none;
    box-shadow: none;
  }
}

.dek, .lede, .note, .hero p, .page-head p, .section > p, .copy p {
  margin-left: auto;
  margin-right: auto;
}
.tile, .why-item, .person, .notice {
  text-align: center;
}
.media-center {
  max-width: 44rem;
  width: 100%;
  margin: 1.6rem auto;
}
.site-nav { text-align: left; }
input, select, textarea { text-align: left; }
