/* ============================================================
   KEYSHPYR MANAGEMENT SERVICES — Main Stylesheet
   Brand: Gold #C9A84C / Charcoal #1E1E1E / Off-white #F8F6F1
   Fonts: Cormorant Garamond (display) + Switzer (body)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand Palette */
  --gold:         #C9A84C;
  --gold-light:   #DFC078;
  --gold-muted:   #C9A84C26;
  --charcoal:     #1E1E1E;
  --charcoal-2:   #2C2C2C;
  --charcoal-3:   #3A3A3A;
  --warm-white:   #F8F6F1;
  --cream:        #F2EFE8;
  --light-grey:   #E8E5DE;
  --mid-grey:     #B8B4AC;
  --text-muted:   #6E6B63;

  /* Semantic roles */
  --color-bg:           #141210;
  --color-surface:      #1C1A17;
  --color-surface-alt:  #231F1A;
  --color-text:         #E8E4DC;
  --color-text-muted:   #9A968E;
  --color-border:       #2E2A24;
  --color-primary:      var(--gold);

  /* Dark mode */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', 'DM Sans', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-narrow:  680px;
  --content-default: 1000px;
  --content-wide:    1260px;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease-out);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.45);
}

/* ── Dark Mode ── */

/* ── Base Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role="list"], ol[role="list"] { list-style: none; }

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 400;
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 68ch;
}

button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

::selection {
  background: rgba(201, 168, 76, 0.2);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--default {
  max-width: var(--content-default);
}

.section-pad {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--space-6);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-4);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.875rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold);
}

.btn-primary:hover {
  background: #A8882F;
  border-color: #A8882F;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 18, 16, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}



.nav--scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--gold); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  font-size: var(--text-sm);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Dark mode toggle */

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-6) var(--space-6) var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  gap: var(--space-4);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.nav__mobile-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── Page Wrapper (compensate for fixed nav) ── */
.page-content {
  padding-top: 72px;
}

/* ════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 16, 10, 0.88) 0%,
    rgba(20, 16, 10, 0.55) 60%,
    rgba(20, 16, 10, 0.20) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  max-width: 760px;
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* What We Do (Home) */
.what-we-do {
  background: var(--color-bg);
}

.what-we-do__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.what-we-do__text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.what-we-do__text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.what-we-do__image {
  position: relative;
  border-radius: 0;
}

.what-we-do__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.what-we-do__image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}

.what-we-do__image img {
  position: relative;
  z-index: 1;
}

/* Services Preview */
.services-preview {
  background: var(--color-surface-alt);
}

{
  background: var(--color-surface-dark);
}

.services-preview__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}

.services-preview__header h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.services-preview__header p {
  color: var(--color-text-muted);
  max-width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.service-card {
  background: var(--color-surface);
  padding: var(--space-10) var(--space-8);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

{
  background: var(--color-surface-alt-dark);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.service-card:hover::before {
  height: 100%;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--space-6);
}

.service-card__title {
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-4);
  font-family: var(--font-display);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}

.service-card__link:hover { gap: var(--space-3); }

/* Why Keyshpyr */
.why-section {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.why-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}

.why-section__text h2 {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: #fff;
  margin-bottom: var(--space-6);
}

.why-section__text p {
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.why-pillars {
  display: grid;
  gap: var(--space-6);
}

.pillar {
  padding: var(--space-6);
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
  transition: all var(--transition);
}

.pillar:hover {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.1);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold-light);
  margin-bottom: var(--space-2);
}

.pillar__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 100%;
}

/* Results Snapshot */
.results-snapshot {
  background: var(--color-bg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  margin-bottom: clamp(var(--space-16), 6vw, var(--space-24));
}

.stat-block {
  background: var(--color-surface-alt);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  border: 1px solid var(--color-border);
}

{
  background: var(--color-surface-dark);
  border-color: var(--color-border);
}

.stat-block__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.stat-block__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  max-width: 100%;
}

/* CTA Banner */
.cta-banner {
  background: var(--gold);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-size: var(--text-xl);
  color: #fff;
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.cta-banner__text p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  max-width: 100%;
}

.btn-white {
  background: var(--color-surface);
  color: #A8882F;
  border: 1.5px solid #fff;
  font-size: var(--text-sm);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Insights Preview (Home) */
.insights-preview {
  background: var(--color-surface-alt);
}

{
  background: var(--color-surface-dark);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.insight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

{
  background: var(--color-surface-alt-dark);
  border-color: var(--color-border);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.insight-card__cat {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: block;
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-3);
  transition: color var(--transition);
}

.insight-card:hover .insight-card__title { color: var(--gold); }

.insight-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.insight-card__body {
  padding: var(--space-8);
}

.insight-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-4);
}

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */

.page-hero {
  background: var(--charcoal);
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0.7) 0%, rgba(20,16,10,0.85) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.page-hero__content h1 {
  font-size: var(--text-3xl);
  font-weight: 300;
  color: #fff;
  margin-bottom: var(--space-5);
}

.page-hero__content p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  margin-inline: auto;
}

/* About section layouts */
.about-intro {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.about-grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-grid--reverse .about-grid__image {
  order: -1;
}

.about-grid__text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.about-grid__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.about-grid__image {
  position: relative;
}

.about-grid__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-grid__image--frame::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  left: 14px;
  top: 14px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.outcomes-list {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.outcomes-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 100%;
}

.outcomes-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55em;
}

/* Leadership */
.leadership {
  background: var(--color-surface-alt);
}

{
  background: var(--color-surface-dark);
}

.leadership__card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

{
  background: var(--color-surface-alt-dark);
  border-color: var(--color-border);
}

.leadership__image {
  height: 460px;
  overflow: hidden;
}

.leadership__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leadership__bio {
  padding: clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-8), 4vw, var(--space-12)) clamp(var(--space-8), 4vw, var(--space-12)) 0;
}

.leadership__name {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}

.leadership__title {
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  display: block;
}

.leadership__bio p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: 100%;
}

/* Values */
.values-section {
  background: var(--charcoal);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
  margin-top: clamp(var(--space-10), 4vw, var(--space-16));
}

.value-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition);
}

.value-block:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
}

.value-block__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-5);
  color: var(--gold);
}

.value-block__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-3);
}

.value-block__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 100%;
}

/* ════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════ */

.services-intro {
  background: var(--color-bg);
}

.services-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.services-intro__text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.services-intro__text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

/* Individual service sections */
.service-section {
  border-top: 1px solid var(--color-border);
}

.service-section:nth-child(odd) {
  background: var(--color-bg);
}

.service-section:nth-child(even) {
  background: var(--color-surface-alt);
}

{
  background: var(--color-surface-dark);
}

.service-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}

.service-section__grid--reverse .service-section__visual {
  order: -1;
}

.service-section__meta {
  margin-bottom: var(--space-4);
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.service-section__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.service-section__tagline {
  font-size: var(--text-base);
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: var(--space-6);
  display: block;
}

.service-section__body p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

.service-checklist {
  list-style: none;
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.service-checklist li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 100%;
}

.service-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23C9A84C' d='M13.5 3L6 10.5 2.5 7' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0.1em;
}

.service-section__visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ════════════════════════════════════════
   RESULTS PAGE
   ════════════════════════════════════════ */

.results-intro {
  background: var(--color-bg);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  margin-top: clamp(var(--space-12), 5vw, var(--space-20));
}

.result-stat {
  padding: var(--space-10) var(--space-8);
  background: var(--gold);
  color: #fff;
  text-align: center;
}

.result-stat:nth-child(even) {
  background: #A8882F;
}

.result-stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.result-stat__label {
  font-size: var(--text-sm);
  opacity: 0.85;
  letter-spacing: 0.04em;
  max-width: 100%;
  margin-inline: auto;
}

/* Case study */
.case-study {
  background: var(--color-surface-alt);
}

{
  background: var(--color-surface-dark);
}

.case-study__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

{
  background: var(--color-surface-alt-dark);
  border-color: var(--color-border);
}

.case-study__header {
  background: var(--charcoal);
  padding: clamp(var(--space-10), 5vw, var(--space-16));
  position: relative;
  overflow: hidden;
}

.case-study__header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.case-study__header-content {
  position: relative;
  z-index: 1;
}

.case-study__label {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-4);
}

.case-study__title {
  font-size: var(--text-xl);
  color: #fff;
  font-weight: 300;
}

.case-study__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.case-col {
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  border-right: 1px solid var(--color-border);
}

{
  border-right-color: var(--color-border);
}

.case-col:last-child { border-right: none; }

.case-col__label {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-4);
  display: block;
}

.case-col h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}

.case-col p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 100%;
}

.case-study__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
}

{
  border-top-color: var(--color-border);
}

.metric {
  padding: var(--space-8);
  text-align: center;
  border-right: 1px solid var(--color-border);
}

{
  border-right-color: var(--color-border);
}

.metric:last-child { border-right: none; }

.metric__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold);
  font-weight: 300;
  display: block;
  margin-bottom: var(--space-2);
}

.metric__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 100%;
  margin-inline: auto;
}

/* ════════════════════════════════════════
   INSIGHTS PAGE
   ════════════════════════════════════════ */

.insights-list {
  background: var(--color-bg);
}

.insights-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.insight-full {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

{
  background: var(--color-surface-dark);
  border-color: var(--color-border);
}

.insight-full:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.insight-full__body {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-full__cat {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: block;
}

.insight-full__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: var(--space-4);
  transition: color var(--transition);
}

.insight-full:hover .insight-full__title { color: var(--gold); }

.insight-full__excerpt {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-6);
}

.insight-full__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-4);
}

.insight-full:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
}

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */

.contact-section {
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: start;
}

.contact-info h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.contact-info p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item__label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
  display: block;
}

.contact-item__value {
  font-size: var(--text-base);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
}

{
  background: var(--color-surface-dark);
  border-color: var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.75rem var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}

{
  background: var(--color-surface-alt-dark);
  border-color: var(--color-border);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--space-10);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: var(--text-base);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
  color: var(--color-text-muted);
}

.form-success.visible {
  display: block;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */

.footer {
  background: #0E0C0A;
  color: rgba(255,255,255,0.75);
  padding-block: clamp(var(--space-16), 6vw, var(--space-24));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand img {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-5);
  border-radius: 4px;
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
}

.footer__col-title {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--space-5);
  display: block;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer__bottom {
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer__copy a {
  color: var(--gold);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .what-we-do__grid,
  .why-section__inner,
  .about-grid,
  .about-grid--reverse,
  .services-intro__grid,
  .service-section__grid,
  .contact-grid { grid-template-columns: 1fr; }

  .about-grid--reverse .about-grid__image { order: 0; }
  .service-section__grid--reverse .service-section__visual { order: 0; }

  .leadership__card { grid-template-columns: 1fr; }
  .leadership__image { height: 320px; }
  .leadership__bio { padding: var(--space-8); }

  .stats-row,
  .results-grid { grid-template-columns: 1fr; }

  .case-study__body { grid-template-columns: 1fr; }
  .case-col { border-right: none; border-bottom: 1px solid var(--color-border); }
  .case-study__metrics { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--color-border); }

  .insights-grid { grid-template-columns: 1fr; }
  .insights-list__grid { grid-template-columns: 1fr; }
  .insight-full:first-child { flex-direction: column; }

  .cta-banner__inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .what-we-do__image::before { display: none; }
  .about-grid__image--frame::after { display: none; }

  .hero__title { font-size: clamp(2.5rem, 8vw, 5rem); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ── Pronunciation hint ── */
.pronounce {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.85;
  letter-spacing: 0.03em;
  margin-left: 0.4em;
  white-space: nowrap;
}



/* ── Chinese font override ── */
.lang-zh body,
.lang-zh p,
.lang-zh h1,
.lang-zh h2,
.lang-zh h3,
.lang-zh h4,
.lang-zh li,
.lang-zh span,
.lang-zh a,
.lang-zh label,
.lang-zh button,
.lang-zh input,
.lang-zh textarea,
.lang-zh select {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
.lang-zh h1,
.lang-zh h2,
.lang-zh h3 {
  font-family: 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Language Toggle (nav inline) ── */
.lang-toggle-nav {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.lang-toggle-nav:hover {
  background: var(--gold);
  color: #0E0C0A;
}
