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

:root {
  --gold: #C9A84C;
  --dark: #0E0E0E;
  --dark-2: #1A1A1A;
  --text: #F0EDE6;
  --text-muted: #9A9590;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 3rem;
  position: relative;
  z-index: 2;
}

.hero-image { position: relative; overflow: hidden; }

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) contrast(1.1);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 40%);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  align-self: flex-start;
}

.btn-primary:hover { background: var(--gold); color: var(--dark); }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25), transparent);
  margin: 0 3rem;
}

section { padding: 7rem 3rem; }

.page-section { padding-top: 9rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.truth { background: var(--dark-2); padding: 5rem 3rem; }

.page-section.truth { padding-top: 9rem; }

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.truth-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

.truth-quote em { font-style: italic; color: var(--gold); }

.truth-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.85;
}

.problem-intro { max-width: 720px; margin-bottom: 4rem; }

.problem-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.problem-intro p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.12);
}

.problem-card { background: var(--dark); padding: 2.5rem 2rem; }

.problem-card-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.story { background: var(--dark-2); padding: 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.story-image { position: relative; overflow: hidden; }

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) contrast(1.1);
}

.story-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to left, var(--dark-2) 0%, transparent 50%);
}

.story-content {
  padding: 8rem 4rem 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.story-content h2 em { font-style: italic; color: var(--gold); display: block; }

.story-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.story-content p strong { color: var(--text); font-weight: 500; }

.pullquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.work-intro { max-width: 860px; margin-bottom: 4rem; }

.work-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.work-intro p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.work-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.work-detail h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.work-detail p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.work-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 3rem;
}

.work-pillar { background: var(--dark); padding: 2.5rem 2rem; }

.work-pillar-icon {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(201,168,76,0.35);
  line-height: 1;
  margin-bottom: 1rem;
}

.work-pillar h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.work-pillar p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.work-note {
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
}

.work-note p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.work-note strong { color: var(--gold); font-weight: 500; }

.proof { background: var(--dark-2); }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.proof-image {
  position: relative;
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  max-height: 500px;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  border-top: 1px solid rgba(201,168,76,0.25);
  padding-top: 1.25rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-testimonial {
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  background: var(--dark);
  margin-bottom: 1.5rem;
}

.proof-testimonial blockquote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.proof-testimonial cite {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.usa-today {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
}

.usa-today-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.usa-today-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.cta {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.cta-full { min-height: 100vh; }

.cta-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.3) contrast(1.1);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 7rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.cta-content h2 em { font-style: italic; color: var(--gold); }

.cta-content p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cta-content .btn-primary { align-self: center; }

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

footer {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu slide-down panel */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 2rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu.open { transform: translateY(0); pointer-events: auto; }

.mobile-menu a {
  display: block;
  width: 100%;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-apply {
  margin-top: 1.25rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold) !important;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  width: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  line-height: 1;
}

.mobile-menu-close:hover { color: var(--gold); }

/* ---------- HOME HUB (clickable table) ---------- */

.hub {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
}

.hub-inner { max-width: 860px; margin: 0 auto; width: 100%; }

.hub-header { text-align: center; margin-bottom: 4rem; }

.hub-header .hero-eyebrow { margin-bottom: 1.25rem; }

.hub-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hub-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.hub-table {
  border: 1px solid rgba(201,168,76,0.2);
  border-bottom: none;
}

.hub-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.25s;
}

.hub-row:hover { background: rgba(201,168,76,0.06); }

.hub-row-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: rgba(201,168,76,0.35);
  line-height: 1;
  transition: color 0.25s;
}

.hub-row:hover .hub-row-num { color: var(--gold); }

.hub-row-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.hub-row-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hub-row-arrow {
  color: rgba(201,168,76,0.4);
  font-size: 1.1rem;
  transition: color 0.25s, transform 0.25s;
}

.hub-row:hover .hub-row-arrow { color: var(--gold); transform: translateX(4px); }

/* ---------- TURNAROUNDS PAGE ---------- */

.ta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.12);
  margin: 3rem 0;
}

.ta-stat {
  background: var(--dark-2);
  padding: 2rem 1.5rem;
  text-align: center;
}

.ta-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.ta-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.ta-chart {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  height: 280px;
  margin: 3rem 0 0.5rem;
}

.ta-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.ta-bar-val {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.ta-bar-fill {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
}

.ta-bar-fill.gold { background: var(--gold); border-color: var(--gold); }
.ta-bar-fill.grey { background: #55514C; border-color: #55514C; }

.ta-bar-year {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.6rem;
  text-transform: uppercase;
}

.ta-chart-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1.5rem;
}

.ta-values {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 4rem 0;
}

.ta-values p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.ta-values span {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-style: normal;
}

.ta-framework {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 4rem;
}

.ta-frame { background: var(--dark); padding: 2.5rem 2rem; }

.ta-frame h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.ta-frame h4 span { color: var(--gold); margin-right: 0.5rem; }

.ta-frame p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.ta-results { margin-bottom: 4rem; }

.ta-result {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.ta-result h4 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.ta-result p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.ta-result strong { color: var(--gold); font-weight: 500; }

.ta-cta {
  border: 1px solid var(--gold);
  background: rgba(201,168,76,0.05);
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.ta-cta h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ta-cta p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 5rem 1.5rem; }
  .page-section { padding-top: 7rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 50vh; }
  .hero-image::after { background: linear-gradient(to top, var(--dark) 0%, transparent 60%); }
  .hero-content { padding: 3rem 1.5rem 5rem; }
  .truth-grid, .work-details, .proof-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { height: 50vh; }
  .story-image::after { background: linear-gradient(to top, var(--dark-2) 0%, transparent 60%); }
  .story-content { padding: 3rem 1.5rem; }
  .problem-cards { grid-template-columns: 1fr; }
  .work-pillars { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .hub { padding: 6.5rem 1.25rem 4rem; }
  .hub-row { grid-template-columns: 3rem 1fr auto; gap: 1rem; padding: 1.4rem 1.25rem; }
  .hub-row-num { font-size: 1.4rem; }
  .hub-row-title { font-size: 1.15rem; }
  .ta-stats { grid-template-columns: 1fr 1fr; }
  .ta-framework { grid-template-columns: 1fr; }
  .ta-chart { gap: 0.6rem; height: 220px; }
  .ta-bar-val { font-size: 0.7rem; }
  .ta-bar-year { font-size: 0.65rem; }
}
