/* ============================================================
   YL CHEE & CO — Global Stylesheet
   ============================================================
   Sections:
   1.  Design Tokens
   2.  Global Resets
   3.  Typography Utilities
   4.  Layout Utilities
   5.  Top Bar
   6.  Navigation
   7.  Page Hero (inner pages)
   8.  Section Patterns
   9.  Buttons
   10. Divider & Decorative
   11. Image Placeholder
   12. Scroll Reveal
   13. Footer
   14. Forms (shared)
   15. Homepage — Hero
   16. Homepage — Stats
   17. Homepage — Pillars
   18. Homepage — Approach
   19. Homepage — Services (homepage cards)
   20. About — Grid & Values
   21. Services Page — List & CTA Band
   22. Team Page — Grid & Testimonials
   23. Clients Page — Industries & Testimonial Band
   24. Career Page — Intro, Perks, Jobs, Apply Form
   25. Contact Page — Grid, Details, Map
   26. Responsive (≤ 900px)
   ============================================================ */


/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand Navy */
  --navy:             #0d1b2e;
  --navy-mid:         #162540;

  /* Brand Gold */
  --gold:             #b8952a;
  --gold-light:       #d4af4a;

  /* Neutrals */
  --cream:            #faf8f4;
  --warm-white:       #f5f2ec;
  --white:            #ffffff;

  /* Text */
  --text:             #1a1a1a;
  --text-mid:         #4a4a4a;
  --text-light:       #888888;

  /* Borders */
  --border:           #e0d9ce;

  /* Typography */
  --font-serif:       'Cormorant Garamond', Georgia, serif;
  --font-sans:        'Montserrat', Helvetica, sans-serif;

  /* Type scale */
  --text-xs:          10px;
  --text-sm:          11px;
  --text-base:        13px;
  --text-md:          14px;
  --text-lg:          15px;
  --text-xl:          22px;
  --text-2xl:         26px;

  /* Letter spacing */
  --tracking-label:   0.14em;
  --tracking-wide:    0.12em;
  --tracking-wider:   0.22em;
  --tracking-nav:     0.12em;

  /* Spacing */
  --space-xs:         8px;
  --space-sm:         16px;
  --space-md:         24px;
  --space-lg:         40px;
  --space-xl:         60px;
  --space-2xl:        80px;

  /* Layout */
  --max-width:        1200px;
  --nav-height:       52px;
  --topbar-height:    32px;

  /* Shadows */
  --shadow-nav:       0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card:      0 12px 40px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast:  0.15s ease;
  --transition-base:  0.2s ease;
  --transition-slow:  0.6s ease;
}


/* ── 2. GLOBAL RESETS ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}


/* ── 3. TYPOGRAPHY UTILITIES ──────────────────────────────── */
.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}

/* Alias used on homepage */
.section-body {
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 600px;
}


/* ── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 40px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}


/* ── 5. TOP BAR ───────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 101;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.top-bar a:hover {
  color: var(--gold-light);
}


/* ── 6. NAVIGATION ────────────────────────────────────────── */
nav {
  position: sticky;
  top: var(--topbar-height);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-height);
  box-shadow: var(--shadow-nav);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo span.accent {
  color: var(--gold);
}
.nav-logo .tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--text-mid);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.nav-links .lang-link {
  color: var(--gold);
  font-weight: 600;
  font-size: var(--text-base);
  border-left: 1px solid var(--border);
  padding-left: 20px;
  letter-spacing: 0.02em;
}


/* ── 7. PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 40px 40px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(184, 149, 42, 0.04) 60px,
    rgba(184, 149, 42, 0.04) 61px
  );
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}


/* ── 8. SECTION PATTERNS ──────────────────────────────────── */
section {
  padding: 100px 40px;
}


/* ── 9. BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-fast);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition-base);
}
.btn-dark:hover {
  background: var(--navy-mid);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition-base), color var(--transition-base);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}


/* ── 10. DIVIDER & DECORATIVE ─────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0;
}


/* ── 11. IMAGE PLACEHOLDER ────────────────────────────────── */
.img-placeholder {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-family: monospace;
  text-transform: uppercase;
  border: 1px dashed var(--border);
}


/* ── 12. SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ── 13. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}
.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand .logo-text span {
  color: var(--gold);
}
.footer-brand p {
  font-size: var(--text-base);
  line-height: 1.8;
  font-weight: 300;
}
.footer-brand .af {
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--gold);
  letter-spacing: 0.08em;
}
.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color var(--transition-base);
}
.footer-col ul a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--gold);
}


/* ── 14. FORMS (shared) ───────────────────────────────────── */
.form-field {
  margin-bottom: 28px;
}
.form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color var(--transition-base);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--gold);
}
.form-field textarea {
  resize: none;
  height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.form-full {
  grid-column: 1 / -1;
}
.success-msg {
  display: none;
  background: var(--cream);
  padding: 20px 24px;
  font-size: var(--text-md);
  color: var(--navy);
  margin-top: 16px;
  border-left: 3px solid var(--gold);
}


/* ── 15. HOMEPAGE — HERO ──────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 40px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 46, 0.97) 0%,
    rgba(22, 37, 64, 0.9) 60%,
    rgba(13, 27, 46, 0.8) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(184, 149, 42, 0.04) 60px,
      rgba(184, 149, 42, 0.04) 61px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(184, 149, 42, 0.03) 60px,
      rgba(184, 149, 42, 0.03) 61px
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 60px;
}
.hero-eyebrow {
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 32px;
  max-width: 700px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero h1 strong {
  font-weight: 600;
  display: block;
}
.hero-desc {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ── 16. HOMEPAGE — STATS ─────────────────────────────────── */
.stats {
  background: var(--gold);
  padding: 0 40px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span {
  font-size: 24px;
  vertical-align: super;
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-mid);
  opacity: 0.8;
}


/* ── 17. HOMEPAGE — PILLARS ───────────────────────────────── */
.pillars {
  background: var(--cream);
  padding: 40px 40px 80px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 0;
}
.pillar {
  background: var(--white);
  padding: 16px 36px 28px;
  transition: background var(--transition-base);
}
.pillar:hover {
  background: var(--warm-white);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
  min-height: 68px;
}
.pillar p {
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}


/* ── 18. HOMEPAGE — APPROACH ──────────────────────────────── */
.approach {
  background: var(--navy);
  color: var(--white);
  padding: 60px 40px;
}
.approach-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach .section-title {
  color: var(--white);
}
.approach .section-body {
  color: rgba(255, 255, 255, 0.65);
  max-width: none;
}
.approach-right p {
  font-size: var(--text-lg);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 24px;
}
.approach-right p:last-child {
  margin-bottom: 0;
}


/* ── 19. HOMEPAGE — SERVICE CARDS ─────────────────────────── */
.services {
  background: var(--cream);
  padding: 60px 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
  cursor: default;
}
.service-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  opacity: 0.7;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}
.services-cta {
  text-align: center;
  margin-top: 48px;
}


/* ── 20. ABOUT PAGE ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.about-grid .body-text {
  max-width: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.value-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--transition-base);
}
.value-card:hover {
  background: var(--cream);
}
.value-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}


/* ── 21. SERVICES PAGE ────────────────────────────────────── */
.services-intro {
  max-width: 700px;
  margin-bottom: 44px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.svc {
  background: var(--white);
  padding: 28px 40px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition-base), background var(--transition-base);
  scroll-margin-top: 96px;
}
.svc:hover {
  border-bottom-color: var(--gold);
  background: var(--cream);
}
.svc-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.svc h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 400;
}
.svc p {
  font-size: var(--text-md);
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}
.svc ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}
.svc ul li {
  font-size: var(--text-base);
  color: var(--text-mid);
  font-weight: 300;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc ul li::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.cta-band {
  background: var(--gold);
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: var(--text-lg);
  color: rgba(13, 27, 46, 0.65);
  font-weight: 300;
  margin-bottom: 32px;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--navy-mid);
}


/* ── 22. TEAM PAGE ────────────────────────────────────────── */
.team-intro {
  max-width: 700px;
  margin-bottom: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.team-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--transition-base);
}
.team-card:hover {
  background: var(--cream);
}
.team-photo {
  aspect-ratio: 1;
  margin-bottom: 24px;
}
.team-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.team-bio {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* Testimonials carousel */
.testimonials-section {
  padding: 52px 40px 40px;
  background: var(--cream);
}
.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.t-track-wrap {
  overflow: hidden;
  width: 100%;
}
.t-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.t-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
}
.t-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  overflow: hidden;
}
.t-logo-circle svg {
  width: 80px;
  height: 80px;
}
.t-quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 28px;
}
.t-client {
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.t-client-role {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-arrow {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-mid);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition-base), color var(--transition-base);
  line-height: 1;
}
.t-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.t-prev { margin-right: 16px; }
.t-next { margin-left: 16px; }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-base);
}
.t-dot.active {
  background: var(--navy);
}


/* ── 23. CLIENTS PAGE ─────────────────────────────────────── */
.clients-intro {
  max-width: 700px;
  margin-bottom: 72px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 80px;
}
.industry-card {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition-base);
}
.industry-card:hover {
  background: var(--cream);
}
.industry-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: 0.5;
}
.industry-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.testimonial-band {
  background: var(--navy);
  padding: 40px;
}
.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 32px;
}
.testimonial-inner cite {
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}


/* ── 24. CAREER PAGE ──────────────────────────────────────── */
.career-intro {
  max-width: 700px;
  margin-bottom: 80px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #b0a898;
  box-shadow: 0 0 0 1px #b0a898;
  margin-top: 10px;
  margin-bottom: 80px;
}
.perk {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--transition-base);
}
.perk:hover {
  background: var(--cream);
}
.perk h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: 12px;
}
.perk p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.jobs-list {
  margin-top: 6px;
}
.job-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: padding-left var(--transition-fast);
}
.job-item:hover {
  padding-left: 12px;
}
.job-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: 6px;
}
.job-meta {
  font-size: var(--text-sm);
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.job-meta span {
  display: inline-block;
  margin-right: 16px;
}
.job-meta .tag {
  background: var(--cream);
  color: var(--gold);
  padding: 3px 10px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apply-form {
  background: var(--cream);
  padding: 60px;
  margin-top: 20px;
  scroll-margin-top: calc(var(--topbar-height) + var(--nav-height) + 16px);
}
.apply-form h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 8px;
}
.apply-form .sub {
  font-size: var(--text-md);
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}


/* ── 25. CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 20px;
}

.detail-row {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.detail-row:last-child {
  margin-bottom: 0;
}
.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.detail-row strong {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.detail-row p,
.detail-row a {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  text-decoration: none;
}
.detail-row a {
  color: var(--gold);
}
.detail-row a:hover {
  text-decoration: underline;
}

.map-band {
  margin-top: 24px;
  line-height: 0; /* collapse whitespace around iframe */
}
.map-band iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}


/* ── 26. RESPONSIVE (≤ 900px) ─────────────────────────────── */
/* ── HAMBURGER BUTTON ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-menu ul li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(13, 27, 46, 0.08);
  transition: color 0.2s;
}
.nav-mobile-menu ul li a:hover,
.nav-mobile-menu ul li a.active { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-footer a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
}
.nav-mobile-footer a:hover { color: var(--gold); }

@media (max-width: 900px) {
  /* Top bar & Nav */
  .top-bar { padding: 8px 20px; }
  nav { padding: 0 20px; top: 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Page hero */
  .page-hero { padding: 60px 20px 48px; }

  /* Main content */
  .main-content { padding: 60px 20px; }
  section { padding: 64px 20px; }

  /* Hero */
  .hero-content { padding: 60px 20px; }

  /* Stats */
  .stats { padding: 0 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Pillars / Values */
  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Approach */
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 48px 20px 60px; }
  .t-card { padding: 0 8px; }

  /* Clients */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Career */
  .career-intro { grid-template-columns: 1fr; gap: 40px; }
  .perks-grid { grid-template-columns: 1fr; }
  .job-item { flex-direction: column; align-items: flex-start; }
  .apply-form { padding: 40px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
