/* First Center Consulting — Global Styles */

:root {
  /* Color system — deep navy, ivory, gold */
  --ink: #0a1929;              /* deep navy, near-black */
  --ink-2: #12233b;            /* navy card */
  --ink-3: #1b2e4a;            /* navy border/hover */
  --navy: #14304f;             /* primary navy */
  --navy-soft: #2a4666;
  --ivory: #f6f2e9;            /* warm ivory background */
  --ivory-2: #ede6d6;          /* ivory card */
  --paper: #fbf9f4;            /* lightest paper */
  --gold: #b08a3e;             /* subtle antique gold */
  --gold-2: #c9a75c;
  --gold-soft: #d9c48a;
  --rule: rgba(10, 25, 41, 0.14);
  --rule-strong: rgba(10, 25, 41, 0.28);
  --rule-light: rgba(246, 242, 233, 0.18);
  --muted: #4a5a70;
  --muted-2: #6b7a8f;

  /* Typography */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Rhythm */
  --measure: 1200px;
  --measure-wide: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  font-feature-settings: 'ss01', 'cv11';
}

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

a { color: inherit; text-decoration: none; }

/* Typography scale */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--light { color: var(--gold-soft); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.display em { font-style: italic; color: var(--gold-soft); font-weight: 400; }

h1, .h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.012em;
}
h2, .h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.008em;
}
h3, .h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
h4, .h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}
.lede--light { color: rgba(246, 242, 233, 0.85); }

p { max-width: 62ch; }
p.wide { max-width: 78ch; }

/* Layout */
.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: var(--measure-wide); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(80px, 10vw, 140px) 0; }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav--transparent { color: var(--ivory); }
.nav--solid {
  background: rgba(10, 25, 41, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(246, 242, 233, 0.08);
  color: var(--ivory);
  padding: 14px var(--gutter);
}
.nav--paper {
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
  color: var(--ink);
  padding: 14px var(--gutter);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.01em;
}
.nav__mono {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 500;
  flex-shrink: 0;
}
.nav__name { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name span:first-child { font-size: 16px; letter-spacing: 0.02em; }
.nav__name span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}
.nav__links { display: flex; gap: 36px; align-items: center; font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; }
.nav__links a { position: relative; padding: 6px 0; opacity: 0.85; transition: opacity 0.2s ease; }
.nav__links a:hover, .nav__links a.active { opacity: 1; }
.nav__links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-2);
}
.nav__cta {
  padding: 10px 20px;
  border: 1px solid currentColor;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav--transparent .nav__cta:hover,
.nav--solid .nav__cta:hover { background: var(--ivory); color: var(--ink); }
.nav--paper .nav__cta:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease;
}
.btn:hover { gap: 20px; background: transparent; color: var(--ink); }
.btn__arrow { width: 18px; height: 1px; background: currentColor; position: relative; }
.btn__arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn--ghost { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.btn--ghost:hover { background: var(--ivory); color: var(--ink); }
.btn--gold { background: transparent; color: var(--gold-2); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,25,41,0.55) 0%, rgba(10,25,41,0.35) 40%, rgba(10,25,41,0.85) 100%),
    linear-gradient(90deg, rgba(10,25,41,0.6) 0%, rgba(10,25,41,0.1) 60%);
}
.hero__bg img, .hero__bg .hero__placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}
.hero.hero--loaded .hero__bg img { transform: scale(1); }
.hero__placeholder {
  background:
    repeating-linear-gradient(135deg, #12233b 0 2px, #14304f 2px 4px),
    linear-gradient(180deg, #0a1929, #14304f);
  display: grid; place-items: center;
  color: rgba(246, 242, 233, 0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
  max-width: var(--measure-wide);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: var(--gold-soft);
}
.hero__eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero__title {
  max-width: 18ch;
  color: var(--paper);
  margin-bottom: 32px;
}
.hero__sub {
  max-width: 52ch;
  color: rgba(246, 242, 233, 0.85);
  margin-bottom: 44px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(60px, 8vw, 100px);
  z-index: 2;
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(246, 242, 233, 0.5);
  text-transform: uppercase;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .hero__meta { display: none; }
}

/* Section header */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: baseline;
  margin-bottom: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.sec-head__label { display: flex; flex-direction: column; gap: 12px; }
.sec-head__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
}
.sec-head__title { color: var(--ink); }
.sec-head__title em { font-style: italic; color: var(--gold); }
.sec-head.dark { border-bottom-color: var(--rule-light); }
.sec-head.dark .sec-head__title { color: var(--paper); }
.sec-head.dark .sec-head__num { color: rgba(246,242,233,0.5); }
@media (max-width: 800px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
}

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.service {
  padding: 44px 32px 44px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s ease;
}
.service:nth-child(3n) { border-right: none; padding-right: 0; }
.service:nth-child(3n+1) { padding-left: 0; }
.service:not(:nth-child(3n+1)) { padding-left: 32px; }
.service__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.service__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
}
.service__body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34ch;
}
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--rule); padding-right: 32px; }
  .service:nth-child(2n) { border-right: none; padding-right: 0; }
  .service:nth-child(2n+1) { padding-left: 0; }
  .service:not(:nth-child(2n+1)) { padding-left: 32px; }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
  .service { padding: 32px 0 !important; border-right: none !important; }
}

/* Two-column feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1fr; }
.split--reverse .split__image { order: 2; }
.split__media {
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  overflow: hidden;
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, #12233b 0 1px, #14304f 1px 12px);
  display: grid; place-items: center;
  color: rgba(246,242,233,0.35);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.split__body { padding: 20px 0; }
.split__body h2 { margin-bottom: 24px; }
.split__body h2 em { font-style: italic; color: var(--gold); }
.split__body p { margin-bottom: 24px; color: var(--muted); }
.split__list {
  list-style: none;
  border-top: 1px solid var(--rule);
  margin: 32px 0;
}
.split__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
}
.split__list li::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__image { order: 0; }
  .split__media { aspect-ratio: 5 / 4; }
}

/* Dark-section override for split list — keep text/borders visible on navy */
.dark-bg .split__body p { color: rgba(246, 242, 233, 0.78); }
.dark-bg .split__list { border-top-color: var(--rule-light); }
.dark-bg .split__list li {
  color: var(--paper);
  border-bottom-color: var(--rule-light);
}

/* Dark section */
.dark-bg {
  background: var(--ink);
  color: var(--ivory);
}
.dark-bg p { color: rgba(246, 242, 233, 0.75); }
.dark-bg .service__body { color: rgba(246, 242, 233, 0.7); }
.dark-bg .service__title { color: var(--paper); }
.dark-bg .services,
.dark-bg .service { border-color: var(--rule-light); }

/* Process */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process__step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule-light);
  transition: background 0.3s ease, padding 0.3s ease;
}
.process__step:hover { background: rgba(255,255,255,0.02); padding-left: 12px; padding-right: 12px; }
.process__step:first-child { border-top: 1px solid var(--rule-light); }
.process__num {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
}
.process__title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  color: var(--paper);
  font-weight: 400;
}
.process__body {
  font-size: 15px;
  color: rgba(246,242,233,0.72);
  max-width: 52ch;
  padding-top: 8px;
}
@media (max-width: 800px) {
  .process__step { grid-template-columns: 60px 1fr; gap: 20px; }
  .process__body { grid-column: 1 / -1; padding-top: 0; }
  .process__num { font-size: 32px; }
  .process__title { font-size: 22px; }
}

/* Sectors */
.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.sector {
  padding: 32px 24px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  display: flex;
  align-items: flex-end;
  min-height: 140px;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}
.sector__num {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.sector:hover { background: var(--ink); color: var(--paper); }
.sector:hover .sector__num { color: var(--gold-soft); }
@media (max-width: 900px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .sectors { grid-template-columns: 1fr; } }

/* Map */
.map-block {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
}
.map-caption h4 { color: var(--gold-soft); margin-bottom: 12px; }
.map-caption p { color: rgba(246,242,233,0.7); font-size: 14px; }
@media (max-width: 700px) { .map-caption { grid-template-columns: 1fr; } }

/* Contact */
.contact-cta {
  background: var(--ivory-2);
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.contact-cta h2 { color: var(--ink); }
.contact-cta h2 em { font-style: italic; color: var(--gold); }
@media (max-width: 800px) { .contact-cta__inner { grid-template-columns: 1fr; gap: 40px; } }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule-light);
}
.footer__brand { font-family: var(--serif); font-size: 20px; margin-bottom: 20px; }
.footer__tag { font-size: 13px; color: rgba(246,242,233,0.65); max-width: 32ch; line-height: 1.6; }
.footer__col h4 { color: var(--gold-soft); margin-bottom: 20px; font-size: 11px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; font-size: 13px; }
.footer__col a { color: rgba(246,242,233,0.75); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,242,233,0.5);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; gap: 12px; } }

/* Form */
.form { display: grid; gap: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.form__field input,
.form__field select,
.form__field textarea {
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  background: transparent;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease;
  outline: none;
  border-radius: 0;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-bottom-color: var(--gold); }
.form__field textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.form__field select { appearance: none; background: transparent; cursor: pointer; }
.form__radios { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.form__radio {
  padding: 14px 18px;
  border: 1px solid var(--rule-strong);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: flex; align-items: center; gap: 10px;
}
.form__radio input { display: none; }
.form__radio .dot { width: 8px; height: 8px; border: 1px solid var(--rule-strong); border-radius: 50%; flex-shrink: 0; transition: all 0.2s ease; }
.form__radio.selected { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.form__radio.selected .dot { background: var(--gold); border-color: var(--gold); }
@media (max-width: 700px) {
  .form__row { grid-template-columns: 1fr; }
  .form__radios { grid-template-columns: 1fr; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.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; }

/* Page header (subpages) */
.page-head {
  background: var(--ink);
  color: var(--ivory);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(176, 138, 62, 0.12), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(20, 48, 79, 0.5), transparent 60%);
  pointer-events: none;
}
.page-head__inner { position: relative; z-index: 1; }
.page-head h1 { max-width: 20ch; margin-bottom: 24px; }
.page-head h1 em { font-style: italic; color: var(--gold-soft); }
.page-head .lede { max-width: 60ch; color: rgba(246,242,233,0.8); }
.page-head__crumb {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 40px;
  display: flex; gap: 12px; align-items: center;
}
.page-head__crumb span { opacity: 0.5; }
.page-head__crumb span:last-child { opacity: 1; }

/* Outlined button variant (for secondary CTAs on light grounds) */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

/* CTA contact block (phone + email above submit button) */
.cta-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  max-width: 520px;
}
.cta-contacts__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: color 0.2s ease;
}
.cta-contacts__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.cta-contacts__value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.cta-contacts__item:hover .cta-contacts__value { color: var(--gold); }
@media (max-width: 560px) {
  .cta-contacts { grid-template-columns: 1fr; gap: 16px; }
  .cta-contacts__value { font-size: 18px; }
}

/* Mobile nav toggle (hamburger) */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
  position: relative;
  padding: 0;
  color: inherit;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 24px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile navigation drawer */
@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--ink);
    color: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 96px var(--gutter) 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 60;
    border-left: 1px solid rgba(246,242,233,0.08);
    overflow-y: auto;
  }
  .nav__links.is-open {
    transform: translateX(0);
    box-shadow: -30px 0 80px rgba(0,0,0,0.3);
  }
  .nav__links a {
    font-family: var(--serif);
    font-size: 26px;
    letter-spacing: -0.005em;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(246,242,233,0.08);
    opacity: 1;
    color: var(--ivory);
  }
  .nav__links a.active {
    color: var(--gold-soft);
  }
  .nav__links a.active::after { display: none; }
  .nav__links::after {
    content: 'United States · Middle East';
    margin-top: 32px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246,242,233,0.4);
  }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(10, 25, 41, 0.5);
    z-index: 55;
    animation: nav-fade 0.35s ease;
  }
  @keyframes nav-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* Print styles (base — index-print.html adds more) */
@media print {
  .nav, .nav__toggle { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__bg img { transform: none !important; }
}

/* Focus-visible (accessibility) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.nav__cta:focus-visible, .btn:focus-visible {
  outline-offset: 4px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--gold) !important;
}
