@charset "UTF-8";
:root {
  --black: #0a0a0a;
  --offblack: #111111;
  --charcoal: #1a1a1a;
  --surface: #1e1e1e;
  --altSurface: #333;
  --darkBlue: #000433;
  --border: rgba(255,255,255,0.5);
  --white: #f5f4f0;
  --realWhite: #ffffff;
  --cream: #ede9e0;
  --gold: #c9a96e;
  --gold-dim: rgba(201,169,110,0.15);
  --text-primary: #f0ede8;
  --text-secondary: rgba(240,237,232,0.85);
  --text-dim: rgba(240,237,232,0.65);
  --text-print: #222;
  --background-print: #fff;
  --section-background-primary: #464f5c;
  --section-background-alt: #000433; }

html {
  scroll-behavior: smooth; }

body {
  background: var(--section-background-primary);
  color: var(--realWhite);
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden; }
  @media print {
    body {
      background: var(--background-print) !important;
      color: var(--text-print) !important; } }

h1, h2 {
  font-family: 'Fraunces', serif; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease; }

.reveal.hidden {
  opacity: 0; }

.reveal.visible {
  opacity: 1; }

.reveal-delay-1 {
  transition-delay: 0.1s; }

.reveal-delay-2 {
  transition-delay: 0.2s; }

.reveal-delay-3 {
  transition-delay: 0.3s; }

.reveal-delay-4 {
  transition-delay: 0.4s; }

nav {
  position: fixed;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92); }
  @media print {
    nav {
      position: relative;
      top: auto;
      left: auto;
      right: auto; } }
  nav .interior {
    max-width: 1200px;
    display: flex;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 1rem;
    padding-right: 1rem; }
    @media (min-width: 1220px) {
      nav .interior {
        padding-left: 0;
        padding-right: 0; } }

.nav-control {
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .nav-control img {
    height: 1.2rem; }
  @media print, (min-width: 800px) {
    .nav-control {
      width: auto; } }
  @media print, print and (min-width: 800px), print and (min-width: 800px), (min-width: 800px) and (min-width: 800px) {
    .nav-control img:nth-child(2) {
      display: none; } }

.nav-links {
  list-style: none;
  display: none; }
  .nav-links li {
    padding-left: 1.2rem; }
  @media screen and (min-width: 800px) {
    .nav-links {
      margin-left: 1rem;
      display: flex;
      align-items: center;
      justify-content: flex-start; } }

.nav-links a, .nav-links .nav-scroll {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer; }

.nav-links a:hover, .nav-links .nav-scroll {
  color: var(--realWhite); }

.nav-cta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.5rem 1.2rem;
  transition: all 0.2s; }

.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold); }

.nav-mobile-display {
  display: block;
  top: 60px;
  right: 14px;
  position: absolute;
  background-color: #000;
  padding-right: 24px;
  border: 1px solid #444; }
  .nav-mobile-display li {
    text-align: right;
    line-height: 1.9; }

section {
  background-color: var(--section-background-primary); }
  @media print {
    section {
      background: var(--background-print) !important; } }
  section em {
    font-style: italic;
    color: var(--gold);
    font-family: inherit; }
  section.section-background-alt {
    background-color: var(--section-background-alt); }
    @media print {
      section.section-background-alt {
        background: var(--background-print) !important; } }
  section .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 800; }
    @media print {
      section .eyebrow {
        color: #000; } }
  section h1 {
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem; }
  section h2 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    color: var(--gold);
    transition: color 0.2s; }
    @media print {
      section h2 {
        color: #000;
        font-weight: 700; } }
  section h3 {
    font-size: 1.3rem;
    line-height: 1.75;
    margin-bottom: .8rem; }
  section h4 {
    font-weight: 600;
    margin-bottom: .8rem; }
  section p {
    margin-bottom: .8rem; }
  section p.smaller {
    font-size: 80%; }
  section .two-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem 0rem; }
    @media print, (min-width: 800px) {
      section .two-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem; } }
  section .three-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem 2rem; }
    @media print, (min-width: 800px) {
      section .three-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem; } }
  section#hero-outer {
    background-image: url("../images/background_site_hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 2.5rem; }
  section #hero .hero-actions {
    margin-top: 4rem;
    display: flex;
    gap: 1.2rem;
    align-items: center; }
  section #hero .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 4rem; }
    section #hero .hero-stats > div {
      width: 100%; }
      @media (min-width: 800px) {
        section #hero .hero-stats > div {
          width: auto; } }
      @media print {
        section #hero .hero-stats > div {
          width: 25%; } }
  section #hero .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1; }
  section #hero .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--realWhite);
    margin-top: 0.4rem; }
    @media print {
      section #hero .stat-label {
        color: #000; } }
  section #about h2 {
    color: var(--realWhite); }
    @media print {
      section #about h2 {
        color: #000; } }
  section #about h3 {
    color: var(--gold); }
  section #about .about-grid-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  section #difference p, section #difference h2, section #difference h3 {
    margin-bottom: 2rem; }
  section #difference .diff-table {
    margin-top: 4rem; }
    section #difference .diff-table .diff-header, section #difference .diff-table .diff-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      cursor: default;
      transition: background 0.25s ease;
      padding-top: 1.2rem;
      padding-bottom: 1.2rem; }
      @media print, (min-width: 800px) {
        section #difference .diff-table .diff-header, section #difference .diff-table .diff-row {
          border-bottom: 1px solid var(--border);
          grid-template-columns: 1fr 1fr; } }
      section #difference .diff-table .diff-header p, section #difference .diff-table .diff-header h3, section #difference .diff-table .diff-row p, section #difference .diff-table .diff-row h3 {
        margin-bottom: 0; }
    section #difference .diff-table .diff-row > div {
      margin-left: 0.5rem;
      margin-right: 0.5rem; }
    section #difference .diff-table .diff-row:hover {
      backdrop-filter: brightness(0.5); }
    section #difference .diff-table .diff-header {
      display: none; }
      @media print, (min-width: 800px) {
        section #difference .diff-table .diff-header {
          display: grid; } }
    section #difference .diff-table .diff-row:last-child {
      border-bottom: none; }
    section #difference .diff-table h4 {
      color: var(--gold); }
  section #clients h3 {
    margin-bottom: 0; }
  section #clients ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style-type: disc; }
    section #clients ul li {
      margin-left: 1rem; }
    section #clients ul li::marker {
      color: var(--gold);
      font-size: 120%; }
  section #what-we-do h4 {
    color: var(--gold); }
  section #what-we-do p:last-child {
    margin-bottom: 0; }
  section #what-we-do .two-grid {
    margin-top: 2rem;
    padding: 0;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    gap: 0; }
    section #what-we-do .two-grid > div {
      padding: 1.2rem;
      border-bottom: 1px solid var(--border);
      border-left: 1px solid var(--border);
      height: 100%; }
    section #what-we-do .two-grid > div:hover {
      backdrop-filter: brightness(0.5); }
  section #emi-thinking h2 img {
    display: inline-block;
    margin-right: 0.3rem;
    height: 0.9rem;
    vertical-align: middle;
    transform: rotate(90deg);
    margin-top: -0.2rem; }
  section #emi-thinking .tl-article {
    margin-top: 3.5rem; }
  section #emi-thinking .tl-article-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.2rem 0.6rem;
    margin-bottom: 1.2rem; }
  section #emi-thinking [data-tl-controls] {
    cursor: pointer; }
  section #emi-thinking .tl-article-remainder {
    display: none; }
    @media print {
      section #emi-thinking .tl-article-remainder {
        display: block; } }
  section #people .people-grid {
    display: grid;
    margin-top: 4rem;
    grid-template-columns: 100px 3.5fr;
    grid-row-gap: 2.5rem;
    grid-column-gap: 3rem; }
    @media print, (min-width: 800px) {
      section #people .people-grid {
        grid-template-columns: 200px 3.5fr;
        grid-row-gap: 3.5rem; } }
    section #people .people-grid .person-photo {
      min-height: 180px;
      width: 100%;
      height: 100%; }
      section #people .people-grid .person-photo img {
        width: 100%; }
    section #people .people-grid h2 {
      margin-bottom: 0.5rem; }
  section#contact-outer {
    background-image: url("../images/background_contact_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 2.5rem; }
  section #contact .contact-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 2.5rem auto 0 auto; }
  section #contact .contact-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-right: none;
    font-size: 0.88rem;
    padding: 0.9rem 1.2rem;
    outline: none;
    transition: border-color 0.2s; }
    @media print {
      section #contact .contact-form input {
        border: 1px solid var(--black); } }
  section #contact .contact-form input:focus {
    border-color: rgba(201, 169, 110, 0.5); }
  section #contact .contact-form input::placeholder {
    color: var(--text-dim); }
  section #contact .contact-form button {
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'Archivo', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s; }
  section #contact .contact-form button:hover {
    background: var(--cream); }
  section #contact .contact-direct {
    margin-top: 2rem;
    text-align: center; }
  section #contact .contact-direct a {
    color: var(--gold);
    text-decoration: none; }
  section #contact .contact-us-status {
    display: none;
    text-align: center;
    margin-top: 1rem;
    font-size: 80%;
    font-weight: 600; }

footer {
  background: var(--black); }
  footer #footer {
    display: flex;
    justify-content: space-between; }
    footer #footer p {
      font-size: .8rem;
      font-weight: 600; }
      @media print {
        footer #footer p {
          color: var(--black); } }
      footer #footer p span {
        color: var(--gold);
        font-weight: 800; }
    footer #footer a {
      color: var(--white);
      text-decoration: none; }
      @media print {
        footer #footer a {
          color: var(--black); } }
  @media print {
    footer {
      background: var(--white); } }

.interior {
  padding: 4.5rem 1rem 4.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto; }
  @media print, (min-width: 800px) {
    .interior {
      padding-left: 3rem;
      padding-right: 3rem; } }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: all 0.2s; }

.btn-primary:hover {
  background: var(--cream); }

.btn-ghost {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s; }

.btn-ghost:hover {
  color: var(--realWhite); }

/*# sourceMappingURL=emi.css.map */
