/* ============================================
   MAXIPLE GLOBAL SERVICES — STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter+Tight:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1A1A1A;
  --ink-soft: #2A2A2A;
  --paper: #FAFAF7;
  --paper-2: #EEEDE7;
  --cream: #F4F3EE;
  --moss: #1F6B5E;        /* teal accent */
  --moss-2: #2A8576;
  --gold: #3D4A4A;        /* slate (replaces brass) */
  --gold-soft: #5C6A6A;   /* lighter slate for dark surfaces */
  --teal-bright: #5FB8A8; /* bright teal — accents on dark surfaces */
  --rust: #1F6B5E;
  --line: #1A1A1A;
  --line-soft: rgba(26, 26, 26, 0.10);
  --muted: rgba(26, 26, 26, 0.58);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;

  --container: 1280px;
  --gutter: 32px;
}

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

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(31, 107, 94, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(61, 74, 74, 0.04) 0%, transparent 50%);
  mix-blend-mode: multiply;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 10;
}

.wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 10;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--moss);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 300;
}

h2 {
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 300;
}

h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

.italic {
  font-style: italic;
  font-weight: 300;
}

p { color: var(--ink-soft); }
.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.5; color: var(--ink-soft); }

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04);
}

.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.logo .mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
  transform: translateY(-2px);
}

.logo .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: transparent;
  color: var(--moss);
  padding: 4px 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--moss);
}

.nav-cta:hover {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--ink);
  transform: none;
}

.nav-cta::after {
  content: '→';
  transition: transform 0.3s;
}

.nav-cta:hover::after {
  transform: translateX(3px);
}

.menu-toggle { display: none; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(14, 27, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s;
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   PAGE TOP / HEROES
   ============================================ */

main { padding-top: 80px; }

.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* HOME HERO */
.hero {
  padding: 90px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: end;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-meta .col-loc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta .col-loc strong {
  color: var(--ink);
  font-weight: 500;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 0;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--moss);
  position: relative;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line-soft);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.hero-actions .actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* Hero decoration */
.hero-mark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-mark::before {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
}

/* ============================================
   STAT BAND
   ============================================ */

.stat-band {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stat-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(31, 107, 94, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(61, 74, 74, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}

.stat-item .stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.03em;
}

.stat-item .stat-num .symbol {
  color: var(--teal-bright);
  font-style: italic;
  font-size: 0.6em;
}

.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.section-head .left .index {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--moss);
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 18ch;
}

.section-head .right {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  padding-bottom: 8px;
}

/* ============================================
   SERVICES — DISPLAY LIST
   ============================================ */

.services {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}

.svc-list {
  border-top: 1px solid var(--line);
}

.svc-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr auto;
  gap: 40px;
  padding: 40px 16px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 0.5s;
}

.svc-row:hover {
  background: var(--paper-2);
}

.svc-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--moss);
  font-weight: 400;
}

.svc-row h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.svc-row .desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.svc-row .arrow {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  transition: transform 0.4s;
  align-self: center;
}

.svc-row:hover .arrow {
  transform: translateX(8px) rotate(-12deg);
}

/* ============================================
   WHY US — FEATURE GRID
   ============================================ */

.why {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-card {
  padding: 50px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--cream);
  transition: background 0.4s;
}

.why-card:hover {
  background: var(--paper-2);
}

.why-card .why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--moss);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-card .why-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

.why-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================
   INDUSTRIES
   ============================================ */

.industries {
  background: #2A3535;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(92, 106, 106, 0.22) 0%, transparent 50%);
}

.industries .section-head h2,
.industries .section-head .right,
.industries .section-head .right p,
.industries .section-head .left .index {
  color: var(--cream);
}

.industries .eyebrow {
  color: var(--teal-bright);
}
.industries .eyebrow::before { background: var(--teal-bright); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.ind-card {
  padding: 44px;
  border: 1px solid rgba(245, 241, 232, 0.18);
  background: rgba(14, 27, 22, 0.25);
  border-radius: 4px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ind-card:hover {
  background: rgba(14, 27, 22, 0.5);
  border-color: var(--teal-bright);
  transform: translateY(-3px);
}

.ind-card .ind-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal-bright);
  font-size: 14px;
  margin-bottom: 28px;
}

.ind-card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--cream);
}

.ind-card .ind-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--teal-bright);
  margin-bottom: 22px;
}

.ind-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.78);
}

.ind-card .ind-link {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* ============================================
   PROCESS / ENGAGEMENT
   ============================================ */

.process { background: var(--paper); }

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-step .step-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--moss);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding-top: 12px;
}

.process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-top: 16px;
}

/* ============================================
   QUOTE / TESTIMONIAL FEEL
   ============================================ */

.editorial {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.editorial-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.editorial blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}

.editorial blockquote .italic { color: var(--moss); }

.editorial .attr {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.editorial .pull-mark {
  position: absolute;
  font-family: var(--serif);
  font-size: 320px;
  line-height: 1;
  color: var(--moss);
  opacity: 0.06;
  top: 60px;
  left: 60px;
  font-weight: 300;
}

/* ============================================
   FINAL CTA
   ============================================ */

.cta-final {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.cta-final h2 .italic { color: var(--teal-bright); }

.cta-final p {
  font-size: 18px;
  color: rgba(245, 241, 232, 0.7);
  max-width: 56ch;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.cta-final .btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.cta-final .btn-primary:hover {
  background: var(--teal-bright);
  color: var(--ink);
}

.cta-final .btn-secondary {
  border-color: rgba(245, 241, 232, 0.4);
  color: var(--cream);
}

.cta-final .btn-secondary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.cta-final .eyebrow::before { background: var(--teal-bright); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--paper-2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-brand .logo {
  margin-bottom: 24px;
  font-size: 26px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 36ch;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 15px;
  color: var(--ink);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--moss);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 20px;
}

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */

.page-header {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.page-header .crumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-header .crumb a { color: var(--moss); }

.page-header h1 {
  font-size: clamp(48px, 6vw, 88px);
  max-width: 18ch;
  margin-bottom: 36px;
}

.page-header .lede {
  max-width: 60ch;
}

.page-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.page-meta-row .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   PROSE / CONTENT BLOCKS
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}

.two-col .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--moss);
}

.prose h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 28px;
  font-weight: 300;
}

.prose h3 {
  font-size: 24px;
  margin: 40px 0 16px;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: -0.01em;
}

.prose p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.prose p strong { color: var(--ink); font-weight: 600; }

.prose ul {
  list-style: none;
  margin: 24px 0;
}

.prose ul li {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  color: var(--ink-soft);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 16px;
  height: 1px;
  background: var(--moss);
}

.prose ul li:last-child { border-bottom: none; }

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: none;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--moss); }

.faq-q .faq-toggle {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--moss);
  flex-shrink: 0;
  transition: transform 0.4s;
}

.faq-item.open .faq-q .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
  padding: 0 0 32px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 70ch;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

/* ============================================
   SERVICE DETAIL / CARD GRID
   ============================================ */

.svc-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--line-soft);
}

.svc-detail .badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-cell {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.feature-cell h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-cell p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-aside h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-aside p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.contact-aside .info-row {
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.contact-aside .info-row .lbl {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

form .field {
  margin-bottom: 28px;
}

form label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

form input,
form select,
form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.3s;
}

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

form textarea {
  resize: vertical;
  min-height: 100px;
}

.checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--ink);
  background: var(--cream);
}



.checkbox-item.checked {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.25s; }
.reveal-3 { animation-delay: 0.4s; }
.reveal-4 { animation-delay: 0.55s; }
.reveal-5 { animation-delay: 0.7s; }

@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.in-view {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.in-view.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .leaders-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 860px) {
  :root { --gutter: 22px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 30px var(--gutter);
    gap: 22px;
    border-bottom: 1px solid var(--line-soft);
  }
  .menu-toggle {
    display: block;
    font-size: 22px;
    color: var(--ink);
  }

  .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { align-items: flex-start; }
  .hero-tags { text-align: left; }
  .hero-mark { display: none; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .svc-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px 20px;
    padding: 30px 0;
  }
  .svc-row .num { grid-row: 1; grid-column: 1; }
  .svc-row h3 { grid-row: 1; grid-column: 2; }
  .svc-row .desc { grid-row: 2; grid-column: 1 / -1; margin-top: 10px; }
  .svc-row .arrow { grid-row: 3; grid-column: 1 / -1; align-self: start; }

  .why-grid { grid-template-columns: 1fr; }

  .ind-grid { grid-template-columns: 1fr; }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-step .step-num { font-size: 56px; }
  .process-step h3, .process-step p { padding-top: 0; }

  .stat-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col { grid-template-columns: 1fr; gap: 30px; }

  .feature-grid { grid-template-columns: 1fr; }

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

  .section { padding: 80px 0; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
